69dfbbd33b
Without a source for randomness, qpdf will crash with 'no such file' error. It's can me tested by command like 'qpd some_pdf.pdf -'. This problem breaks cups printing. This patch change configure options to '--with-random=/dev/urandom' Signed-off-by: Alexey Lukyanchuk <skif@skif-web.ru> [yann.morin.1998@free.fr: reword commit log] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
24 lines
661 B
Makefile
24 lines
661 B
Makefile
################################################################################
|
|
#
|
|
# qpdf
|
|
#
|
|
################################################################################
|
|
|
|
QPDF_VERSION = 9.1.1
|
|
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_DEPENDENCIES = host-pkgconf zlib jpeg
|
|
|
|
QPDF_CONF_OPTS = --with-random=/dev/urandom
|
|
|
|
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
QPDF_CONF_OPTS += --enable-crypto-gnutls
|
|
QPDF_DEPENDENCIES += gnutls
|
|
else
|
|
QPDF_CONF_OPTS += --disable-crypto-gnutls
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|