X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fconfigure.ac;h=20753a379266d67ad7403221b73e0f3e20fb0070;hb=cd39850a3746f8a5bf1f4c082afd3a8d644f9f3c;hp=f0f968738e79d9120e140a32288d5ab5748d23b8;hpb=501b255d375ab099bc59455374a24f15da05d7d2;p=citadel.git diff --git a/webcit/configure.ac b/webcit/configure.ac index f0f968738..20753a379 100644 --- a/webcit/configure.ac +++ b/webcit/configure.ac @@ -1,15 +1,8 @@ dnl Process this file with autoconf to produce a configure script. dnl $Id$ -AC_INIT(webserver.c) +AC_INIT([WebCit], [7.64], [http://www.citadel.org/]) -PACKAGE=webcit -VERSION=7.13 -AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [our package name]) -AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [our package version]) -AC_SUBST(PACKAGE) -AC_SUBST(VERSION) - AC_SUBST(PROG_SUBDIRS) AC_DEFINE(PROG_SUBDIRS, [], [Program dirs]) AC_CANONICAL_HOST @@ -31,8 +24,6 @@ else ssl_dir="$prefix/keys" fi -AC_ARG_WITH(with_libical, [ --with-libical use libical calendaring library]) -AC_ARG_WITH(with_zlib, [ --with-zlib use zlib compression if present]) AC_ARG_WITH(ssl, [ --with-ssl=PATH Specify path to OpenSSL installation ], [ @@ -60,6 +51,8 @@ case "$host" in *-*-solaris*) PTHREAD_DEFS='-D_REENTRANT -D_PTHREADS' ;; + *-*-darwin*) + LIBS=-lintl esac AC_SUBST(PTHREAD_DEFS) @@ -70,9 +63,11 @@ dnl Configure compiler flags for GCC if test "$GCC" = yes; then case "$host" in *-*-solaris*) +dnl CFLAGS="$CFLAGS -Wall -Wno-char-subscripts --pedantic" CFLAGS="$CFLAGS -Wall -Wno-char-subscripts" ;; *) +dnl CFLAGS="$CFLAGS -Wall --pedantic" CFLAGS="$CFLAGS -Wall" ;; esac @@ -92,7 +87,6 @@ AC_SEARCH_LIBS(connect, socket) dnl Checks for header files. AC_HEADER_STDC dnl AC_HEADER_SYS_WAIT -AC_CHECK_HEADERS(fcntl.h limits.h sys/time.h unistd.h) @@ -107,57 +101,117 @@ dnl Checks for library functions. AC_TYPE_SIGNAL dnl AC_FUNC_VPRINTF AC_REPLACE_FUNCS(snprintf) +AC_CHECK_HEADERS(fcntl.h limits.h sys/time.h unistd.h iconv.h xlocale.h) -dnl Checks for the libical calendaring library. -if test "x$with_libical" != xno ; then - AC_CHECK_HEADERS(ical.h, - [AC_CHECK_LIB(ical, icalcomponent_new, - [ok_libical=yes],, - )]) +dnl Checks for the zlib compression library. +if test "x$with_zlib" != xno ; then + AC_CHECK_HEADERS(zlib.h, + [AC_CHECK_LIB(z, zlibVersion, + [ok_zlib=yes],, + )]) fi -if test "x$ok_libical" = xyes ; then +if test "x$ok_zlib" = xyes ; then +dnl libcitadel will bring libz, so we don't need it here. LDFLAGS="-lz $LDFLAGS" + AC_DEFINE(HAVE_ZLIB, [], [define this if you have zlib compression available]) +fi - AC_TRY_RUN( - [ -#include -main() { - int major, minor, v; - sscanf(ICAL_VERSION, "%d.%d", &major, &minor); - v = 100*major + minor; - printf("libical version: %i\n", v); - if (v >= 24) { - printf("This version is ok.\n"); - return(0); - } - printf("libical 0.24 or newer required.\n"); - printf("Citadel will be built without calendar support.\n"); - return(1); -} - ], +dnl Here is the check for a libc integrated iconv +AC_ARG_ENABLE(iconv, + [ --disable-iconv do not use iconv charset conversion], + ok_iconv=no, ok_iconv=yes) + +AC_MSG_CHECKING(Checking to see if your system supports iconv) +AC_TRY_RUN([ + #include + main() { + iconv_t ic = (iconv_t)(-1) ; + ic = iconv_open("UTF-8", "us-ascii"); + iconv_close(ic); + exit(0); + } + ], [ - LIBS="-lical $LIBS" - AC_DEFINE(HAVE_LIBICAL,[],[whether we have libical available]) + ok_iconv=yes + AC_MSG_RESULT([yes]) + ], + [ + ok_iconv=no + AC_MSG_RESULT([no]) ] - ) +) + +dnl Check for iconv in external libiconv +if test "$ok_iconv" = no; then + AC_MSG_CHECKING(Checking for an external libiconv) + OLD_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -liconv" + AC_TRY_RUN([ + #include + main() { + iconv_t ic = (iconv_t)(-1) ; + ic = iconv_open("UTF-8", "us-ascii"); + iconv_close(ic); + } + ], + [ + ok_iconv=yes + AC_MSG_RESULT([yes]) + ], + [ + ok_iconv=no + LDFLAGS="$OLD_LDFLAGS" + AC_MSG_RESULT([no]) + ] + ) +fi +if test "$ok_iconv" != "no"; then + AC_MSG_RESULT(WebCit will be built with character set conversion.) + AC_DEFINE(HAVE_ICONV,[],[whether we have iconv for charset conversion]) +else + AC_MSG_RESULT(WebCit will be built without character set conversion.) fi +AC_CHECK_LIB(intl, libintl_bindtextdomain, [LDFLAGS="$LDFLAGS -lintl"]) -dnl Checks for the zlib compression library. -if test "x$with_zlib" != xno ; then - AC_CHECK_HEADERS(zlib.h, - [AC_CHECK_LIB(z, zlibVersion, - [ok_zlib=yes],, - )]) -fi +dnl Checks for the libical iCalendar library. +AC_CHECK_HEADER(libical/ical.h, + [AC_CHECK_LIB(ical, icaltimezone_set_tzid_prefix, + [ + LIBS="-lical $LIBS" + ], + [ + AC_MSG_ERROR(libical was not found and is required. More info: http://www.citadel.org/doku.php/installation:start) + ] + , + )], + [ + AC_MSG_ERROR(libical/ical.h was not found and is required. More info: http://www.citadel.org/doku.php/installation:start) + ] +) + + +dnl Check for libcitadel +AC_CHECK_HEADER(libcitadel.h, + [AC_CHECK_LIB(citadel, libcitadel_version_string, + [ + LIBS="-lcitadel $LIBS" + SETUP_LIBS="-lcitadel $SETUP_LIBS" + ], + [ + AC_MSG_ERROR(libcitadel was not found or is not usable. Please install libcitadel.) + ] + , + )], + [ + AC_MSG_ERROR(libcitadel.h was not found or is not usable. Please install libcitadel.) + ] +) -if test "x$ok_zlib" = xyes ; then - LIBS="-lz $LIBS" - AC_DEFINE(HAVE_ZLIB,[],[whether we have zlib]) -fi +found_ssl=no # The big search for OpenSSL if test "$with_ssl" != "no"; then saved_LIBS="$LIBS" @@ -240,6 +294,7 @@ if test "$with_ssl" != "no"; then if test "x$ac_cv_openssldir" != "xno" ; then AC_DEFINE(HAVE_OPENSSL,[],[whethe we have openssl]) + found_ssl=yes LIBS="-lssl -lcrypto $LIBS" dnl Need to recover ssldir - test above runs in subshell ssldir=$ac_cv_openssldir @@ -275,73 +330,20 @@ AC_ARG_WITH(ssldir, [ if test "x$withval" != "xno" ; then ssl_dir="$withval" + if test "$found_ssl" = "no"; then + echo "Your setup was incomplete; ssldir doesn't make sense without openssl" + exit + fi fi AC_SUBST(MAKE_SSL_DIR) ] ) AC_DEFINE_UNQUOTED(SSL_DIR, "$ssl_dir", [were should we put our keys?]) -dnl Here is the check for a usable iconv -AC_ARG_ENABLE(iconv, - [ --disable-iconv do not use iconv charset conversion], - ok_iconv=no, ok_iconv=yes) -if test "$ok_nls" != "no"; then - AC_MSG_RESULT(Checking to see if your system supports iconv...) - AC_TRY_RUN([ - #include - main() { - iconv_t ic = (iconv_t)(-1) ; - ic = iconv_open("UTF-8", "us-ascii"); - iconv_close(ic); - exit(0); - } - ], - ok_iconv=yes, - ok_iconv=no - ) -fi -if test "$ok_iconv" != "no"; then - AC_MSG_RESULT(WebCit will be built with character set conversion.) - AC_DEFINE(HAVE_ICONV,[],[whether we have iconv for charset conversion]) -else - AC_MSG_RESULT(WebCit will be built without character set conversion.) -fi - - - -dnl Here is the check for libintl etc. - -AC_ARG_ENABLE(nls, - [ --disable-nls do not use Native Language Support], - ok_nls=no, ok_nls=yes) - -if test "$ok_nls" != "no"; then - AC_MSG_RESULT(Checking for per-thread NLS support...) - AC_TRY_RUN([ - #define _GNU_SOURCE - #include - #include - #include - main() { - char *foo = NULL; - char baz[32]; - struct tm *tm; - uselocale(LC_GLOBAL_LOCALE); - foo = gettext("bar"); - if (0) { - strftime_l(baz, sizeof baz, "%c", tm, LC_GLOBAL_LOCALE); - } - exit(0); - } - ], - ok_uselocale=yes, - ok_uselocale=no - ) - ok_nls=$ok_uselocale -fi +AC_CHECK_FUNCS(strftime_l uselocale gettext) if test "$ok_nls" != "no"; then AC_CHECK_PROG(ok_xgettext, xgettext, yes, no) @@ -461,12 +463,12 @@ AC_ARG_WITH(editordir, ) AC_DEFINE_UNQUOTED(EDITORDIR, "$editordir", [where to find our mail editor]) +./mk_module_init.sh AC_CONFIG_HEADER(sysdep.h) AC_OUTPUT(Makefile po/Makefile ) echo ------------------------------------------------------------------------ -echo 'zlib compression: ' $ok_zlib -echo 'Calendar support: ' $ok_libical echo 'Character set conversion support:' $ok_iconv echo 'National language support: ' $ok_nls +echo 'Compression support: ' $ok_zlib echo