diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2015-04-03 18:11:13 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-06 20:36:05 +0100 |
commit | 1969c49b16b158324eec95da8ea56a70f8863ec9 (patch) | |
tree | ef16912b9a99716383cc84cad0b27f3ef24c6ceb /meta | |
parent | c9105597763be4bf5bc0ec97cc999566d0f10678 (diff) | |
download | openembedded-core-1969c49b16b158324eec95da8ea56a70f8863ec9.tar.gz openembedded-core-1969c49b16b158324eec95da8ea56a70f8863ec9.tar.bz2 openembedded-core-1969c49b16b158324eec95da8ea56a70f8863ec9.zip |
libevent: control openssl support via PACKAGECONFIG
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/libevent/libevent_2.0.21.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-support/libevent/libevent_2.0.21.bb b/meta/recipes-support/libevent/libevent_2.0.21.bb index 1230e92b2e..e198f09962 100644 --- a/meta/recipes-support/libevent/libevent_2.0.21.bb +++ b/meta/recipes-support/libevent/libevent_2.0.21.bb @@ -18,7 +18,8 @@ SRC_URI[sha256sum] = "22a530a8a5ba1cb9c080cba033206b17dacd21437762155c6d30ee6469 S = "${WORKDIR}/${BPN}-${PV}-stable" -EXTRA_OECONF = "--disable-openssl" +PACKAGECONFIG ??= "" +PACKAGECONFIG[openssl] = "--enable-openssl,--disable-openssl,openssl" inherit autotools |