From: Thomas Petazzoni Date: Thu, 19 May 2011 17:23:29 +0000 (+0200) Subject: bind: give path to OpenSSL when OpenSSL is enabled X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a02cfbf1f4a82ee6582e2bf7622b2bf105359ea9;p=buildroot.git 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 Signed-off-by: Peter Korsgaard --- diff --git a/package/bind/bind.mk b/package/bind/bind.mk index e3341bdb69..2df6ae8e33 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