You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
584 B

  1. --- a/configure.ac
  2. +++ b/configure.ac
  3. @@ -141,7 +141,7 @@ AC_ARG_ENABLE([openssl],
  4. else
  5. openssl="true"
  6. if test "x$enableval" = "xyes"; then
  7. - AC_CHECK_LIB([ssl], [SSL_library_init], [], [AC_MSG_ERROR([libssl not found])])
  8. + AC_CHECK_LIB([ssl], [SSL_CTX_new], [], [AC_MSG_ERROR([libssl not found])])
  9. AC_CHECK_LIB([crypto], [SHA1_Init], [], [AC_MSG_ERROR([libcrypto not found])])
  10. else
  11. AC_MSG_CHECKING([for openssl in $enableval])