diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-07-04 07:55:41 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-05 11:28:30 +0100 |
commit | 8c00b32211f25e38c1601ec8de47e6d4729dd49e (patch) | |
tree | 2a270be837ce7ec22ead3502377a05108ee22f45 | |
parent | 0d725c76c113dec441a7319a6ee997e4ae8c4c88 (diff) | |
download | openembedded-core-8c00b32211f25e38c1601ec8de47e6d4729dd49e.tar.gz openembedded-core-8c00b32211f25e38c1601ec8de47e6d4729dd49e.tar.bz2 openembedded-core-8c00b32211f25e38c1601ec8de47e6d4729dd49e.zip |
bind: Disable lmdb support
with bind 9.11.2+ when the build host has lmdb installed, bind configure looks into
host headers and wrongly interprets that it should be enabling lmdb
disable lmdb to fix
| configure: error: found lmdb include but not library.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-connectivity/bind/bind_9.11.3.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/bind/bind_9.11.3.bb b/meta/recipes-connectivity/bind/bind_9.11.3.bb index 32f5365e44..1cb1f3fd34 100644 --- a/meta/recipes-connectivity/bind/bind_9.11.3.bb +++ b/meta/recipes-connectivity/bind/bind_9.11.3.bb @@ -39,6 +39,7 @@ ENABLE_IPV6 = "--enable-ipv6=${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ye EXTRA_OECONF = " ${ENABLE_IPV6} --with-libtool --enable-threads \ --disable-devpoll --enable-epoll --with-gost=no \ --with-gssapi=no --with-ecdsa=yes --with-eddsa=no \ + --with-lmdb=no \ --sysconfdir=${sysconfdir}/bind \ --with-openssl=${STAGING_DIR_HOST}${prefix} \ " |