Check for EVP_EncryptInit_ex instead of SHA1_Version in OpenSSL.

The latter function disappeared, and wasn't actually used in tinc, so now we
check on a function that we do use.
This commit is contained in:
Guus Sliepen 2011-05-08 21:06:06 +02:00
parent 257cb6ac60
commit 6e6b037ef4

View file

@ -28,13 +28,13 @@ AC_DEFUN([tinc_OPENSSL],
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.])]
)
;;
*)
AC_CHECK_LIB(crypto, SHA1_version,
AC_CHECK_LIB(crypto, EVP_EncryptInit_ex,
[LIBS="$LIBS -lcrypto"],
[AC_MSG_ERROR([OpenSSL libraries not found.])]
)