1 dnl configuration script for libcitadel
2 dnl Process this file with autoconf to produce a configure script.
5 dnl Ensure that libcitadel is configured with autoconf 2.52 or newer
8 AC_INIT(libcitadel, 7.42, https://uncensored.citadel.org)
10 AC_CONFIG_SRCDIR(Makefile.in)
11 AC_CONFIG_AUX_DIR(conftools)
15 dnl Increment LIBREVISION if source code has changed at all
17 dnl If the API has changed, increment LIBCURRENT and set LIBREVISION to 0
19 dnl If the API changes compatibly (i.e. simply adding a new function
20 dnl without changing or removing earlier interfaces), then increment LIBAGE.
22 dnl If the API changes incompatibly set LIBAGE back to 0
29 sinclude(conftools/libtool.m4)
30 sinclude(conftools/ac_c_bigendian_cross.m4)
38 dnl Checks for programs.
42 if test "$GCC" = yes ; then
44 dnl Be careful about adding the -fexceptions option; some versions of
45 dnl GCC don't support it and it causes extra warnings that are only
46 dnl distracting; avoid.
48 OLDCFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wstrict-prototypes"
49 CFLAGS="$OLDCFLAGS -fexceptions"
50 AC_MSG_CHECKING(whether $CC accepts -fexceptions)
53 AC_MSG_RESULT(no); CFLAGS="$OLDCFLAGS")
54 CXXFLAGS=`echo "$CFLAGS" | sed 's/ -Wmissing-prototypes -Wstrict-prototypes//'`
57 dnl Checks for header files.
60 AC_CHECK_HEADER(sys/mman.h, [CFLAGS="$CFLAGS -D HAVE_MMAP"])
61 AC_ARG_WITH(with_zlib, [ --with-zlib use zlib compression if present])
62 dnl Checks for the zlib compression library.
63 if test "x$with_zlib" != xno ; then
64 AC_CHECK_HEADERS(zlib.h,
65 [AC_CHECK_LIB(z, zlibVersion,
70 if test "x$ok_zlib" = xyes ; then
72 AC_DEFINE(HAVE_ZLIB,[],[whether we have zlib])
75 AC_CHECK_HEADERS(iconv.h)
78 dnl Here is the check for a libc integrated iconv
80 [ --disable-iconv do not use iconv charset conversion],
81 ok_iconv=no, ok_iconv=yes)
83 AC_MSG_CHECKING(Checking to see if your system supports iconv)
87 iconv_t ic = (iconv_t)(-1) ;
88 ic = iconv_open("UTF-8", "us-ascii");
103 dnl Check for iconv in external libiconv
104 if test "$ok_iconv" = no; then
105 AC_MSG_CHECKING(Checking for an external libiconv)
106 OLD_LDFLAGS="$LDFLAGS"
107 LDFLAGS="$LDFLAGS -liconv"
111 iconv_t ic = (iconv_t)(-1) ;
112 ic = iconv_open("UTF-8", "us-ascii");
122 LDFLAGS="$OLD_LDFLAGS"
127 if test "$ok_iconv" != "no"; then
128 AC_MSG_RESULT(libcitadel will be built with character set conversion.)
129 AC_DEFINE(HAVE_ICONV,[],[whether we have iconv for charset conversion])
131 AC_MSG_RESULT(libcitadel will be built without character set conversion.)
134 dnl disable backtrace if we don't want it.
135 AC_ARG_WITH(backtrace,
136 [ --with-backtrace enable backtrace dumps in the syslog],
137 [ if test "x$withval" != "xno" ; then
138 CFLAGS="$CFLAGS -rdynamic "
139 LDFLAGS="$LDFLAGS -rdynamic "
140 AC_CHECK_FUNCS(backtrace)
146 AC_ARG_WITH(with_zlib, [ --with-zlib use zlib compression if present])
147 dnl Checks for the zlib compression library.
148 if test "x$with_zlib" != xno ; then
149 AC_CHECK_HEADERS(zlib.h,
150 [AC_CHECK_LIB(z, zlibVersion,
155 if test "x$ok_zlib" = xyes ; then
157 AC_DEFINE(HAVE_ZLIB,[],[whether we have zlib])
161 dnl Checks for typedefs, structures, and compiler characteristics.
166 AC_CHECK_FUNCS(memmove bcopy)
168 AC_CONFIG_FILES(Makefile libcitadel.pc)
169 AC_CONFIG_HEADER(sysdep.h)
172 abs_srcdir="`cd $srcdir && pwd`"
174 if test "$abs_srcdir" != "$abs_builddir"; then
177 echo 'zlib compression: ' $ok_zlib
178 echo 'Character set conversion support:' $ok_iconv