b5352c2177
- Drop patches (already in version and C++14 now required) - openssl is an optional dependency since version 10.0.0 and0f2507234f
- wchar is not mandatory since version 10.0.0 and2100b4ce15
- atomic is needed since version 10.0.0 andc5c1a028cd
- C++14 is required since version 10.2.0 and1b3f84f967
http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
36 lines
951 B
Makefile
36 lines
951 B
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
|
|
|
|
$(eval $(autotools-package))
|