d264351cfc
Build fails if gobject-introspection is built before libostree: ./.libs/libostree-1.so: error adding symbols: File in wrong format collect2: error: ld returned 1 exit status src/libostree/ostree-repo-deprecated.h:28: Warning: OSTree: symbol='G_GNUC_DEPRECATED_FOR': Skipping foreign symbol from namespace Gio linking of temporary binary failed: Command '['/bin/bash', './libtool', '--mode=link', '--tag=CC', '--silent', 'gcc', '-o', '/home/buildroot/autobuild/instance-2/output-1/build/libostree-2019.6/tmp-introspectvtkql2xj/OSTree-1.0', '-export-dynamic', '-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-Os', '/home/buildroot/autobuild/instance-2/output-1/build/libostree-2019.6/tmp-introspectvtkql2xj/OSTree-1.0.o', '-L.', 'libostree-1.la', '-L/home/buildroot/autobuild/instance-2/output-1/host/bin/../aarch64-buildroot-linux-gnu/sysroot/usr/lib', '-lgio-2.0', '-lgobject-2.0', '-Wl,--export-dynamic', '-lgmodule-2.0', '-pthread', '-lglib-2.0', '-lglib-2.0']' returned non-zero exit status 1. /home/buildroot/autobuild/instance-2/output-1/host/bin/../aarch64-buildroot-linux-gnu/sysroot/usr/lib/../share/gobject-introspection-1.0/Makefile.introspection:155: recipe for target 'OSTree-1.0.gir' failed Fixes: - http://autobuild.buildroot.org/results/f8a14307e6feff61acd963d6cd2aac289e6d1647 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
83 lines
2.3 KiB
Makefile
83 lines
2.3 KiB
Makefile
################################################################################
|
|
#
|
|
# libostree
|
|
#
|
|
################################################################################
|
|
|
|
LIBOSTREE_VERSION_MAJOR = 2019.6
|
|
LIBOSTREE_VERSION= $(LIBOSTREE_VERSION_MAJOR)
|
|
LIBOSTREE_SOURCE = libostree-$(LIBOSTREE_VERSION).tar.xz
|
|
LIBOSTREE_SITE = https://github.com/ostreedev/ostree/releases/download/v$(LIBOSTREE_VERSION_MAJOR)
|
|
|
|
LIBOSTREE_LICENSE = LGPL-2.0+
|
|
LIBOSTREE_LICENSE_FILES = COPYING
|
|
LIBOSTREE_DEPENDENCIES = e2fsprogs host-bison host-pkgconf libfuse libglib2 libgpg-error libgpgme xz
|
|
LIBOSTREE_INSTALL_STAGING = YES
|
|
|
|
LIBOSTREE_CONF_ENV = \
|
|
GPG_ERROR_CONFIG=$(STAGING_DIR)/usr/bin/gpg-error-config
|
|
LIBOSTREE_CONF_OPTS += \
|
|
--with-gpgme-prefix=$(STAGING_DIR)/usr \
|
|
--disable-gtk-doc \
|
|
--disable-gtk-doc-html \
|
|
--disable-gtk-doc-pdf \
|
|
--disable-introspection \
|
|
--disable-man
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
LIBOSTREE_CONF_OPTS += --with-openssl
|
|
LIBOSTREE_DEPENDENCIES += openssl
|
|
else
|
|
LIBOSTREE_CONF_OPTS += --without-openssl
|
|
endif
|
|
|
|
# Avahi support needs libavahi-client, which is built by avahi if avahi-daemon
|
|
# and dbus is selected. Since there is no BR2_PACKAGE_LIBAVAHI_CLIENT config
|
|
# option yet, use the avahi-daemon and dbus config symbols to check for
|
|
# libavahi-client.
|
|
ifeq ($(BR2_PACKAGE_AVAHI_DAEMON)$(BR2_PACKAGE_DBUS),yy)
|
|
LIBOSTREE_CONF_OPTS += --with-avahi
|
|
LIBOSTREE_DEPENDENCIES += avahi
|
|
else
|
|
LIBOSTREE_CONF_OPTS += --without-avahi
|
|
endif
|
|
|
|
#cURL support depends on libsoup
|
|
ifeq ($(BR2_PACKAGE_LIBSOUP),y)
|
|
LIBOSTREE_CONF_OPTS += --with-soup
|
|
LIBOSTREE_DEPENDENCIES += libsoup
|
|
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
|
LIBOSTREE_CONF_OPTS += --with-curl
|
|
LIBOSTREE_DEPENDENCIES += libcurl
|
|
else
|
|
LIBOSTREE_CONF_OPTS += --without-curl
|
|
endif
|
|
else
|
|
LIBOSTREE_CONF_OPTS += --without-soup --without-curl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBARCHIVE),y)
|
|
LIBOSTREE_CONF_OPTS += --with-libarchive
|
|
LIBOSTREE_DEPENDENCIES += libarchive
|
|
else
|
|
LIBOSTREE_CONF_OPTS += --without-libarchive
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
|
LIBOSTREE_CONF_OPTS += --with-selinux
|
|
LIBOSTREE_DEPENDENCIES += libselinux
|
|
else
|
|
LIBOSTREE_CONF_OPTS += --without-selinux
|
|
endif
|
|
|
|
ifeq ($(BR2_INIT_SYSTEMD),y)
|
|
LIBOSTREE_CONF_OPTS += \
|
|
--with-libsystemd \
|
|
--with-systemdsystemunitdir=/usr/lib/systemd/system
|
|
LIBOSTREE_DEPENDENCIES += systemd
|
|
else
|
|
LIBOSTREE_CONF_OPTS += --without-libsystemd
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|