]> de.git.xonotic.org Git - xonotic/d0_blind_id.git/blob - configure.ac
fix another typo
[xonotic/d0_blind_id.git] / configure.ac
1 AC_INIT([d0_blind_id], [0.1], [divVerent@alientrap.org])
2 AC_CONFIG_MACRO_DIR([m4])
3 AM_INIT_AUTOMAKE([-Wall foreign])
4 AC_PROG_CC
5 AC_PROG_LIBTOOL
6
7 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])
8 AM_CONDITIONAL(WITH_OPENSSL, [test x"$with_openssl" != xno])
9
10 AS_IF([test x"$with_openssl" != xno],
11         [AC_SEARCH_LIBS(BN_init, ssl, ,
12                 [AC_SEARCH_LIBS(BN_init, ssl, ,
13                         [AC_MSG_ERROR([OpenSSL not found, see http://www.openssl.org/, or try --without-openssl])])],
14                 -lcrypto)],
15         [AC_SEARCH_LIBS(__gmpz_init, gmp, ,
16                 [AC_MSG_ERROR([GNU MP not found, see http://gmplib.org/, or try --with-openssl])])])
17
18 AC_ARG_ENABLE(rijndael, AS_HELP_STRING([--disable-rijndael], [Disable build of the d0_rijndael library]), [enable_aes=$enableval], [enable_aes=yes])
19 AM_CONDITIONAL(ENABLE_RIJNDAEL, [test x$enable_aes = xyes])
20
21 dnl AC_CONFIG_HEADERS([config.h])
22 AC_CONFIG_FILES([Makefile d0_blind_id.pc d0_rijndael.pc])
23 AC_OUTPUT