Check for EVP_EncryptInit_ex instead of SHA1_Version in OpenSSL.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 8 May 2011 19:06:06 +0000 (21:06 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 8 May 2011 19:06:06 +0000 (21:06 +0200)
The latter function disappeared, and wasn't actually used in tinc, so now we
check on a function that we do use.

m4/openssl.m4

index f091300..8d4a24b 100644 (file)
@@ -28,13 +28,13 @@ AC_DEFUN([tinc_OPENSSL],
 
 case $host_os in
   *mingw*)
 
 case $host_os in
   *mingw*)
-    AC_CHECK_LIB(crypto, SHA1_version,
+    AC_CHECK_LIB(crypto, EVP_EncryptInit_ex,
       [LIBS="$LIBS -lcrypto -lgdi32 -lcrypt32"],
       [AC_MSG_ERROR([OpenSSL libraries not found.])]
     )
   ;;
   *)
       [LIBS="$LIBS -lcrypto -lgdi32 -lcrypt32"],
       [AC_MSG_ERROR([OpenSSL libraries not found.])]
     )
   ;;
   *)
-    AC_CHECK_LIB(crypto, SHA1_version,
+    AC_CHECK_LIB(crypto, EVP_EncryptInit_ex,
       [LIBS="$LIBS -lcrypto"],
       [AC_MSG_ERROR([OpenSSL libraries not found.])]
     )
       [LIBS="$LIBS -lcrypto"],
       [AC_MSG_ERROR([OpenSSL libraries not found.])]
     )