diff options
| author | Kai Kang <kai.kang@windriver.com> | 2015-12-02 10:13:12 +0800 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-12-18 12:37:21 +0100 |
| commit | 0c923c7e33838f9132c9c62593bff42f5514a221 (patch) | |
| tree | 95180266ac520dc100aa6c73d3cb7ecc98906079 | |
| parent | 3007c0453803f8aedf849781f48b53cb53470e01 (diff) | |
| download | meta-openembedded-0c923c7e33838f9132c9c62593bff42f5514a221.tar.gz | |
libssh2: make crypto library selectable
Add PACKAGECONFs 'openssl' and 'gcrypt' to make crypto library
selectable. Only one of them could be set. If they are both set,
'gcrypt' is invalide.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
| -rw-r--r-- | meta-oe/recipes-support/libssh2/libssh2_1.6.0.bb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/meta-oe/recipes-support/libssh2/libssh2_1.6.0.bb b/meta-oe/recipes-support/libssh2/libssh2_1.6.0.bb index 4f03b999e6..c43164e5d5 100644 --- a/meta-oe/recipes-support/libssh2/libssh2_1.6.0.bb +++ b/meta-oe/recipes-support/libssh2/libssh2_1.6.0.bb | |||
| @@ -2,7 +2,7 @@ SUMMARY = "A client-side C library implementing the SSH2 protocol" | |||
| 2 | HOMEPAGE = "http://www.libssh2.org/" | 2 | HOMEPAGE = "http://www.libssh2.org/" |
| 3 | SECTION = "libs" | 3 | SECTION = "libs" |
| 4 | 4 | ||
| 5 | DEPENDS = "zlib openssl" | 5 | DEPENDS = "zlib" |
| 6 | 6 | ||
| 7 | LICENSE = "BSD" | 7 | LICENSE = "BSD" |
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=c5cf34fc0acb44b082ef50ef5e4354ca" | 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=c5cf34fc0acb44b082ef50ef5e4354ca" |
| @@ -13,8 +13,12 @@ SRC_URI[sha256sum] = "5a202943a34a1d82a1c31f74094f2453c207bf9936093867f41414968c | |||
| 13 | 13 | ||
| 14 | inherit autotools pkgconfig | 14 | inherit autotools pkgconfig |
| 15 | 15 | ||
| 16 | EXTRA_OECONF += "--with-openssl \ | 16 | EXTRA_OECONF += "\ |
| 17 | --with-libz \ | 17 | --with-libz \ |
| 18 | --with-libssl-prefix=${STAGING_LIBDIR} \ | ||
| 19 | --with-libz-prefix=${STAGING_LIBDIR} \ | 18 | --with-libz-prefix=${STAGING_LIBDIR} \ |
| 20 | " | 19 | " |
| 20 | |||
| 21 | # only one of openssl and gcrypt could be set | ||
| 22 | PACKAGECONFIG ??= "openssl" | ||
| 23 | PACKAGECONFIG[openssl] = "--with-openssl --with-libssl-prefix=${STAGING_LIBDIR},--without-openssl,openssl" | ||
| 24 | PACKAGECONFIG[gcrypt] = "--with-libgcrypt --with-libgcrypt-prefix=${STAGING_EXECPREFIXDIR},--without-libgcrypt,libgcrypt" | ||
