From: Evan Hunt Date: Wed, 23 Mar 2016 01:01:01 +0000 (-0700) Subject: [master] fix AES configuration for cross-compiling X-Git-Tag: v9.11.0a1~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3f21e063a84eed1752f1228892dd9a42b366ecf;p=thirdparty%2Fbind9.git [master] fix AES configuration for cross-compiling --- diff --git a/configure b/configure index 7ce158192d4..81cf3c64fbe 100755 --- a/configure +++ b/configure @@ -16030,6 +16030,8 @@ $as_echo_n "checking for OpenSSL AES support... " >&6; } if test "$cross_compiling" = yes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: using --with-aes" >&5 $as_echo "using --with-aes" >&6; } + # Expect cross-compiling with a modern OpenSSL + have_aes="evp" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ diff --git a/configure.in b/configure.in index e6a8b3e8645..b9362928fe2 100644 --- a/configure.in +++ b/configure.in @@ -1734,7 +1734,9 @@ int main() { [AC_MSG_RESULT(yes) have_aes="yes"], [AC_MSG_RESULT(no)])], - [AC_MSG_RESULT(using --with-aes)]) + [AC_MSG_RESULT(using --with-aes) + # Expect cross-compiling with a modern OpenSSL + have_aes="evp"]) ISC_OPENSSL_INC="" ISC_OPENSSL_LIBS=""