From: Rudolf Polzer Date: Fri, 10 Sep 2010 11:12:59 +0000 (+0200) Subject: get rid of -lssl dependency in OpenSSL case (only need -lcrypto) X-Git-Tag: xonotic-v0.1.0preview~10 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fd0_blind_id.git;a=commitdiff_plain;h=362e75067dede2446444e86a9d6384fc8fe83a38;hp=aeb58fa615ba48570b0fc84c02ba839b73853f7f get rid of -lssl dependency in OpenSSL case (only need -lcrypto) --- diff --git a/configure.ac b/configure.ac index 3430f5f..967b879 100644 --- a/configure.ac +++ b/configure.ac @@ -8,10 +8,8 @@ AC_ARG_WITH(openssl, AS_HELP_STRING([--with-openssl], [Use OpenSSL instead of GM AM_CONDITIONAL(WITH_OPENSSL, [test x"$with_openssl" != xno]) AS_IF([test x"$with_openssl" != xno], - [AC_SEARCH_LIBS(BN_init, ssl, , - [AC_SEARCH_LIBS(BN_init, ssl, , - [AC_MSG_ERROR([OpenSSL not found, see http://www.openssl.org/, or try --without-openssl])])], - -lcrypto)], + [AC_SEARCH_LIBS(BN_init, crypto, , + [AC_MSG_ERROR([OpenSSL not found, see http://www.openssl.org/, or try --without-openssl])])], [AC_SEARCH_LIBS(__gmpz_init, gmp, , [AC_MSG_ERROR([GNU MP not found, see http://gmplib.org/, or try --with-openssl])])])