mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
package/bind: drop unrecognized options
--enable-threads, --with-randomdev, --enable-filter-aaaa, --with-ecdsa, --with-eddsa, --with-aes, --with-gost are all unrecognized since bump to version 9.16.26 in commit8adeaec8af: configure: WARNING: unrecognized options: --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --with-xmlto, --with-fop, --disable-dependency-tracking, --enable-ipv6, --enable-nls, --enable-threads, --with-randomdev, --enable-filter-aaaa, --with-ecdsa, --with-eddsa, --with-aes, --with-gost Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commit9e6e84f0c6) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
1cd1782d81
commit
5a5c6cd386
@@ -31,17 +31,11 @@ BIND_CONF_ENV = \
|
|||||||
BUILD_CFLAGS="$(TARGET_CFLAGS)" \
|
BUILD_CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
LIBS=`$(PKG_CONFIG_HOST_BINARY) --libs openssl`
|
LIBS=`$(PKG_CONFIG_HOST_BINARY) --libs openssl`
|
||||||
BIND_CONF_OPTS = \
|
BIND_CONF_OPTS = \
|
||||||
$(if $(BR2_TOOLCHAIN_HAS_THREADS),--enable-threads,--disable-threads) \
|
|
||||||
--without-lmdb \
|
--without-lmdb \
|
||||||
--with-json-c=no \
|
--with-json-c=no \
|
||||||
--with-randomdev=/dev/urandom \
|
|
||||||
--enable-epoll \
|
--enable-epoll \
|
||||||
--enable-filter-aaaa \
|
|
||||||
--disable-backtrace \
|
--disable-backtrace \
|
||||||
--with-openssl=$(STAGING_DIR)/usr \
|
--with-openssl=$(STAGING_DIR)/usr
|
||||||
--with-ecdsa=yes \
|
|
||||||
--with-eddsa=no \
|
|
||||||
--with-aes=yes
|
|
||||||
|
|
||||||
BIND_DEPENDENCIES = host-pkgconf libuv openssl
|
BIND_DEPENDENCIES = host-pkgconf libuv openssl
|
||||||
|
|
||||||
@@ -73,13 +67,6 @@ else
|
|||||||
BIND_CONF_OPTS += --with-libxml2=no
|
BIND_CONF_OPTS += --with-libxml2=no
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# GOST cipher support requires openssl extra engines
|
|
||||||
ifeq ($(BR2_PACKAGE_OPENSSL_ENGINES),y)
|
|
||||||
BIND_CONF_OPTS += --with-gost=yes
|
|
||||||
else
|
|
||||||
BIND_CONF_OPTS += --with-gost=no
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Used by dnssec-keymgr
|
# Used by dnssec-keymgr
|
||||||
ifeq ($(BR2_PACKAGE_PYTHON_PLY),y)
|
ifeq ($(BR2_PACKAGE_PYTHON_PLY),y)
|
||||||
BIND_DEPENDENCIES += host-python-ply
|
BIND_DEPENDENCIES += host-python-ply
|
||||||
|
|||||||
Reference in New Issue
Block a user