]> andersk Git - openssh.git/commitdiff
- (dtucker) [configure.ac] The "crippled AES" test does not work on recent
authordtucker <dtucker>
Fri, 4 Aug 2006 09:44:23 +0000 (09:44 +0000)
committerdtucker <dtucker>
Fri, 4 Aug 2006 09:44:23 +0000 (09:44 +0000)
   versions of Solaris, so use AC_LINK_IFELSE to actually link the test program
   rather than just compiling it.  Spotted by dlg@.

ChangeLog
configure.ac

index a627792c320c7baa11fb6865f684c04f13ce11c2..e564db45d11ff90cc8df113e7b5ec58a9b943114 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+20060804
+ - (dtucker) [configure.ac] The "crippled AES" test does not work on recent
+   versions of Solaris, so use AC_LINK_IFELSE to actually link the test program
+   rather than just compiling it.  Spotted by dlg@.
+
 20060802
  - (dtucker) [openbsd-compat/daemon.c] Add unistd.h for fork() prototype.
 
index 522775615fbc008cf7ef54e8285a9c513f522d7a..f1040dd5cbac79a33754e4893b1bf1e5ae608ccb 100644 (file)
@@ -1892,7 +1892,7 @@ int main(void){ENGINE_load_builtin_engines();ENGINE_register_all_complete();}
 
 # Check for OpenSSL without EVP_aes_{192,256}_cbc
 AC_MSG_CHECKING([whether OpenSSL has crippled AES support])
-AC_COMPILE_IFELSE(
+AC_LINK_IFELSE(
        [AC_LANG_SOURCE([[
 #include <string.h>
 #include <openssl/evp.h>
This page took 0.044955 seconds and 5 git commands to generate.