1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT([WebCit], [7.41], [http://www.citadel.org/])
7 AC_DEFINE(PROG_SUBDIRS, [], [Program dirs])
10 missing_dir=`cd $ac_aux_dir && pwd`
11 AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
12 AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
14 dnl Make sure we see all GNU and Solaris extensions.
17 AC_CHECK_PROG(SED, sed, sed, no)
18 AC_PREFIX_DEFAULT(/usr/local/webcit)
19 if test "$prefix" = NONE; then
20 AC_DEFINE_UNQUOTED(WEBCITDIR, "$ac_default_prefix", [define this to the Citadel home directory])
21 ssl_dir="$ac_default_prefix/keys"
23 AC_DEFINE_UNQUOTED(WEBCITDIR, "$prefix", [define this to the Citadel home directory])
24 ssl_dir="$prefix/keys"
28 [ --with-ssl=PATH Specify path to OpenSSL installation ],
30 if test "x$withval" != "xno" ; then
35 dnl Set some system-specific variables which are OK to set before compiler
37 PTHREAD_DEFS=-D_REENTRANT
39 dnl Tru64 Unix requires we use -pthread instead of linking the threads
40 dnl libraries directly, and we can't build threaded programs with gcc
41 dnl due to header file problems.
43 test -z "$CC" && CC=cc
46 dnl FreeBSD is similar:
49 PTHREAD_DEFS=-D_THREAD_SAFE
52 PTHREAD_DEFS='-D_REENTRANT -D_PTHREADS'
57 AC_SUBST(PTHREAD_DEFS)
59 dnl Checks for programs.
62 dnl Configure compiler flags for GCC
63 if test "$GCC" = yes; then
66 dnl CFLAGS="$CFLAGS -Wall -Wno-char-subscripts --pedantic"
67 CFLAGS="$CFLAGS -Wall -Wno-char-subscripts"
70 dnl CFLAGS="$CFLAGS -Wall --pedantic"
71 CFLAGS="$CFLAGS -Wall"
76 # missing_dir=`cd $ac_aux_dir && pwd`
77 # AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
79 dnl Checks for libraries.
80 if test "$LIBS" != -pthread; then
81 AC_CHECK_LIB(pthread, pthread_create)
82 AC_CHECK_LIB(pthreads, pthread_create)
84 AC_SEARCH_LIBS(gethostbyname, nsl)
85 AC_SEARCH_LIBS(connect, socket)
87 dnl Checks for header files.
89 dnl AC_HEADER_SYS_WAIT
94 dnl Checks for typedefs, structures, and compiler characteristics.
100 dnl Checks for library functions.
103 AC_REPLACE_FUNCS(snprintf)
104 AC_CHECK_HEADERS(fcntl.h limits.h sys/time.h unistd.h iconv.h xlocale.h)
106 dnl Checks for the zlib compression library.
107 if test "x$with_zlib" != xno ; then
108 AC_CHECK_HEADERS(zlib.h,
109 [AC_CHECK_LIB(z, zlibVersion,
114 if test "x$ok_zlib" = xyes ; then
115 dnl libcitadel will bring libz, so we don't need it here. LDFLAGS="-lz $LDFLAGS"
116 AC_DEFINE(HAVE_ZLIB, [], [define this if you have zlib compression available])
119 dnl Here is the check for a libc integrated iconv
121 [ --disable-iconv do not use iconv charset conversion],
122 ok_iconv=no, ok_iconv=yes)
124 AC_MSG_CHECKING(Checking to see if your system supports iconv)
128 iconv_t ic = (iconv_t)(-1) ;
129 ic = iconv_open("UTF-8", "us-ascii");
144 dnl Check for iconv in external libiconv
145 if test "$ok_iconv" = no; then
146 AC_MSG_CHECKING(Checking for an external libiconv)
147 OLD_LDFLAGS="$LDFLAGS"
148 LDFLAGS="$LDFLAGS -liconv"
152 iconv_t ic = (iconv_t)(-1) ;
153 ic = iconv_open("UTF-8", "us-ascii");
163 LDFLAGS="$OLD_LDFLAGS"
168 if test "$ok_iconv" != "no"; then
169 AC_MSG_RESULT(WebCit will be built with character set conversion.)
170 AC_DEFINE(HAVE_ICONV,[],[whether we have iconv for charset conversion])
172 AC_MSG_RESULT(WebCit will be built without character set conversion.)
175 AC_CHECK_LIB(intl, libintl_bindtextdomain, [LDFLAGS="$LDFLAGS -lintl"])
178 dnl Checks for the libical iCalendar library.
179 AC_CHECK_HEADER(libical/ical.h,
180 [AC_CHECK_LIB(ical, icaltimezone_set_tzid_prefix,
185 AC_MSG_ERROR(libical was not found and is required. More info: http://www.citadel.org/doku.php/installation:start)
190 AC_MSG_ERROR(libical/ical.h was not found and is required. More info: http://www.citadel.org/doku.php/installation:start)
195 dnl Check for libcitadel
196 AC_CHECK_HEADER(libcitadel.h,
197 [AC_CHECK_LIB(citadel, libcitadel_version_string,
199 LIBS="-lcitadel $LIBS"
200 SETUP_LIBS="-lcitadel $SETUP_LIBS"
203 AC_MSG_ERROR(libcitadel was not found or is not usable. Please install libcitadel.)
208 AC_MSG_ERROR(libcitadel.h was not found or is not usable. Please install libcitadel.)
215 # The big search for OpenSSL
216 if test "$with_ssl" != "no"; then
218 saved_LDFLAGS="$LDFLAGS"
219 saved_CFLAGS="$CFLAGS"
220 if test "x$prefix" != "xNONE"; then
221 tryssldir="$tryssldir $prefix"
223 AC_CACHE_CHECK([for OpenSSL], ac_cv_openssldir, [
224 for ssldir in $tryssldir "" /usr /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do
225 CFLAGS="$saved_CFLAGS"
226 LDFLAGS="$saved_LDFLAGS"
227 LIBS="$saved_LIBS -lssl -lcrypto"
229 # Skip directories if they don't exist
230 if test ! -z "$ssldir" -a ! -d "$ssldir" ; then
233 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
234 # Try to use $ssldir/lib if it exists, otherwise
236 if test -d "$ssldir/lib" ; then
237 LDFLAGS="-L$ssldir/lib $saved_LDFLAGS"
238 if test ! -z "$need_dash_r" ; then
239 LDFLAGS="-R$ssldir/lib $LDFLAGS"
242 LDFLAGS="-L$ssldir $saved_LDFLAGS"
243 if test ! -z "$need_dash_r" ; then
244 LDFLAGS="-R$ssldir $LDFLAGS"
247 # Try to use $ssldir/include if it exists, otherwise
249 if test -d "$ssldir/include" ; then
250 CFLAGS="-I$ssldir/include $saved_CFLAGS"
252 CFLAGS="-I$ssldir $saved_CFLAGS"
256 # Basic test to check for compatible version and correct linking
257 # *does not* test for RSA - that comes later.
261 #include <openssl/rand.h>
265 memset(a, 0, sizeof(a));
266 RAND_add(a, sizeof(a), sizeof(a));
267 return(RAND_status() <= 0);
276 if test ! -z "$found_crypto" ; then
281 if test -z "$ssldir" ; then
285 if test ! -z "$found_crypto" ; then
286 ac_cv_openssldir=$ssldir
288 ac_cv_openssldir="no"
292 LDFLAGS="$saved_LDFLAGS"
293 CFLAGS="$saved_CFLAGS"
295 if test "x$ac_cv_openssldir" != "xno" ; then
296 AC_DEFINE(HAVE_OPENSSL,[],[whethe we have openssl])
298 LIBS="-lssl -lcrypto $LIBS"
299 dnl Need to recover ssldir - test above runs in subshell
300 ssldir=$ac_cv_openssldir
301 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr" -a "x$ssldir" != "x(system)"; then
302 # Try to use $ssldir/lib if it exists, otherwise
304 if test -d "$ssldir/lib" ; then
305 LDFLAGS="-L$ssldir/lib $saved_LDFLAGS"
306 if test ! -z "$need_dash_r" ; then
307 LDFLAGS="-R$ssldir/lib $LDFLAGS"
310 LDFLAGS="-L$ssldir $saved_LDFLAGS"
311 if test ! -z "$need_dash_r" ; then
312 LDFLAGS="-R$ssldir $LDFLAGS"
315 # Try to use $ssldir/include if it exists, otherwise
317 if test -d "$ssldir/include" ; then
318 CFLAGS="-I$ssldir/include $saved_CFLAGS"
320 CFLAGS="-I$ssldir $saved_CFLAGS"
325 dnl Checks for the SSLdir
326 dnl this is a bit different than the rest,
327 dnl because of the citadel used to have a keys/ subdir.
329 [ --with-ssldir directory to store the ssl certificates under],
330 [ if test "x$withval" != "xno" ; then
333 if test "$found_ssl" = "no"; then
334 echo "Your setup was incomplete; ssldir doesn't make sense without openssl"
338 AC_SUBST(MAKE_SSL_DIR)
341 AC_DEFINE_UNQUOTED(SSL_DIR, "$ssl_dir", [were should we put our keys?])
346 AC_CHECK_FUNCS(strftime_l uselocale gettext)
348 if test "$ok_nls" != "no"; then
349 AC_CHECK_PROG(ok_xgettext, xgettext, yes, no)
353 if test "$ok_nls" != "no"; then
354 AC_CHECK_PROG(ok_msgmerge, msgmerge, yes, no)
358 if test "$ok_nls" != "no"; then
359 AC_CHECK_PROG(ok_msgfmt, msgfmt, yes, no)
363 if test "$ok_nls" != "no"; then
364 AC_MSG_RESULT(WebCit will be built with national language support.)
365 AC_DEFINE(ENABLE_NLS, [], [whether we have NLS support])
366 PROG_SUBDIRS="$PROG_SUBDIRS po"
368 AC_MSG_RESULT(WebCit will be built without national language support.)
373 dnl disable backtrace if we don't want it.
375 [ --with-gprof enable profiling],
376 [ if test "x$withval" != "xno" ; then
377 CFLAGS="$CFLAGS -pg "
378 LDFLAGS="$LDFLAGS -pg "
383 dnl disable backtrace if we don't want it.
384 AC_ARG_WITH(backtrace,
385 [ --with-backtrace enable backtrace dumps in the syslog],
386 [ if test "x$withval" != "xno" ; then
387 CFLAGS="$CFLAGS -rdynamic "
388 LDFLAGS="$LDFLAGS -rdynamic "
389 AC_CHECK_FUNCS(backtrace)
394 if test "$prefix" = NONE; then
395 datadir=$ac_default_prefix
396 localedir=$ac_default_prefix
397 wwwdir=$ac_default_prefix
398 rundir=$ac_default_prefix
399 editordir=$ac_default_prefix/tiny_mce
405 editordir=$prefix/tiny_mce
408 dnl where to put the locale files
409 AC_ARG_WITH(localedir,
410 [ --with-localedir directory to put the locale files to],
411 [ if test "x$withval" != "xno" ; then
416 AC_DEFINE_UNQUOTED(LOCALEDIR, "$localedir",[where to find our pot files])
420 dnl Checks where to put our templates
422 [ --with-wwwdir directory to put our templates],
423 [ if test "x$withval" != "xno" ; then
428 AC_DEFINE_UNQUOTED(WWWDIR, "$wwwdir", [where to find our templates and pics])
433 dnl Checks for the run-dir for the sockets
435 [ --with-rundir directory to place runtime files (UDS) to?],
436 [ if test "x$withval" != "xno" ; then
437 AC_DEFINE(HAVE_RUN_DIR, [], [should we put our non volatile files elsewhere?])
440 AC_SUBST(MAKE_RUN_DIR)
444 AC_DEFINE_UNQUOTED(RUNDIR, "$rundir", [define, where the config should go in unix style])
446 dnl Checks for the Datadir
448 [ --with-datadir directory to store the databases under],
449 [ if test "x$withval" != "xno" ; then
454 AC_DEFINE_UNQUOTED(DATADIR, "$datadir",[define, if the user suplied a data-directory to use.])
456 dnl Checks where to put our editor
457 AC_ARG_WITH(editordir,
458 [ --with-editordir directory to put our editor],
459 [ if test "x$withval" != "xno" ; then
464 AC_DEFINE_UNQUOTED(EDITORDIR, "$editordir", [where to find our mail editor])
467 AC_CONFIG_HEADER(sysdep.h)
468 AC_OUTPUT(Makefile po/Makefile )
470 echo ------------------------------------------------------------------------
471 echo 'Character set conversion support:' $ok_iconv
472 echo 'National language support: ' $ok_nls
473 echo 'Compression support: ' $ok_zlib