Skip to content

Commit

Permalink
Look for OPENSSL_init_ssl, from Tomasz Miasko.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicm committed Jan 17, 2017
1 parent dceda2c commit 070cee8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,16 @@ if test "x$found_libcrypto" = xno; then
AC_MSG_ERROR("libcrypto not found")
fi
AC_SEARCH_LIBS(
SSL_library_init,
OPENSSL_init_ssl,
[ssl],
found_libssl=yes,
found_libssl=no
)
AC_SEARCH_LIBS(
SSL_library_init,
[ssl],
found_libssl=yes
)
if test "x$found_libssl" = xno; then
AC_MSG_ERROR("libssl not found")
fi
Expand Down

0 comments on commit 070cee8

Please sign in to comment.