]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/configure.in
* fixed several crash / invalid data cases in the hash implementation
[citadel.git] / libcitadel / configure.in
index f700b3cfcfbbf7505ddb8a0e505861972212eb05..dad2a9998b40785ab82c912a36590f479d25a2b9 100755 (executable)
@@ -5,7 +5,7 @@ dnl
 dnl Ensure that libcitadel is configured with autoconf 2.52 or newer
 AC_PREREQ(2.52)
 
-AC_INIT(citadel, 1.00, example@example.com)
+AC_INIT(libcitadel, 1.06, https://uncensored.citadel.org)
 
 AC_CONFIG_SRCDIR(Makefile.in)
 AC_CONFIG_AUX_DIR(conftools)
@@ -57,13 +57,16 @@ fi
 dnl Checks for header files.
 AC_HEADER_STDC
 
+AC_CHECK_HEADER(sys/mman.h, [CFLAGS="$CFLAGS -D HAVE_MMAP"])
+
+
 dnl Checks for typedefs, structures, and compiler characteristics.
 
 AC_C_CONST
 AC_TYPE_SIZE_T
 AC_CHECK_FUNCS(memmove bcopy)
 
-AC_CONFIG_FILES(Makefile)
+AC_CONFIG_FILES(Makefile libcitadel.pc)
 AC_OUTPUT
 
 abs_srcdir="`cd $srcdir && pwd`"