Skip to content

Commit ee4114b

Browse files
committed
check for libcrypto using AES_cbc_encrypt
1 parent cc0dc6a commit ee4114b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

+2-2
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, AES_cbc_encrypt)
832+
if test "$ac_cv_lib_crypto_AES_cbc_encrypt" = "yes"; then
833833
AC_CHECK_HEADERS(openssl/evp.h)
834834
#
835835
# OK, then:

0 commit comments

Comments
 (0)