]> git.xonotic.org Git - xonotic/d0_blind_id.git/blobdiff - configure.ac
also support signing
[xonotic/d0_blind_id.git] / configure.ac
index ce36408ad6e63eb17f31ff3ce881df9751bd7def..967b879fe7dcb9edd3fb71f710657806b4b9fe57 100644 (file)
@@ -4,15 +4,14 @@ AM_INIT_AUTOMAKE([-Wall foreign])
 AC_PROG_CC
 AC_PROG_LIBTOOL
 
-AC_ARG_WITH(openssl, AS_HELP_STRING([--with-openssl], [Use OpenSSL instead of GMP (beware of the OpenSSL license)]), [enable_openssl=$enableval], [enable_openssl=no])
-AM_CONDITIONAL(ENABLE_OPENSSL, [test x$enable_openssl = xyes])
+AC_ARG_WITH(openssl, AS_HELP_STRING([--with-openssl], [Use OpenSSL instead of GMP (beware of the OpenSSL license)]), [with_openssl=$withval], [with_openssl=no])
+AM_CONDITIONAL(WITH_OPENSSL, [test x"$with_openssl" != xno])
 
-if test x$enable_openssl = xyes
-then
-       AC_SEARCH_LIBS(BN_init, ssl, , [AC_MSG_ERROR([OpenSSL not found, see http://www.openssl.org/, or try --without-openssl])])
-else
-       AC_SEARCH_LIBS(__gmpz_init, gmp, , [AC_MSG_ERROR([GNU MP not found, see http://gmplib.org/, or try --with-openssl])])
-fi
+AS_IF([test x"$with_openssl" != xno],
+       [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])])])
 
 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])