Skip to content

Commit

Permalink
fix: reverse order of -lssl and -lcrypto to fix build
Browse files Browse the repository at this point in the history
Signed-off-by: wilmardo <[email protected]>
  • Loading branch information
wilmardo committed Dec 4, 2019
1 parent 3788bf4 commit 0695de4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -3760,7 +3760,7 @@ if ${ac_cv_lib_crypto_BIO_pop+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lcrypto $LIBS"
LIBS="$LIBS -lcrypto"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
Expand Down Expand Up @@ -3795,7 +3795,7 @@ if test "x$ac_cv_lib_crypto_BIO_pop" = xyes; then :
#define HAVE_LIBCRYPTO 1
_ACEOF

LIBS="-lcrypto $LIBS"
LIBS="$LIBS -lcrypto"

else
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
Expand Down

0 comments on commit 0695de4

Please sign in to comment.