diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2017-01-30 17:47:45 +1000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-05 09:20:22 +0000 |
commit | a7dfe49a1236b0eb1cebcfe490bb0da68e3252a0 (patch) | |
tree | 51255d8a724e19f387ce598f21f86e7b16b62de7 /meta/recipes-support | |
parent | 1e28d512341ce470c7afb256a01e597ab87170ca (diff) | |
download | openembedded-core-a7dfe49a1236b0eb1cebcfe490bb0da68e3252a0.tar.gz openembedded-core-a7dfe49a1236b0eb1cebcfe490bb0da68e3252a0.tar.bz2 openembedded-core-a7dfe49a1236b0eb1cebcfe490bb0da68e3252a0.zip |
libgcrypt.inc: Add PACKAGECONFIG for 'capabilities'
Add PACKAGECONFIG options for 'capabilities' which enables the libcap
dependency.
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/libgcrypt/libgcrypt.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-support/libgcrypt/libgcrypt.inc b/meta/recipes-support/libgcrypt/libgcrypt.inc index c8a48623b4..84c1cc018b 100644 --- a/meta/recipes-support/libgcrypt/libgcrypt.inc +++ b/meta/recipes-support/libgcrypt/libgcrypt.inc @@ -12,7 +12,7 @@ LICENSE_dumpsexp-dev = "GPLv3+" LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ file://COPYING.LIB;md5=bbb461211a33b134d42ed5ee802b37ff" -DEPENDS = "libgpg-error libcap" +DEPENDS = "libgpg-error" UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html" SRC_URI = "${GNUPG_MIRROR}/libgcrypt/libgcrypt-${PV}.tar.gz \ @@ -26,7 +26,10 @@ BINCONFIG = "${bindir}/libgcrypt-config" inherit autotools texinfo binconfig-disabled pkgconfig -EXTRA_OECONF = "--disable-asm --with-capabilities" +EXTRA_OECONF = "--disable-asm" + +PACKAGECONFIG ??= "capabilities" +PACKAGECONFIG[capabilities] = "--with-capabilities,--without-capabilities,libcap" do_configure_prepend () { # Else this could be used in preference to the one in aclocal-copy |