Skip to content

Commit

Permalink
Add libcrypto to libssl when choosing openssl. This bug is evident on…
Browse files Browse the repository at this point in the history
…ly with Arch Linux.
  • Loading branch information
mikebrady committed Apr 20, 2015
1 parent 397aa27 commit 32b1402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ AC_ARG_WITH(ssl, [ choose --with-ssl=openssl or --with-ssl=polarssl for encrypti
fi
if test "x${with_ssl}" = xopenssl ; then
PKG_CHECK_MODULES(
[SSL], [libssl],
[SSL], [libssl,libcrypto],
[LIBS="${SSL_LIBS} ${LIBS}"
AC_DEFINE([HAVE_LIBCRYPTO],[1],[Define to 1 if you have libcrypto])
AC_DEFINE([HAVE_LIBSSL],[1],[Define to 1 if you have libssl])])
Expand Down

0 comments on commit 32b1402

Please sign in to comment.