]> git.xonotic.org Git - xonotic/d0_blind_id.git/blobdiff - configure.ac
add a helper function
[xonotic/d0_blind_id.git] / configure.ac
index ca9fa9fc2a572a696e6d7372cb68876496fb7b77..50ee2805611608d87eb889ca3786b30bc942b579 100644 (file)
@@ -4,9 +4,11 @@ AM_INIT_AUTOMAKE([-Wall foreign])
 AC_PROG_CC
 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_CONFIG_FILES([Makefile d0_blind_id.pc d0_rijndael.pc])
 AC_OUTPUT