diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2016-08-24 17:06:57 +0800 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2016-09-05 13:34:12 -0400 |
commit | 59a9d6f236f6ffcfe599465dca870e66745a676c (patch) | |
tree | 38c545b3833ebe2f9f270846b1e4939236d86ed3 | |
parent | 513ae03ae27d3a53eed6c112aecfb57ec8d450f0 (diff) | |
download | meta-openembedded-59a9d6f236f6ffcfe599465dca870e66745a676c.tar.gz |
tnftp: control ipv6 support based on DISTRO_FEATURES
Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
-rw-r--r-- | meta-networking/recipes-support/tnftp/tnftp_20151004.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-networking/recipes-support/tnftp/tnftp_20151004.bb b/meta-networking/recipes-support/tnftp/tnftp_20151004.bb index b17ffebef..8c2c111fd 100644 --- a/meta-networking/recipes-support/tnftp/tnftp_20151004.bb +++ b/meta-networking/recipes-support/tnftp/tnftp_20151004.bb | |||
@@ -32,5 +32,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6d6796cb166a9bb050958241dad9479e" | |||
32 | SRC_URI[md5sum] = "a49fbe752318d5a7893f900046ea00d5" | 32 | SRC_URI[md5sum] = "a49fbe752318d5a7893f900046ea00d5" |
33 | SRC_URI[sha256sum] = "c94a8a49d3f4aec1965feea831d4d5bf6f90c65fd8381ee0863d11a5029a43a0" | 33 | SRC_URI[sha256sum] = "c94a8a49d3f4aec1965feea831d4d5bf6f90c65fd8381ee0863d11a5029a43a0" |
34 | 34 | ||
35 | PACKAGECONFIG ?= "openssl" | 35 | PACKAGECONFIG ?= "openssl \ |
36 | ${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)} \ | ||
37 | " | ||
36 | PACKAGECONFIG[openssl] = "--enable-ssl, --disable-ssl --with-ssl=no, openssl" | 38 | PACKAGECONFIG[openssl] = "--enable-ssl, --disable-ssl --with-ssl=no, openssl" |
39 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6," | ||