]> git.xonotic.org Git - xonotic/d0_blind_id.git/blobdiff - configure.ac
libtommath support: compiles, does not work yet
[xonotic/d0_blind_id.git] / configure.ac
index 268cc4c3c14efc3c8e58a728bcb4b5dee0497bf4..46853a16748fe1d77471804a05f22486fd851ccc 100644 (file)
@@ -5,13 +5,18 @@ 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)]), [with_openssl=$withval], [with_openssl=no])
+AC_ARG_WITH(tommath, AS_HELP_STRING([--with-tommath], [Use libtommath instead of GMP (slow, but WTFPL)]), [with_tommath=$withval], [with_tommath=no])
 AM_CONDITIONAL(WITH_OPENSSL, [test x"$with_openssl" != xno])
+AM_CONDITIONAL(WITH_TOMMATH, [test x"$with_tommath" != xno])
 
-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])])])
+AS_IF([test x"$with_tommath" != xno],
+       [AC_SEARCH_LIBS(mp_init, tommath, ,
+               [AC_MSG_ERROR([libtommath not found, see http://www.libtom.org/, or try --without-tommath])])],
+       [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])