Browse Source

package/gnupg2: add readline optional dependency

This is to improve build reproducibility.

[Thomas: add --with-readline and --without-readline options to
explicitly enable/disable readline usage.]

Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Romain Naour 11 years ago
parent
commit
5f9d235e66
1 changed files with 7 additions and 0 deletions
  1. 7 0
      package/gnupg2/gnupg2.mk

+ 7 - 0
package/gnupg2/gnupg2.mk

@@ -33,4 +33,11 @@ else
 GNUPG2_CONF_OPT += --disable-bzip2
 endif
 
+ifeq ($(BR2_PACKAGE_READLINE),y)
+GNUPG2_CONF_OPT += --with-readline=$(STAGING_DIR)
+GNUPG2_DEPENDENCIES += readline
+else
+GNUPG2_CONF_OPT += --without-readline
+endif
+
 $(eval $(autotools-package))