X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=configure.ac;h=a6e8bbe5cfe80507b0484345e213cfb0f8e8d7a5;hb=587bbd752e2037d8c1488a51d99c99f29a660f0d;hp=a034e98ed8be43d73ab390eed97f0642eba90b22;hpb=49f59e4f7d0a62b735546a5e1cece6e9a926ca38;p=xonotic%2Fd0_blind_id.git diff --git a/configure.ac b/configure.ac index a034e98..a6e8bbe 100644 --- a/configure.ac +++ b/configure.ac @@ -1,11 +1,14 @@ AC_INIT([d0_blind_id], [0.1], [divVerent@alientrap.org]) +AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([-Wall foreign]) AC_PROG_CC -AM_PROG_LIBTOOL +AC_PROG_LIBTOOL -AC_SEARCH_LIBS(clock_gettime, rt, , [AC_MSG_ERROR([GNU MP not found, see http://gmplib.org/])]) AC_SEARCH_LIBS(__gmpz_init, gmp, , [AC_MSG_ERROR([GNU MP not found, see http://gmplib.org/])]) +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]) + dnl AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile d0_blind_id.pc]) AC_OUTPUT