projects
/
buildroot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
004848d
)
package/qpdf: add optional gnutls dependency
author
Fabrice Fontaine
<fontaine.fabrice@gmail.com>
Sun, 22 Dec 2019 10:49:29 +0000
(11:49 +0100)
committer
Thomas Petazzoni
<thomas.petazzoni@bootlin.com>
Sun, 22 Dec 2019 21:35:28 +0000
(22:35 +0100)
gnutls is an optional dependency since version 9.1.0 and
https://github.com/qpdf/qpdf/commit/
88bedb41fe82df312d62e364a5a216b62fc8807c
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/qpdf/qpdf.mk
patch
|
blob
|
history
diff --git
a/package/qpdf/qpdf.mk
b/package/qpdf/qpdf.mk
index 217bff80552dd57c68eefeeee990adce3b4ceb84..5d28a8007aff771c77263c9e0fdd40552d5712a1 100644
(file)
--- a/
package/qpdf/qpdf.mk
+++ b/
package/qpdf/qpdf.mk
@@
-13,4
+13,11
@@
QPDF_DEPENDENCIES = host-pkgconf zlib jpeg
QPDF_CONF_OPTS = --without-random
+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))