Skip to content

Commit 34c7a28

Browse files
committed
check for libcrypto using EVP_CIPHER_CTX_new
1 parent cc0dc6a commit 34c7a28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -828,8 +828,8 @@ if test "$want_libcrypto" != "no"; then
828828
#
829829
AC_CHECK_HEADER(openssl/crypto.h,
830830
[
831-
AC_CHECK_LIB(crypto, DES_cbc_encrypt)
832-
if test "$ac_cv_lib_crypto_DES_cbc_encrypt" = "yes"; then
831+
AC_CHECK_LIB(crypto, EVP_CIPHER_CTX_new)
832+
if test "$ac_cv_lib_crypto_EVP_CIPHER_CTX_new" = "yes"; then
833833
AC_CHECK_HEADERS(openssl/evp.h)
834834
#
835835
# OK, then:

0 commit comments

Comments
 (0)