diff options
author | Li Wang <li.wang@windriver.com> | 2013-05-29 10:09:58 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-29 22:20:27 +0100 |
commit | 9122ba8f061f6ff90d4499dd388c41a1eb9ecc6f (patch) | |
tree | 763869e2961a1aca33adb0f118d770fb07923185 /meta/recipes-connectivity/bind/bind_9.8.1.bb | |
parent | 4eb49c00a18da3fef46b6d925a3d49cbefc29aa6 (diff) | |
download | poky-9122ba8f061f6ff90d4499dd388c41a1eb9ecc6f.tar.gz |
bind: add ipv6 support
Make ipv6 configure dependent on DISTRO_FEATURES.
(From OE-Core rev: 984eb9e25b658c5e9a870983841060aca32bc137)
Signed-off-by: Li Wang <li.wang@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/bind/bind_9.8.1.bb')
-rw-r--r-- | meta/recipes-connectivity/bind/bind_9.8.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/bind/bind_9.8.1.bb b/meta/recipes-connectivity/bind/bind_9.8.1.bb index 0663313fff..b807dbf1a7 100644 --- a/meta/recipes-connectivity/bind/bind_9.8.1.bb +++ b/meta/recipes-connectivity/bind/bind_9.8.1.bb | |||
@@ -18,7 +18,8 @@ SRC_URI[md5sum] = "cf31117c5d35af34d4c0702970ad9fb7" | |||
18 | SRC_URI[sha256sum] = "02285dc429cb2a6687a1b2446e9ee22c1df27f2577225b05be5092395ee7c92c" | 18 | SRC_URI[sha256sum] = "02285dc429cb2a6687a1b2446e9ee22c1df27f2577225b05be5092395ee7c92c" |
19 | 19 | ||
20 | # --enable-exportlib is necessary for building dhcp | 20 | # --enable-exportlib is necessary for building dhcp |
21 | EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads \ | 21 | ENABLE_IPV6 = "--enable-ipv6=${@base_contains('DISTRO_FEATURES', 'ipv6', 'yes', 'no', d)}" |
22 | EXTRA_OECONF = " ${ENABLE_IPV6} --with-randomdev=/dev/random --disable-threads \ | ||
22 | --disable-devpoll --disable-epoll --with-gost=no \ | 23 | --disable-devpoll --disable-epoll --with-gost=no \ |
23 | --with-gssapi=no \ | 24 | --with-gssapi=no \ |
24 | --sysconfdir=${sysconfdir}/bind \ | 25 | --sysconfdir=${sysconfdir}/bind \ |