Skip to content

Commit

Permalink
check for libcrypto using AES_cbc_encrypt
Browse files Browse the repository at this point in the history
  • Loading branch information
ryancdotorg committed Apr 10, 2024
1 parent cc0dc6a commit ee4114b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -828,8 +828,8 @@ if test "$want_libcrypto" != "no"; then
#
AC_CHECK_HEADER(openssl/crypto.h,
[
AC_CHECK_LIB(crypto, DES_cbc_encrypt)
if test "$ac_cv_lib_crypto_DES_cbc_encrypt" = "yes"; then
AC_CHECK_LIB(crypto, AES_cbc_encrypt)
if test "$ac_cv_lib_crypto_AES_cbc_encrypt" = "yes"; then
AC_CHECK_HEADERS(openssl/evp.h)
#
# OK, then:
Expand Down

0 comments on commit ee4114b

Please sign in to comment.