25f56c5d60
Link with -latomic if needed to avoid the following build failure since bump to version 10.5.0 in commitb5352c2177
andc5c1a028cd
: /nvmedata/autobuild/instance-20/output-1/host/lib/gcc/sparc-buildroot-linux-uclibc/10.3.0/../../../../sparc-buildroot-linux-uclibc/bin/ld: /nvmedata/autobuild/instance-20/output-1/build/qpdf-10.5.0/libqpdf/build/.libs/libqpdf.a(QPDF.o): in function `QPDF::QPDF()': QPDF.cc:(.text+0x4e44): undefined reference to `__atomic_fetch_add_8' Fixes: - http://autobuild.buildroot.org/results/b69e6e380c47bc64c6555899c2f61f57bdae7ecc Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# qpdf
|
|
#
|
|
################################################################################
|
|
|
|
QPDF_VERSION = 10.5.0
|
|
QPDF_SITE = http://downloads.sourceforge.net/project/qpdf/qpdf/$(QPDF_VERSION)
|
|
QPDF_INSTALL_STAGING = YES
|
|
QPDF_LICENSE = Apache-2.0 or Artistic-2.0
|
|
QPDF_LICENSE_FILES = LICENSE.txt Artistic-2.0
|
|
QPDF_CPE_ID_VENDOR = qpdf_project
|
|
QPDF_DEPENDENCIES = host-pkgconf zlib jpeg
|
|
|
|
QPDF_CONF_OPTS = --with-random=/dev/urandom
|
|
|
|
ifeq ($(BR2_USE_WCHAR),)
|
|
QPDF_CONF_ENV += CXXFLAGS="$(TARGET_CXXFLAGS) -DQPDF_NO_WCHAR_T"
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
QPDF_CONF_OPTS += --enable-crypto-gnutls
|
|
QPDF_DEPENDENCIES += gnutls
|
|
else
|
|
QPDF_CONF_OPTS += --disable-crypto-gnutls
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
QPDF_CONF_OPTS += --enable-crypto-openssl
|
|
QPDF_DEPENDENCIES += openssl
|
|
else
|
|
QPDF_CONF_OPTS += --disable-crypto-openssl
|
|
endif
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
QPDF_CONF_ENV += LIBS=-latomic
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|