summaryrefslogtreecommitdiffstats
path: root/package/bind
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2011-05-19 19:23:29 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2011-05-19 20:03:35 +0200
commita02cfbf1f4a82ee6582e2bf7622b2bf105359ea9 (patch)
treec0931de6fd594bfee06e57cf1350adca7e1bd141 /package/bind
parent8c30b67b31b5f378ae27cf1c64086aec39bffb4f (diff)
downloadbuildroot-novena-a02cfbf1f4a82ee6582e2bf7622b2bf105359ea9.tar.gz
buildroot-novena-a02cfbf1f4a82ee6582e2bf7622b2bf105359ea9.zip
bind: give path to OpenSSL when OpenSSL is enabled
bind needs to be specifically told where OpenSSL is, otherwise, the build fails with: checking for OpenSSL library... configure: error: OpenSSL was not found in any of /usr /usr/local /usr/local/ssl /usr/pkg /usr/sfw; use --with-openssl=/path If you don't want OpenSSL, use --without-openssl Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/bind')
-rw-r--r--package/bind/bind.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/package/bind/bind.mk b/package/bind/bind.mk
index e3341bdb6..2df6ae8e3 100644
--- a/package/bind/bind.mk
+++ b/package/bind/bind.mk
@@ -27,6 +27,7 @@ endif
ifeq ($(BR2_PACKAGE_OPENSSL),y)
BIND_DEPENDENCIES += openssl
+ BIND_CONF_OPT += --with-openssl=$(STAGING_DIR)/usr
else
BIND_CONF_OPT += --with-openssl=no
endif