]> git.xonotic.org Git - xonotic/d0_blind_id.git/commitdiff
also try with -lcrypto if regular -lssl fails
authorRudolf Polzer <divverent@alientrap.org>
Thu, 2 Sep 2010 07:19:31 +0000 (09:19 +0200)
committerRudolf Polzer <divverent@alientrap.org>
Thu, 2 Sep 2010 07:19:31 +0000 (09:19 +0200)
configure.ac

index b84bd7df85bc79bb72843412158cdcd482121bf5..dffd38a41099937a8d7258a567c66c393ec1d280 100644 (file)
@@ -8,8 +8,12 @@ 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_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])])])
+       [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(__gmpz_init, gmp, ,
+               [AC_MSG_ERROR([GNU MP not found, see http://gmplib.org/, or try --with-openssl])])])
 
 AC_ARG_ENABLE(rijndael, AS_HELP_STRING([--disable-rijndael], [Disable build of the d0_rijndael library]), [enable_aes=$enableval], [enable_aes=yes])
 AM_CONDITIONAL(ENABLE_RIJNDAEL, [test x$enable_aes = xyes])