mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-12 19:39:59 -04:00
[v9_10] fix AES configuration for cross-compiling
This commit is contained in:
parent
4d8742e668
commit
a17b07d466
2 changed files with 5 additions and 1 deletions
2
configure
vendored
2
configure
vendored
|
|
@ -16056,6 +16056,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. */
|
||||
|
|
|
|||
|
|
@ -1764,7 +1764,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=""
|
||||
|
|
|
|||
Loading…
Reference in a new issue