4 AC_CONFIG_AUX_DIR(config)
5 AC_CONFIG_MACRO_DIR([m4])
15 if test \( -d .git \); then
16 AC_CHECK_PROG([GIT], [git], [yes], [no], [$PATH])
17 if test \( "$GIT" = "no" \); then
18 AC_MSG_ERROR([*** git not found. See http://git-scm.com/])
20 GIT_VERSION=`git describe --abbrev=6 --dirty --always`
21 echo "echo ${GIT_VERSION}" > ./version
24 GIT_VERSION=`sh -c ". ./$srcdir/version"`
26 MAJOR_VERSION=${GIT_VERSION%%.*}
27 MINOR_VERSION=${GIT_VERSION#*.}
28 MINOR_VERSION=${MINOR_VERSION%%.*}
29 MICRO_VERSION=${GIT_VERSION##*.}
30 MICRO_VERSION=${MICRO_VERSION%%-*}
31 EXTRA_VERSION=${GIT_VERSION#*-}
32 EXTRA_VERSION=${EXTRA_VERSION%%-*}
34 if test \( "x$EXTRA_VERSION" != "x" -a `echo -n $EXTRA_VERSION | wc -c` -lt 5 \); then
35 VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}git${EXTRA_VERSION}
37 VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}
41 if test \( "x$EXTRA_RELEASE" != "x" \); then
42 VERSION=${VERSION}${EXTRA_RELEASE}${EXTRA_GTK2_VERSION}
49 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
50 dnl AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
51 dnl AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
54 AC_SUBST(MAJOR_VERSION)
55 AC_SUBST(MINOR_VERSION)
56 AC_SUBST(MICRO_VERSION)
57 AC_SUBST(EXTRA_VERSION)
60 AC_CHECK_PROG(HAVE_GTK_ICON_CACHE, gtk-update-icon-cache, yes, no)
61 AM_CONDITIONAL(UPDATE_GTK_ICON_CACHE, test x"$HAVE_GTK_ICON_CACHE" = xyes)
63 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
64 if test x$PKG_CONFIG = xno ; then
65 AC_MSG_ERROR([*** pkg-config not found. See http://www.freedesktop.org/software/pkgconfig/])
68 dnl GNOME 2.x installed?
69 PKG_CHECK_MODULES(GNOME2, libgnome-2.0 >= 2.0, ac_enable_gnome2=yes, ac_enable_gnome2=no)
70 AM_CONDITIONAL(CLAWS_GNOME2, test x"$ac_enable_gnome2" = x"yes")
72 dnl libtool versioning
73 LT_RELEASE=$MAJOR_VERSION.$MINOR_VERSION
74 LT_CURRENT=`expr $MICRO_VERSION - $INTERFACE_AGE`
75 LT_REVISION=$INTERFACE_AGE
76 LT_AGE=`expr $BINARY_AGE - $INTERFACE_AGE`
82 dnl Specify a header configuration file
83 AC_CONFIG_HEADERS(config.h)
84 AC_CONFIG_HEADERS(claws-features.h)
88 dnl Checks for programs.
108 dnl ******************************
110 dnl Not needed anymore because we
111 dnl do AC_CANONICAL_SYSTEM above
112 dnl ******************************
113 dnl AC_CANONICAL_HOST
115 dnl Copied from the official gtk+-2 configure.in
116 AC_MSG_CHECKING([for some Win32 platform])
118 *-*-mingw*|*-*-cygwin*)
120 LDFLAGS="$LDFLAGS -mwindows"
126 AC_MSG_RESULT([$platform_win32])
127 AM_CONDITIONAL(PLATFORM_WIN32, test x"$platform_win32" = x"yes")
129 AC_MSG_CHECKING([for native Win32])
138 AC_MSG_RESULT([$os_win32])
139 AM_CONDITIONAL(OS_WIN32, test x"$os_win32" = x"yes")
141 AC_MSG_CHECKING([for Cygwin])
150 AC_MSG_RESULT([$env_cygwin])
151 AM_CONDITIONAL(CYGWIN, test x"$env_cygwin" = x"yes")
153 if test "$GCC" = "yes"
155 CFLAGS="$CFLAGS -Wno-unused-function"
156 #CFLAGS="-g -Wall -Wno-unused-function"
159 AC_MSG_CHECKING([if gcc supports -Wno-pointer-sign])
160 _gcc_cflags_save=$CFLAGS
161 CFLAGS="-Wno-pointer-sign"
162 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],_gcc_psign=yes,_gcc_psign=no)
163 AC_MSG_RESULT($_gcc_psign)
164 CFLAGS=$_gcc_cflags_save;
165 if test x"$_gcc_psign" = xyes ; then
166 CFLAGS="$CFLAGS -Wno-pointer-sign"
169 CFLAGS="$CFLAGS -Wall"
171 if test $USE_MAINTAINER_MODE = yes; then
172 CFLAGS="-g -Wall -Wno-pointer-sign -DUSE_MAINTAINER_MODE"
178 CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
181 # Note that we need to link to pthreadGC2 in all cases. This
182 # is because some locking is used even when pthread support is
184 pthread_name=pthreadGC2
185 CFLAGS="$CFLAGS -mms-bitfields"
186 LIBS="$LIBS -l${pthread_name} -lws2_32 -lregex"
189 CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
190 CFLAGS="$CFLAGS -std=gnu99 -DSOLARIS"
197 dnl floor and ceil are in -lm
201 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
204 LIBS="$LIBS $GTK_LIBS"
205 AC_CHECK_FUNCS(bind_textdomain_codeset)
209 ALL_LINGUAS="bg ca cs de en_GB es fi fr he hu id_ID it ja lt nl pl pt_BR pt_PT ru sk sv uk zh_CN zh_TW"
210 GETTEXT_PACKAGE=claws-mail
211 AC_SUBST(GETTEXT_PACKAGE)
212 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define text domain.])
214 AM_GNU_GETTEXT_VERSION([0.15])
215 AM_GNU_GETTEXT([external])
217 AC_ARG_ENABLE(manual,
218 [ --disable-manual Do not build user manual],
219 [enable_manual=$enableval], [enable_manual=yes])
222 [ --disable-libsm Do not build libSM support for session management],
223 [enable_libsm=$enableval], [enable_libsm=yes])
226 [ --disable-ipv6 Do not build IPv6 support],
227 [enable_ipv6=$enableval], [enable_ipv6=yes])
229 AC_ARG_ENABLE(gnutls,
230 [ --disable-gnutls Do not build GnuTLS support for SSL/TLS],
231 [enable_gnutls=$enableval], [enable_gnutls=yes])
233 AC_ARG_ENABLE(enchant,
234 [ --disable-enchant Do not build Enchant support for spell-checking],
235 [enable_enchant=$enableval], [enable_enchant=yes])
237 AC_ARG_ENABLE(crash-dialog,
238 [ --enable-crash-dialog Build crash dialog],
239 [enable_crash_dialog=$enableval], [enable_crash_dialog=no])
241 AC_ARG_ENABLE(generic-umpc,
242 [ --enable-generic-umpc Build generic UMPC code],
243 [enable_generic_umpc=$enableval], [enable_generic_umpc=no])
246 [ --enable-maemo Build for the Maemo platform],
247 [enable_maemo=$enableval], [enable_maemo=no])
249 AC_ARG_ENABLE(compface,
250 [ --disable-compface Do not build compface support for X-Face],
251 [enable_compface=$enableval], [enable_compface=yes])
253 AC_ARG_ENABLE(pthread,
254 [ --disable-pthread Do not build pthread support],
255 [enable_pthread=$enableval], [enable_pthread=yes])
257 AC_ARG_ENABLE(startup-notification,
258 [ --disable-startup-notification Do not startup notification support],
259 [enable_startup_notification=$enableval], [enable_startup_notification=yes])
262 [ --disable-dbus Do not build DBUS support],
263 [enable_dbus=$enableval], [enable_dbus=yes])
266 [ --disable-ldap Do not build LDAP support],
267 [enable_ldap=$enableval], [enable_ldap=yes])
269 AC_ARG_ENABLE(jpilot,
270 [ --disable-jpilot Do not build JPilot support],
271 [enable_jpilot=$enableval], [enable_jpilot=yes])
273 AC_ARG_ENABLE(networkmanager,
274 [ --disable-networkmanager Do not build NetworkManager support],
275 [enable_networkmanager=$enableval], [enable_networkmanager=yes])
277 AC_ARG_ENABLE(libetpan,
278 [ --disable-libetpan Do not build libetpan support for IMAP4/NNTP],
279 [enable_libetpan=$enableval], [enable_libetpan=yes])
281 AC_ARG_ENABLE(valgrind,
282 [ --disable-valgrind Do not build valgrind support for debugging],
283 [enable_valgrind=$enableval], [enable_valgrind=yes])
285 AC_ARG_ENABLE(new-addrbook,
286 [ --enable-new-addrbook Build new external address book support],
287 [enable_new_addrbook=$enableval], [enable_new_addrbook=no])
290 [ --enable-gtk3 Build GTK3 support],
291 [enable_gtk3=$enableval], [enable_gtk3=no])
293 AC_ARG_ENABLE(deprecated,
294 [ --disable-deprecated Disable deprecated GTK functions],
295 [GTK_CFLAGS="$GTK_CFLAGS -DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"], [])
297 manualdir='${docdir}/manual'
298 AC_ARG_WITH(manualdir,
299 [ --with-manualdir=DIR Manual directory],
300 [manualdir="$withval"])
303 dnl ******************************
304 dnl ** Check for required tools **
305 dnl ** to build manuals **
306 dnl ******************************
308 AC_PATH_PROG(DOCBOOK2HTML, docbook2html)
309 AC_PATH_PROG(DOCBOOK2TXT, docbook2txt)
310 AC_PATH_PROG(DOCBOOK2PS, docbook2ps)
311 AC_PATH_PROG(DOCBOOK2PDF, docbook2pdf)
313 AM_CONDITIONAL(MANUAL_HTML, test -n "$DOCBOOK2HTML")
314 AM_CONDITIONAL(MANUAL_TXT, test -n "$DOCBOOK2TXT")
315 AM_CONDITIONAL(MANUAL_PDF, test -n "$DOCBOOK2PDF")
316 AM_CONDITIONAL(MANUAL_PS, test -n "$DOCBOOK2PS")
318 if test x"$enable_manual" = x"yes"; then
319 if test -n "$DOCBOOK2TXT" -o -n "$DOCBOOK2HTML" \
320 -o -n "$DOCBOOK2PS" -o -n "$DOCBOOK2PDF"; then
327 AM_CONDITIONAL(BUILD_MANUAL, test x"$enable_manual" = xyes)
329 dnl Set PACKAGE_DATA_DIR in config.h.
330 if test "x${datarootdir}" = 'x${prefix}/share'; then
331 if test "x${prefix}" = "xNONE"; then
332 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${ac_default_prefix}/share/${PACKAGE}",[PACKAGE_DATA_DIR])
334 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/share/${PACKAGE}",[PACKAGE_DATA_DIR])
337 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datarootdir}/${PACKAGE}",[PACKAGE_DATA_DIR])
340 AC_CHECK_LIB(xpg4, setlocale)
344 AC_MSG_CHECKING([whether to use LibSM])
345 if test x"$enable_libsm" = xyes; then
347 AC_CHECK_LIB(SM, SmcSaveYourselfDone,
348 [SM_LIBS="$X_LIBS -lSM -lICE"],enable_libsm=no,
350 AC_CHECK_HEADERS(X11/SM/SMlib.h,,enable_libsm=no)
351 if test x"$enable_libsm" = xyes; then
352 AC_DEFINE(HAVE_LIBSM, 1, [Define to 1 if you have libSM installed])
354 AC_MSG_RESULT(not found)
355 AC_MSG_WARN([*** LibSM will not be supported ***])
362 dnl Check for d_type member in struct dirent
363 AC_MSG_CHECKING([whether struct dirent has d_type member])
364 AC_CACHE_VAL(ac_cv_dirent_d_type,[
365 AC_TRY_COMPILE([#include <dirent.h>],
366 [struct dirent d; d.d_type = DT_REG;],
367 ac_cv_dirent_d_type=yes, ac_cv_dirent_d_type=no)
369 AC_MSG_RESULT($ac_cv_dirent_d_type)
370 if test $ac_cv_dirent_d_type = yes; then
371 AC_DEFINE(HAVE_DIRENT_D_TYPE, 1,
372 Define if `struct dirent' has `d_type' member.)
375 # Check whether mkdir does not take the permission argument.
376 GNUPG_FUNC_MKDIR_TAKES_ONE_ARG
378 dnl Checks for header files.
382 AC_CHECK_HEADERS(fcntl.h sys/file.h unistd.h paths.h \
383 sys/param.h sys/utsname.h sys/select.h \
384 wchar.h wctype.h locale.h netdb.h)
385 AC_CHECK_HEADER([execinfo.h], [AC_DEFINE(HAVE_BACKTRACE,1,[Has backtrace*() needed for retrieving stack traces])])
386 AC_SEARCH_LIBS(backtrace_symbols, [execinfo])
388 dnl alf - Check for apache installation f*ck up. apache may also install an
389 dnl fnmatch, which includes their own regex stuff if USE_HSREGEX is defined
390 AC_TRY_COMPILE([#include <stdlib.h>
391 #include <fnmatch.h>],
392 [int x = USE_HSREGEX;],
393 ac_cv_have_apache_fnmatch=yes, ac_cv_have_apache_fnmatch=no)
394 if test $ac_cv_have_apache_fnmatch = yes; then
395 AC_DEFINE(HAVE_APACHE_FNMATCH, 1, Define if you need to work around apache regex/fnmatch !KLUDGE!)
397 AC_MSG_CHECKING([whether to use Apache regex header kludge])
398 AC_MSG_RESULT($ac_cv_have_apache_fnmatch)
400 dnl Checks for typedefs, structures, and compiler characteristics.
407 dnl AC_CHECK_TYPE(wint_t, unsigned int) does not work because wint_t
408 dnl may be defined only in wchar.h (this happens with gcc-2.96).
409 dnl So we need to use this extended macro.
410 CLAWS_CHECK_TYPE(wint_t, unsigned int,
415 ], Define to `unsigned int' if <stddef.h> or <wchar.h> doesn't define.)
417 GNUPG_CHECK_TYPEDEF(u32, HAVE_U32_TYPEDEF, Used to test for a u32 typedef)
418 AC_CHECK_SIZEOF(unsigned short, 2)
419 AC_CHECK_SIZEOF(unsigned int, 4)
420 AC_CHECK_SIZEOF(unsigned long, 4)
422 dnl Checks for library functions.
424 AC_CHECK_FUNCS(gethostname mkdir mktime socket strstr strchr \
425 uname flock lockf inet_aton inet_addr \
426 fchmod mkstemp truncate getuid regcomp)
428 AC_CHECK_FUNCS(fgets_unlocked fwrite_unlocked)
430 dnl *****************
431 dnl ** common code **
432 dnl *****************
435 PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.6 gmodule-2.0 >= 2.6 gobject-2.0 >= 2.6 gthread-2.0 >= 2.6)
437 GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0`
438 AC_SUBST(GLIB_GENMARSHAL)
440 AC_SUBST(GLIB_CFLAGS)
443 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
445 LIBS="$LIBS $GTK_LIBS"
446 AC_CHECK_FUNCS(bind_textdomain_codeset)
449 dnl check for IPv6 option
450 dnl automated checks for IPv6 support.
451 AC_MSG_CHECKING([whether to use IPv6])
452 if test x"$enable_ipv6" = xyes; then
454 AC_MSG_CHECKING([for IPv6 support])
455 AC_CACHE_VAL(ac_cv_ipv6,[
456 AC_TRY_COMPILE([#define INET6
457 #include <sys/types.h>
458 #include <netinet/in.h>],
459 [int x = IPPROTO_IPV6; struct in6_addr a;],
460 ac_cv_ipv6=yes, ac_cv_ipv6=no)
462 AC_MSG_RESULT($ac_cv_ipv6)
463 if test $ac_cv_ipv6 = yes; then
464 AC_DEFINE(INET6, 1, Define if you want IPv6 support.)
466 AC_MSG_WARN(*** IPv6 will not be supported ***)
474 AC_MSG_CHECKING([whether to use GnuTLS])
475 AC_MSG_RESULT($enable_gnutls)
476 if test "x$enable_gnutls" != "xno"; then
477 PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.2,
479 AC_DEFINE(USE_GNUTLS, 1, gnutls)
480 echo "Building with GnuTLS"
483 echo "Building without gnutls"
485 PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.11,
487 dnl No linking against libgcrypt needed
490 dnl linking against libgcrypt *is* needed
491 GNUTLS_LIBS="$GNUTLS_LIBS -lgcrypt"
493 AC_SUBST(GNUTLS_LIBS)
494 AC_SUBST(GNUTLS_CFLAGS)
497 dnl password encryption
502 AC_SEARCH_LIBS(encrypt, cipher, [], AC_MSG_ERROR(['encrypt'-function not found.]))
505 AC_SEARCH_LIBS(encrypt, crypt, [], AC_MSG_ERROR(['encrypt'-function not found.]))
512 AC_ARG_WITH(passcrypt-key, [ --with-passcrypt-key=KEY Key used to encode passwords (8 byte string)],
513 with_passcrypt_key="$withval", with_passcrypt_key="passkey0")
514 AC_SUBST(PASSCRYPT_KEY, $with_passcrypt_key)
516 dnl RC dir (will be default at a certain point in time)
517 AC_ARG_WITH(config-dir, [ --with-config-dir=RCDIR Local configuration dir (default: .claws-mail)],
518 ac_cv_with_config_dir="$withval", ac_cv_with_config_dir=".claws-mail")
519 if test x"$ac_cv_with_config_dir" = x""; then
520 ac_cv_with_config_dir=".claws-mail"
522 AC_DEFINE_UNQUOTED(CFG_RC_DIR, "$ac_cv_with_config_dir", Configuration directory)
524 dnl ************************
525 dnl ** GTK user interface **
526 dnl ************************
529 AM_CONDITIONAL(GTK3, false)
530 AM_CONDITIONAL(GTK2, true)
531 if test x"$enable_gtk3" = x"yes"; then
532 PKG_CHECK_MODULES(GTK, gtk+-3.0 >= 3.0 cairo)
533 AM_CONDITIONAL(GTK3, true)
534 AM_CONDITIONAL(GTK2, false)
536 PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.16)
541 dnl enchant is used for spell checking
542 AC_MSG_CHECKING([whether to use enchant])
543 AC_MSG_RESULT($enable_enchant)
544 if test $enable_enchant = yes; then
545 PKG_CHECK_MODULES(ENCHANT, enchant >= 1.0.0,
547 AC_DEFINE(USE_ENCHANT, 1, enchant)
548 echo "Building with enchant"
550 CFLAGS="$CFLAGS `$PKG_CONFIG --cflags enchant`"
553 echo "Building without enchant-notification"
556 AC_SUBST(ENCHANT_CFLAGS)
557 AC_SUBST(ENCHANT_LIBS)
560 dnl want crash dialog
561 if test $enable_crash_dialog = yes; then
562 dnl check if GDB is somewhere
563 AC_CHECK_PROG(enable_crash_dialog, gdb, yes, no)
564 AC_MSG_CHECKING([whether to use crash dialog])
565 if test $enable_crash_dialog = yes; then
566 AC_DEFINE(CRASH_DIALOG, 1, Pop up crash dialog)
568 AC_MSG_RESULT($enable_crash_dialog)
572 if test $enable_generic_umpc = yes; then
573 AC_DEFINE(GENERIC_UMPC, 1, Generic UMPC code)
574 AC_MSG_RESULT($enable_generic_umpc)
578 if test $enable_maemo = yes; then
579 PKG_CHECK_MODULES(MAEMO, libosso hildon-libs hildon-fm gnome-vfs-2.0, enable_maemo=yes,
581 AC_SUBST(MAEMO_CFLAGS)
583 if test $enable_maemo = no; then
585 PKG_CHECK_MODULES(MAEMO, libosso hildon-1 hildon-fm-2 gnome-vfs-2.0 hal, enable_maemo=yes,
587 AC_SUBST(MAEMO_CFLAGS)
589 if test $enable_maemo = no; then
590 AC_MSG_ERROR(one of libosso hildon-libs hildon-fm hildon-1 hildon-fm-2 not found)
592 AC_DEFINE(MAEMO, 1, Build for maemo)
593 AC_DEFINE(CHINOOK, 1, Maemo chinook)
594 AC_DEFINE(GENERIC_UMPC, 1, Generic UMPC code)
595 enable_generic_umpc=yes
598 AC_DEFINE(MAEMO, 1, Build for maemo)
599 AC_DEFINE(GENERIC_UMPC, 1, Generic UMPC code)
600 enable_generic_umpc=yes
604 PKG_CHECK_MODULES(CONIC, conic, enable_conic=yes,
606 AC_SUBST(CONIC_CFLAGS)
608 if test $enable_conic = yes; then
609 AC_DEFINE(CONIC, 1, Have conic lib)
612 dnl Check for X-Face support
613 AC_MSG_CHECKING([whether to use compface])
614 if test x"$enable_compface" = xyes; then
616 AC_CHECK_LIB(compface, uncompface,
617 [AC_DEFINE(HAVE_LIBCOMPFACE, 1, Define if you want compface support.)],
618 [enable_compface=no])
619 if test x"$enable_compface" = xyes; then
620 COMPFACE_LIBS="-lcompface"
624 AC_SUBST(COMPFACE_LIBS)
629 dnl check for pthread support
630 AC_MSG_CHECKING([whether to use pthread])
631 if test x$enable_pthread = xno; then
636 # For W32 we need to use a special ptrhead lib. In this case we can't
637 # use AC_CHECK_LIB because it has no means of checking for a
638 # library installed under a different name. Checking for the
640 if test -n "${pthread_name}" ; then
643 AC_CHECK_LIB(pthread, pthread_create, :, enable_pthread=no)
645 AC_CHECK_HEADERS(pthread.h, :, enable_pthread=no)
647 if test x$enable_pthread = xyes; then
648 AC_DEFINE(USE_PTHREAD, 1, Define if you have pthread)
649 if test -z "${pthread_name}" ; then
650 PTHREAD_LIBS="-lpthread"
655 AC_SUBST(PTHREAD_LIBS)
658 dnl Check whether we need to pass -lresolv
659 dnl We know that we don't need it for W32.
661 if test x$os_win32 = xno; then
664 ac_cv_var__res_options=no
665 AC_TRY_LINK([#include <sys/types.h>
666 #include <sys/socket.h>
667 #include <netinet/in.h>
668 #include <arpa/nameser.h>
669 #include <resolv.h>],
670 [_res.options = RES_INIT;],
671 ac_cv_var__res_options=yes);
672 if test "$ac_cv_var__res_options" != "yes"; then
677 if test "x$LIBRESOLV" = "x"; then
678 AC_CHECK_LIB(resolv, res_query, [LIBRESOLV=-lresolv])
684 LIBS="$LIBS $LIBRESOLV"
686 dnl #######################################################################
687 dnl # Check for startup notification
688 dnl #######################################################################
689 if test "x$enable_startup_notification" = "xyes"; then
690 PKG_CHECK_MODULES(STARTUP_NOTIFICATION, libstartup-notification-1.0 >= 0.5,
692 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, [Define if we're using libstartup-notification.])
693 echo "Building with libstartup-notification"
694 enable_startup_notification=yes
697 echo "Building without libstartup-notification"
698 enable_startup_notification=no
701 AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
702 AC_SUBST(STARTUP_NOTIFICATION_LIBS)
705 dnl #######################################################################
706 dnl # Check for D-Bus support
707 dnl #######################################################################
708 if test "x$enable_dbus" = "xyes"; then
709 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.60, dbus-glib-1 >= 0.60],
711 AC_DEFINE(HAVE_DBUS_GLIB, 1, [Define if glib bindings of D-Bus are available])
715 echo "D-Bus requirements not met. D-Bus support not activated."
718 AC_SUBST(DBUS_CFLAGS)
722 dnl #######################################################################
723 dnl # Configure address book support
724 dnl #######################################################################
726 dnl #######################################################################
727 dnl # Check for new address book support
728 dnl #######################################################################
729 AC_MSG_CHECKING([whether DBUS support for new address book is present])
730 if test x"$enable_dbus_glib" = xyes; then
732 AC_MSG_CHECKING([whether to enable new address book])
733 if test x"$enable_new_addrbook" = xyes; then
735 PKG_CHECK_MODULES(CONTACTS, [claws-contacts],
737 AC_DEFINE(USE_NEW_ADDRBOOK, 1, [Define if new address book is to be activated.])
738 enable_new_addrbook=yes
739 AC_SUBST(CONTACTS_CFLAGS)
740 AC_SUBST(CONTACTS_LIBS)
743 enable_new_addrbook=no
747 enable_new_addrbook=no
751 enable_new_addrbook=no
754 dnl #######################################################################
755 dnl # Check for old address book support
756 dnl #######################################################################
757 if test x"$enable_new_addrbook" = xno; then
758 dnl for LDAP support in addressbook
759 dnl no check for libraries; dynamically loaded
760 AC_MSG_CHECKING([whether to use LDAP])
761 if test x"$enable_ldap" = xno; then
763 elif test x"$enable_ldap" = xyes -a x"$enable_pthread" = xno; then
764 AC_MSG_RESULT(no - LDAP support needs pthread support)
767 elif test x"$platform_win32" = xyes; then
769 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
770 LDAP_LIBS="-lwldap32"
775 dnl check for available libraries, and pull them in
776 AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="$LDAP_LIBS -lresolv")
777 AC_CHECK_LIB(socket, bind, LDAP_LIBS="$LDAP_LIBS -lsocket")
778 AC_CHECK_LIB(nsl, gethostbyaddr, LDAP_LIBS="$LDAP_LIBS -lnsl")
779 AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="$LDAP_LIBS -llber",,
782 AC_CHECK_HEADERS(ldap.h lber.h,
786 if test "$enable_ldap" = yes; then
787 AC_CHECK_LIB(ldap, ldap_open,
792 AC_CHECK_LIB(ldap, ldap_start_tls_s,
793 [ ac_cv_have_tls=yes ],
794 [ ac_cv_have_tls=no ])
798 AC_MSG_CHECKING([whether ldap library is available])
799 AC_MSG_RESULT($enable_ldap)
801 AC_MSG_CHECKING([whether TLS library is available])
802 AC_MSG_RESULT($ac_cv_have_tls)
804 if test "$enable_ldap" = yes; then
805 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
806 LDAP_LIBS="$LDAP_LIBS -lldap"
808 if test "$ac_cv_have_tls" = yes; then
809 AC_DEFINE(USE_LDAP_TLS, 1, Define if you want LDAP TLS support in addressbook.)
811 dnl As of OpenLDAP API version 3000 a number of functions has
812 dnl been deprecated. As Claws-mail compiles and runs on many
813 dnl platforms and many versions of OpenLDAP we need to be able
814 dnl to switch between the old and new API because new API has
815 dnl added new functions replacing old ones and at the same time
816 dnl old functions has been changed.
817 dnl If cross-compiling defaults to enable deprecated features
818 dnl for maximum portability
819 AC_MSG_CHECKING([The API version of OpenLDAP])
823 [if (LDAP_API_VERSION >= 3000)
826 [AC_MSG_RESULT([version < 3000])
827 AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)],
828 [AC_MSG_RESULT([version >= 3000])
829 AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 1, Define if OpenLDAP API is at least version 3000.)],
830 [AC_MSG_RESULT([Enabling deprecated features in OpenLDAP])
831 AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)
832 AC_DEFINE(LDAP_DEPRECATED, 1, Define to activate deprecated features in OpenLDAP)]
837 dnl for JPilot support in addressbook
838 dnl no check for libraries; these are dynamically loaded
839 AC_MSG_CHECKING([whether to use JPilot])
840 if test "$enable_jpilot" = yes; then
842 AC_CHECK_HEADERS(pi-args.h pi-appinfo.h pi-address.h pi-version.h,
843 [ AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ],
844 [ enable_jpilot=no ])
845 if test "$enable_jpilot" = no; then
846 AC_CHECK_HEADERS(libpisock/pi-args.h libpisock/pi-appinfo.h libpisock/pi-address.h libpisock/pi-version.h,
848 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ])
851 AC_CHECK_LIB(pisock, unpack_Address, [JPILOT_LIBS="-lpisock"], [JPILOT_LIBS="" enable_jpilot="no"])
852 if test x"$enable_jpilot" = xyes; then
853 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.)
855 AC_MSG_NOTICE([JPilot support not available])
857 AC_SUBST(JPILOT_LIBS)
863 AM_CONDITIONAL(BUILD_NEWADDRBOOK, test x"$enable_new_addrbook" = x"yes")
865 dnl #######################################################################
866 dnl # Check for NetworkManager support
867 dnl #######################################################################
868 if test x"$enable_dbus_glib" = xyes; then
869 if test x"$enable_networkmanager" = xyes; then
870 PKG_CHECK_MODULES(NETWORKMANAGER_SUPPORT, NetworkManager >= 0.6.2,
872 AC_DEFINE(HAVE_NETWORKMANAGER_SUPPORT, 1, [Define if NetworkManager support is to be included.])
873 echo "Building with NetworkManager support"
874 enable_networkmanager=yes
877 echo "NetworkManager not found."
878 enable_networkmanager=no
880 AC_SUBST(NETWORKMANAGER_SUPPORT_CFLAGS)
883 echo "NetworkManager support deactivated as D-Bus requirements were not met."
884 enable_networkmanager=no
888 AC_MSG_CHECKING([whether to use libetpan])
889 if test x"$enable_libetpan" = xyes; then
892 AC_PATH_PROG(libetpanconfig, [libetpan-config])
893 if test "x$libetpanconfig" != "x"; then
894 CPPFLAGS="$CPPFLAGS `$libetpanconfig --cflags 2>/dev/null`"
895 AC_CHECK_HEADER(libetpan/libetpan.h, [libetpan_result=yes])
896 if test "x$libetpan_result" = "xyes"; then
897 AC_MSG_CHECKING([whether libetpan-config hints compiles and links fine])
898 LIBS="$LIBS `$libetpanconfig --libs 2>/dev/null`"
899 AC_TRY_LINK([#include <libetpan/dbstorage.h>], [db_mailstorage_init(NULL, NULL);], [libetpan_result=yes], [libetpan_result=no])
900 AC_MSG_RESULT([$libetpan_result])
903 if test "x$libetpan_result" = "xyes"; then
904 LIBETPAN_CPPFLAGS="`$libetpanconfig --cflags`"
905 LIBETPAN_LIBS="`$libetpanconfig --libs`"
906 LIBETPAN_STABLE=`$libetpanconfig --version | grep -v ^0`
907 LIBETPAN_VERSION=`$libetpanconfig --version | sed "s/\.//g" | sed "s/-.*$//"`
908 if test x"$LIBETPAN_STABLE" != "x"; then
909 LIBETPAN_VERSION="100"
911 if test "$LIBETPAN_VERSION" -lt "057"; then
912 AC_MSG_RESULT([*** Claws Mail requires libetpan 0.57 or newer. See http://www.etpan.org/])
913 AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 and/or NNTP support.])
914 AC_MSG_ERROR([libetpan 0.57 not found])
916 AC_SUBST(LIBETPAN_FLAGS)
917 AC_SUBST(LIBETPAN_LIBS)
918 AC_DEFINE(HAVE_LIBETPAN, 1, Define if you want IMAP and/or NNTP support.)
920 AC_MSG_RESULT([*** Claws Mail requires libetpan 0.57 or newer. See http://www.etpan.org/ ])
921 AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 and/or NNTP support.])
922 AC_MSG_ERROR([libetpan 0.57 not found])
927 AM_CONDITIONAL(CLAWS_LIBETPAN, test "x$libetpan_result" = "xyes")
929 AC_MSG_CHECKING([whether to use valgrind])
930 if test x$enable_valgrind = xyes; then
932 PKG_CHECK_MODULES(VALGRIND, valgrind >= 2.4.0,
933 enable_valgrind=yes, enable_valgrind=no)
934 if test x"$enable_valgrind" = xyes; then
935 AC_DEFINE(HAVE_VALGRIND, 1, Define if you want valgrind support)
937 AC_MSG_RESULT(not found)
942 AM_CONDITIONAL(CLAWS_VALGRIND, test x"$enable_valgrind" = x"yes")
944 dnl *************************
945 dnl ** section for plugins **
946 dnl *************************
950 MISSING_DEPS_PLUGINS=""
952 dnl First we set the enabled status - either enabled (yes), auto-enabled (auto)
953 dnl or (auto-)disabled (no for both)
955 dnl All plugins are auto-enabled except for Demo which is just there to help
956 dnl potential plugins writers.
958 AC_ARG_ENABLE(acpi_notifier-plugin,
959 [ --disable-acpi_notifier-plugin Do not build acpi_notifier plugin],
960 [enable_acpi_notifier_plugin=$enableval], [enable_acpi_notifier_plugin=auto])
962 AC_ARG_ENABLE(address_keeper-plugin,
963 [ --disable-address_keeper-plugin Do not build address_keeper plugin],
964 [enable_address_keeper_plugin=$enableval], [enable_address_keeper_plugin=auto])
966 AC_ARG_ENABLE(archive-plugin,
967 [ --disable-archive-plugin Do not build archive plugin],
968 [enable_archive_plugin=$enableval], [enable_archive_plugin=auto])
970 AC_ARG_ENABLE(att_remover-plugin,
971 [ --disable-att_remover-plugin Do not build att_remover plugin],
972 [enable_att_remover_plugin=$enableval], [enable_att_remover_plugin=auto])
974 AC_ARG_ENABLE(attachwarner-plugin,
975 [ --disable-attachwarner-plugin Do not build attachwarner plugin],
976 [enable_attachwarner_plugin=$enableval], [enable_attachwarner_plugin=auto])
978 AC_ARG_ENABLE(bogofilter-plugin,
979 [ --disable-bogofilter-plugin Do not build bogofilter plugin],
980 [enable_bogofilter_plugin=$enableval], [enable_bogofilter_plugin=auto])
982 AC_ARG_ENABLE(bsfilter-plugin,
983 [ --disable-bsfilter-plugin Do not build bsfilter plugin],
984 [enable_bsfilter_plugin=$enableval], [enable_bsfilter_plugin=auto])
986 AC_ARG_ENABLE(clamd-plugin,
987 [ --disable-clamd-plugin Do not build clamd plugin],
988 [enable_clamd_plugin=$enableval], [enable_clamd_plugin=auto])
990 AC_ARG_ENABLE(fancy-plugin,
991 [ --disable-fancy-plugin Do not build fancy plugin],
992 [enable_fancy_plugin=$enableval], [enable_fancy_plugin=auto])
994 AC_ARG_ENABLE(fetchinfo-plugin,
995 [ --disable-fetchinfo-plugin Do not build fetchinfo plugin],
996 [enable_fetchinfo_plugin=$enableval], [enable_fetchinfo_plugin=auto])
998 AC_ARG_ENABLE(gdata-plugin,
999 [ --disable-gdata-plugin Do not build gdata plugin],
1000 [enable_gdata_plugin=$enableval], [enable_gdata_plugin=auto])
1002 AC_ARG_ENABLE(geolocation-plugin,
1003 [ --disable-geolocation-plugin Do not build geolocation plugin],
1004 [enable_geolocation_plugin=$enableval], [enable_geolocation_plugin=auto])
1006 AC_ARG_ENABLE(mailmbox-plugin,
1007 [ --disable-mailmbox-plugin Do not build mailmbox plugin],
1008 [enable_mailmbox_plugin=$enableval], [enable_mailmbox_plugin=auto])
1010 AC_ARG_ENABLE(newmail-plugin,
1011 [ --disable-newmail-plugin Do not build newmail plugin],
1012 [enable_newmail_plugin=$enableval], [enable_newmail_plugin=auto])
1014 AC_ARG_ENABLE(notification-plugin,
1015 [ --disable-notification-plugin Do not build notification plugin],
1016 [enable_notification_plugin=$enableval], [enable_notification_plugin=auto])
1018 AC_ARG_ENABLE(pdf_viewer-plugin,
1019 [ --disable-pdf_viewer-plugin Do not build pdf_viewer plugin],
1020 [enable_pdf_viewer_plugin=$enableval], [enable_pdf_viewer_plugin=auto])
1022 AC_ARG_ENABLE(perl-plugin,
1023 [ --disable-perl-plugin Do not build perl plugin],
1024 [enable_perl_plugin=$enableval], [enable_perl_plugin=auto])
1026 AC_ARG_ENABLE(python-plugin,
1027 [ --disable-python-plugin Do not build python plugin],
1028 [enable_python_plugin=$enableval], [enable_python_plugin=auto])
1030 AC_ARG_ENABLE(pgpcore-plugin,
1031 [ --disable-pgpcore-plugin Do not build pgpcore plugin],
1032 [enable_pgpcore_plugin=$enableval], [enable_pgpcore_plugin=auto])
1034 AC_ARG_ENABLE(pgpmime-plugin,
1035 [ --disable-pgpmime-plugin Do not build pgpmime plugin],
1036 [enable_pgpmime_plugin=$enableval], [enable_pgpmime_plugin=auto])
1038 AC_ARG_ENABLE(pgpinline-plugin,
1039 [ --disable-pgpinline-plugin Do not build pgpinline plugin],
1040 [enable_pgpinline_plugin=$enableval], [enable_pgpinline_plugin=auto])
1042 AC_ARG_ENABLE(rssyl-plugin,
1043 [ --disable-rssyl-plugin Do not build rssyl plugin],
1044 [enable_rssyl_plugin=$enableval], [enable_rssyl_plugin=auto])
1046 AC_ARG_ENABLE(smime-plugin,
1047 [ --disable-smime-plugin Do not build smime plugin],
1048 [enable_smime_plugin=$enableval], [enable_smime_plugin=auto])
1050 AC_ARG_ENABLE(spamassassin-plugin,
1051 [ --disable-spamassassin-plugin Do not build spamassassin plugin],
1052 [enable_spamassassin_plugin=$enableval], [enable_spamassassin_plugin=auto])
1054 AC_ARG_ENABLE(spam_report-plugin,
1055 [ --disable-spam_report-plugin Do not build spam_report plugin],
1056 [enable_spam_report_plugin=$enableval], [enable_spam_report_plugin=auto])
1058 AC_ARG_ENABLE(tnef_parse-plugin,
1059 [ --disable-tnef_parse-plugin Do not build tnef_parse plugin],
1060 [enable_tnef_parse_plugin=$enableval], [enable_tnef_parse_plugin=auto])
1062 AC_ARG_ENABLE(vcalendar-plugin,
1063 [ --disable-vcalendar-plugin Do not build vcalendar plugin],
1064 [enable_vcalendar_plugin=$enableval], [enable_vcalendar_plugin=auto])
1066 dnl disabled by default
1067 AC_ARG_ENABLE(demo-plugin,
1068 [ --enable-demo-plugin Build demo plugin],
1069 [enable_demo_plugin=$enableval], [enable_demo_plugin=no])
1072 dnl Then we check (unconditionnaly) for plugins dependencies
1073 dnl Some dependencies are optional, some mandatories. This is taken care of
1076 dnl During this dependancy check we do the checks themselves, define HAVE_X to
1077 dnl either yes or no, and do the AC_SUBST calls.
1079 dnl Archive: libarchive
1080 dnl Fancy: Webkit, curl, optionally libsoup-gnome
1082 dnl Geolocation libchamplain, libsoup
1083 dnl Notification: optionally libnotify libindicate libcanberra_gtk hotkey
1084 dnl Pdf-Viewer: libpoppler
1086 dnl PGP/Core: libgpgme
1087 dnl PGP/Mime: pgpcore libgpgme
1088 dnl PGP/Inline: pgpcore libgpgme
1089 dnl S/Mime: pgpcore libgpgme
1091 dnl RSSyl: libxml2 libcurl
1092 dnl SpamReport: libcurl
1093 dnl vCalendar: libcurl
1095 dnl libcurl ********************************************************************
1096 PKG_CHECK_MODULES(CURL, libcurl, HAVE_CURL=yes, HAVE_CURL=no)
1098 AC_SUBST(CURL_CFLAGS)
1100 dnl libxml2 ********************************************************************
1101 PKG_CHECK_MODULES(LIBXML, libxml-2.0, HAVE_LIBXML=yes, HAVE_LIBXML=no)
1102 AC_SUBST(LIBXML_LIBS)
1103 AC_SUBST(LIBXML_CFLAGS)
1105 dnl webkit *********************************************************************
1106 PKG_CHECK_MODULES(WEBKIT, webkit-1.0 >= 1.1.14, HAVE_WEBKIT=yes, HAVE_WEBKIT=no)
1107 AC_SUBST(WEBKIT_LIBS)
1108 AC_SUBST(WEBKIT_CFLAGS)
1110 dnl libsoup ********************************************************************
1111 PKG_CHECK_MODULES(LIBSOUP, libsoup-2.4, HAVE_LIBSOUP=yes, HAVE_LIBSOUP=no)
1112 if test x"$HAVE_LIBSOUP" = xyes; then
1113 AC_DEFINE(HAVE_LIBSOUP, 1, [Define if libsoup is available])
1115 AC_SUBST(LIBSOUP_CFLAGS)
1116 AC_SUBST(LIBSOUP_LIBS)
1118 dnl libsoup-gnome **************************************************************
1119 PKG_CHECK_MODULES(LIBSOUP_GNOME, libsoup-gnome-2.4 >= 2.26, HAVE_LIBSOUP_GNOME=yes, HAVE_LIBSOUP_GNOME=no)
1120 if test x"$HAVE_LIBSOUP_GNOME" = xyes; then
1121 AC_DEFINE(HAVE_LIBSOUP_GNOME, 1, [Define if libsoup_gnome is available])
1123 AC_SUBST(LIBSOUP_GNOME_CFLAGS)
1124 AC_SUBST(LIBSOUP_GNOME_LIBS)
1126 dnl libarchive *****************************************************************
1127 AC_SEARCH_LIBS([archive_read_new], [archive],
1128 ARCHIVE_LIBS=-larchive
1130 AC_SUBST(ARCHIVE_LIBS),
1134 dnl libgdata *******************************************************************
1135 dnl Plugin handles compatibility back to 0.6.4 so there are multiple checks.
1136 PKG_CHECK_MODULES(GDATA, libgdata >= 0.9.1, HAVE_GDATA=yes, HAVE_GDATA=no)
1137 if test x"$HAVE_GDATA" = xyes; then
1138 AC_DEFINE(HAVE_GDATA_VERSION_0_9_1, 1, [at least version 0.9.1 of libgdata is available])
1139 AC_DEFINE(HAVE_GDATA_VERSION_0_9, 1, [at least version 0.9 of libgdata is available])
1141 PKG_CHECK_MODULES(GDATA, libgdata >= 0.9, HAVE_GDATA=yes, HAVE_GDATA=no)
1143 if test x"$HAVE_GDATA" = xyes; then
1144 AC_DEFINE(HAVE_GDATA_VERSION_0_9, 1, [at least version 0.9 of libgdata is available])
1146 PKG_CHECK_MODULES(GDATA, libgdata >= 0.6.4, HAVE_GDATA=yes, HAVE_GDATA=no)
1148 if test x"$HAVE_GDATA" = xyes; then
1149 AC_DEFINE(CM_GDATA_CLIENT_ID, ["Claws Mail GData plugin"], [client id])
1151 AC_SUBST(GDATA_CFLAGS)
1152 AC_SUBST(GDATA_LIBS)
1154 dnl Poppler ********************************************************************
1155 PKG_CHECK_MODULES(POPPLER, poppler-glib >= 0.4.2, HAVE_POPPLER=yes, HAVE_POPPLER=no)
1156 AC_SUBST(POPPLER_LIBS)
1157 AC_SUBST(POPPLER_CFLAGS)
1159 dnl check for Poppler extra features that we conditionally support
1160 if test x"$HAVE_POPPLER" = xyes; then
1162 CFLAGS="$POPPLER_CFLAGS $GTK_CFLAGS $GLIB_CFLAGS"
1163 AC_CHECK_DECL(POPPLER_DEST_NAMED,
1164 [AC_DEFINE([HAVE_POPPLER_DEST_NAMED], [], [Description])],
1165 ,[#include <poppler-action.h>])
1166 AC_CHECK_DECL(POPPLER_DEST_XYZ,
1167 [AC_DEFINE([HAVE_POPPLER_DEST_XYZ], [], [Description])],
1168 ,[#include <poppler-action.h>])
1172 dnl perl ***********************************************************************
1173 AC_CHECK_PROG(HAVE_PERL, perl, yes, no)
1174 if test x"$HAVE_PERL" = xyes; then
1175 AC_MSG_CHECKING(for perl >= 5.8.0)
1176 PERL_VER=`perl -e 'print $] > 5.0079999?"yes":"no"'`
1177 if test "$PERL_VER" = "yes"; then
1184 if test x"$HAVE_PERL" = xyes; then
1185 AC_MSG_CHECKING(for Perl compile flags)
1186 PERL_CFLAGS=`perl -MExtUtils::Embed -e ccopts`
1187 PERL_CFLAGS=`echo $PERL_CFLAGS | sed 's/-D_FILE_OFFSET_BITS=[[0-9]]*//'`
1188 PERL_LDFLAGS=`perl -MExtUtils::Embed -e ldopts |sed 's/-lgdbm//'`
1189 PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-ldb//'`
1190 PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-lndbm//'`
1191 PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-lc//'`
1193 AC_MSG_NOTICE([Adding perl LIBS ${PERL_CFLAGS}])
1195 if test x"$HAVE_PERL" = xyes; then
1196 AC_CHECK_LIB(perl,perl_alloc,[AC_DEFINE(HAVE_LIBPERL, 1, Check for libperl.)],
1197 [ HAVE_LIBPERL=no ])
1199 if test x"$HAVE_LIBPERL" = xno; then
1200 LIBPERL_PREFIX=`perl -MExtUtils::Embed -e perl_inc`
1201 LIBPERL_PREFIX=`echo $LIBPERL_PREFIX |sed 's/-I//'`
1202 AC_MSG_CHECKING([for libperl.so])
1203 if test -f "$LIBPERL_PREFIX/libperl.so"; then
1212 AC_SUBST(PERL_CFLAGS)
1213 AC_SUBST(PERL_LDFLAGS)
1216 dnl Gpgme **********************************************************************
1217 AM_PATH_GPGME(1.0.0, HAVE_GPGME=yes, HAVE_GPGME=no)
1218 if test x"$HAVE_GPGME" = xyes; then
1219 AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.)
1220 AM_PATH_GPGME(1.1.1, AC_DEFINE(HAVE_GPGME_PKA_TRUST, 1, [Define if GPGME supports PKA.]))
1223 dnl Python *********************************************************************
1224 AM_PATH_PYTHON([2.5], [
1225 AC_PATH_PROG(PYTHON_CONFIG, python$PYTHON_VERSION-config)
1226 if test x"$PYTHON_CONFIG" = x"" ; then
1227 AC_PATH_PROG(PYTHON_CONFIG, python-config)
1229 if test x"$PYTHON_CONFIG" != x""; then
1230 PYTHON_CFLAGS=`$PYTHON_CONFIG --includes`
1231 PYTHON_LIBS=`$PYTHON_CONFIG --libs`
1232 PYTHON_PREFIX=`$PYTHON_CONFIG --prefix`
1235 AC_MSG_WARN(python-config not found. Maybe you need to install development packages for Python.)
1239 if test x"$HAVE_PYTHON" = xyes; then
1241 PYTHON_SHARED_LIB="libpython${PYTHON_VERSION}.so"
1244 AC_MSG_CHECKING([whether to dlopen $PYTHON_SHARED_LIB works])
1248 #define PYTHON_SO_FILE "${PYTHON_SHARED_LIB}"
1250 [if (!dlopen(PYTHON_SO_FILE, RTLD_NOW | RTLD_GLOBAL)) return 1; return 0;])
1252 [found_libpython_so="yes"],
1253 [found_libpython_so="no"],
1254 [AC_MSG_FAILURE([cross-compiling not supported])])
1255 if test x"$found_libpython_so" != x"yes"; then
1257 AC_MSG_WARN(Could not find Python shared libary: ${PYTHON_SHARED_LIB}. Maybe you need to install development packages for Python.)
1264 if test x"$HAVE_PYTHON" = xyes; then
1265 PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= 2.10.3, [AC_DEFINE(ENABLE_PYTHON, [1], [Enable Python support])], HAVE_PYTHON=no)
1268 AC_SUBST(PYTHON_SHARED_LIB)
1269 AC_SUBST(PYTHON_CFLAGS)
1270 AC_SUBST(PYTHON_LIBS)
1271 AC_SUBST(PYGTK_CFLAGS)
1272 AC_SUBST(PYGTK_LIBS)
1274 dnl libnotify ******************************************************************
1275 PKG_CHECK_MODULES(libnotify, libnotify >= 0.4.3, HAVE_LIBNOTIFY=yes, HAVE_LIBNOTIFY=no)
1276 if test x"$HAVE_LIBNOTIFY" = xyes; then
1277 AC_DEFINE(HAVE_LIBNOTIFY, 1, [Define if libnotify support is enabled])
1279 AC_SUBST(libnotify_CFLAGS)
1280 AC_SUBST(libnotify_LIBS)
1282 dnl libcanberra-gtk ************************************************************
1283 PKG_CHECK_MODULES(libcanberra_gtk, libcanberra-gtk >= 0.6, HAVE_LIBCANBERRA_GTK=yes, HAVE_LIBCANBERRA_GTK=no)
1284 if test x"$HAVE_LIBCANBERRA_GTK" = xyes; then
1285 AC_DEFINE(HAVE_LIBCANBERRA_GTK, 1, [Define if libcanberra-gtk support is enabled])
1287 AC_SUBST(libcanberra_gtk_CFLAGS)
1288 AC_SUBST(libcanberra_gtk_LIBS)
1290 dnl libindicate ****************************************************************
1291 dnl We support either 0.3+ or 0.5+
1292 LIBINDICATE_MODULE=indicate
1293 LIBINDICATE_REQUIRED=0.3.0
1295 PKG_CHECK_EXISTS(indicate-0.5 >= 0.5.0, LIBINDICATE_MODULE=indicate-0.5)
1296 PKG_CHECK_MODULES(libindicate, $LIBINDICATE_MODULE >= $LIBINDICATE_REQUIRED, HAVE_LIBINDICATE=yes, HAVE_LIBINDICATE=no)
1297 if test x"$HAVE_LIBINDICATE" = xyes; then
1298 AC_DEFINE(NOTIFICATION_INDICATOR, 1, [Activate support for indicators])
1300 AC_SUBST(libindicate_CFLAGS)
1301 AC_SUBST(libindicate_LIBS)
1303 dnl hotkeys ********************************************************************
1304 PKG_CHECK_MODULES(CM_NP_HOTKEY, [gio-2.0 >= 2.15.6 gio-unix-2.0 >= 2.15.6], HAVE_HOTKEYS=yes, HAVE_HOTKEYS=no)
1305 if test x"$HAVE_HOTKEYS" = xyes; then
1306 AC_DEFINE(NOTIFICATION_HOTKEYS, 1, Activate support for global hotkeys)
1308 AC_SUBST(CM_NP_HOTKEY_CFLAGS)
1309 AC_SUBST(CM_NP_HOTKEY_LIBS)
1311 dnl libchamplain ***************************************************************
1312 CHAMPLAIN_MODULE=champlain-gtk-0.4
1313 CHAMPLAIN_VERSION=0.4.0
1314 PKG_CHECK_EXISTS(champlain-gtk-0.6 > 0.6.0,[CHAMPLAIN_MODULE=champlain-gtk-0.6
1315 CHAMPLAIN_VERSION=0.6.0], [])
1316 PKG_CHECK_EXISTS(champlain-gtk-0.8 > 0.8.0,[CHAMPLAIN_MODULE=champlain-gtk-0.8
1317 CHAMPLAIN_VERSION=0.8.0], [])
1318 PKG_CHECK_MODULES(CHAMPLAIN, [$CHAMPLAIN_MODULE >= $CHAMPLAIN_VERSION clutter-gtk-0.10], HAVE_CHAMPLAIN=yes, HAVE_CHAMPLAIN=no)
1319 AC_SUBST(CHAMPLAIN_CFLAGS)
1320 AC_SUBST(CHAMPLAIN_LIBS)
1322 dnl Third, we now cross the requested plugins and the available dependencies
1323 dnl If some dependencies are missing and the plugin was explicitely enabled,
1324 dnl we error out, else we only inform.
1326 AC_MSG_CHECKING([whether to build acpi_notifier plugin])
1327 if test x"$enable_acpi_notifier_plugin" != xno; then
1328 PLUGINS="$PLUGINS acpi_notifier"
1331 DISABLED_PLUGINS="$DISABLED_PLUGINS acpi_notifier"
1335 AC_MSG_CHECKING([whether to build address_keeper plugin])
1336 if test x"$enable_address_keeper_plugin" != xno; then
1337 PLUGINS="$PLUGINS address_keeper"
1340 DISABLED_PLUGINS="$DISABLED_PLUGINS address_keeper"
1344 AC_MSG_CHECKING([whether to build archive plugin])
1345 if test x"$enable_archive_plugin" != xno; then
1346 dependencies_missing=""
1348 if test x"$HAVE_ARCHIVE" = xno; then
1349 dependencies_missing="libarchive $dependencies_missing"
1352 if test x"$dependencies_missing" = x; then
1353 PLUGINS="$PLUGINS archive"
1355 elif test x"$enable_archive_plugin" = xauto; then
1357 AC_MSG_WARN("Plugin archive will not be built; missing $dependencies_missing")
1358 enable_archive_plugin=no
1359 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS archive"
1362 AC_MSG_ERROR("Plugin archive cannot be built; missing $dependencies_missing")
1365 DISABLED_PLUGINS="$DISABLED_PLUGINS archive"
1369 AC_MSG_CHECKING([whether to build att_remover plugin])
1370 if test x"$enable_att_remover_plugin" != xno; then
1371 PLUGINS="$PLUGINS att_remover"
1374 DISABLED_PLUGINS="$DISABLED_PLUGINS att_remover"
1378 AC_MSG_CHECKING([whether to build attachwarner plugin])
1379 if test x"$enable_attachwarner_plugin" != xno; then
1380 PLUGINS="$PLUGINS attachwarner"
1383 DISABLED_PLUGINS="$DISABLED_PLUGINS attachwarner"
1387 AC_MSG_CHECKING([whether to build bogofilter plugin])
1388 if test x"$enable_bogofilter_plugin" != xno; then
1389 PLUGINS="$PLUGINS bogofilter"
1392 DISABLED_PLUGINS="$DISABLED_PLUGINS bogofilter"
1396 AC_MSG_CHECKING([whether to build bsfilter plugin])
1397 if test x"$enable_bsfilter_plugin" != xno; then
1398 PLUGINS="$PLUGINS bsfilter"
1401 DISABLED_PLUGINS="$DISABLED_PLUGINS bsfilter"
1405 AC_MSG_CHECKING([whether to build clamd plugin])
1406 if test x"$enable_clamd_plugin" != xno; then
1407 PLUGINS="$PLUGINS clamd"
1410 DISABLED_PLUGINS="$DISABLED_PLUGINS clamd"
1414 AC_MSG_CHECKING([whether to build demo plugin])
1415 if test x"$enable_demo_plugin" != xno; then
1416 PLUGINS="$PLUGINS demo"
1419 DISABLED_PLUGINS="$DISABLED_PLUGINS demo"
1423 AC_MSG_CHECKING([whether to build fancy plugin])
1424 if test x"$enable_fancy_plugin" != xno; then
1425 dependencies_missing=""
1427 if test x"$HAVE_WEBKIT" = xno; then
1428 dependencies_missing="libwebkit-1.0 $dependencies_missing"
1430 if test x"$HAVE_CURL" = xno; then
1431 dependencies_missing="libcurl $dependencies_missing"
1434 if test x"$dependencies_missing" = x; then
1435 PLUGINS="$PLUGINS fancy"
1437 elif test x"$enable_fancy_plugin" = xauto; then
1439 AC_MSG_WARN("Plugin fancy will not be built; missing $dependencies_missing")
1440 enable_fancy_plugin=no
1441 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS fancy"
1444 AC_MSG_ERROR("Plugin fancy cannot be built; missing $dependencies_missing")
1447 DISABLED_PLUGINS="$DISABLED_PLUGINS fancy"
1451 AC_MSG_CHECKING([whether to build fetchinfo plugin])
1452 if test x"$enable_fetchinfo_plugin" != xno; then
1453 PLUGINS="$PLUGINS fetchinfo"
1456 DISABLED_PLUGINS="$DISABLED_PLUGINS fetchinfo"
1460 AC_MSG_CHECKING([whether to build gdata plugin])
1461 if test x"$enable_gdata_plugin" != xno; then
1462 dependencies_missing=""
1464 if test x"$HAVE_GDATA" = xno; then
1465 dependencies_missing="libgdata $dependencies_missing"
1468 if test x"$dependencies_missing" = x; then
1469 PLUGINS="$PLUGINS gdata"
1471 elif test x"$enable_gdata_plugin" = xauto; then
1473 AC_MSG_WARN("Plugin gdata will not be built; missing $dependencies_missing")
1474 enable_gdata_plugin=no
1475 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS gdata"
1478 AC_MSG_ERROR("Plugin gdata cannot be built; missing $dependencies_missing")
1481 DISABLED_PLUGINS="$DISABLED_PLUGINS gdata"
1485 AC_MSG_CHECKING([whether to build geolocation plugin])
1486 if test x"$enable_geolocation_plugin" != xno; then
1487 dependencies_missing=""
1489 if test x"$HAVE_CHAMPLAIN" = xno; then
1490 dependencies_missing="libchamplain $dependencies_missing"
1493 if test x"$dependencies_missing" = x; then
1494 PLUGINS="$PLUGINS geolocation"
1496 elif test x"$enable_geolocation_plugin" = xauto; then
1498 AC_MSG_WARN("Plugin geolocation will not be built; missing $dependencies_missing")
1499 enable_geolocation_plugin=no
1500 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS geolocation"
1503 AC_MSG_ERROR("Plugin geolocation cannot be built; missing $dependencies_missing")
1506 DISABLED_PLUGINS="$DISABLED_PLUGINS geolocation"
1510 AC_MSG_CHECKING([whether to build mailmbox plugin])
1511 if test x"$enable_mailmbox_plugin" != xno; then
1512 PLUGINS="$PLUGINS mailmbox"
1515 DISABLED_PLUGINS="$DISABLED_PLUGINS mailmbox"
1519 AC_MSG_CHECKING([whether to build newmail plugin])
1520 if test x"$enable_newmail_plugin" != xno; then
1521 PLUGINS="$PLUGINS newmail"
1524 DISABLED_PLUGINS="$DISABLED_PLUGINS newmail"
1528 AC_MSG_CHECKING([whether to build notification plugin])
1529 if test x"$enable_notification_plugin" != xno; then
1530 PLUGINS="$PLUGINS notification"
1533 AC_DEFINE(NOTIFICATION_POPUP, 1, Activate notification popup)
1534 AC_DEFINE(NOTIFICATION_BANNER, 1, Activate notification banner)
1535 AC_DEFINE(NOTIFICATION_COMMAND, 1, Activate notification shell command)
1536 AC_DEFINE(NOTIFICATION_TRAYICON, 1, Activate notification trayicon)
1537 if test x"$platform_win32" = xno; then
1538 AC_DEFINE(NOTIFICATION_LCDPROC, 1, Activate lcdproc support)
1541 notification_features="banner command"
1542 notification_missing_dependencies=""
1543 if test x"$HAVE_HOTKEYS" = xyes; then
1544 notification_features="$notification_features hotkeys"
1546 notification_missing_dependencies="$notification_missing_dependencies hotkeys"
1548 notification_features="$notification_features lcdproc"
1549 if test x"$HAVE_LIBINDICATE" = xyes; then
1550 notification_features="$notification_features libindicate"
1552 notification_missing_dependencies="$notification_missing_dependencies libindicate"
1554 if test x"$HAVE_LIBNOTIFY" = xyes; then
1555 notification_features="$notification_features libnotify"
1557 notification_missing_dependencies="$notification_missing_dependencies libnotify"
1559 if test x"$HAVE_LIBCANBERRA_GTK" = xyes; then
1560 notification_features="$notification_features libcanberra-gtk"
1562 notification_missing_dependencies="$notification_missing_dependencies libcanberra-gtk"
1564 notification_features="$notification_features popup trayicon"
1566 DISABLED_PLUGINS="$DISABLED_PLUGINS notification"
1570 AC_MSG_CHECKING([whether to build pdf_viewer plugin])
1571 if test x"$enable_pdf_viewer_plugin" != xno; then
1572 dependencies_missing=""
1574 if test x"$HAVE_POPPLER" = xno; then
1575 dependencies_missing="libpoppler-glib $dependencies_missing"
1578 if test x"$dependencies_missing" = x; then
1579 PLUGINS="$PLUGINS pdf_viewer"
1581 elif test x"$enable_pdf_viewer_plugin" = xauto; then
1583 AC_MSG_WARN("Plugin pdf_viewer will not be built; missing $dependencies_missing")
1584 enable_pdf_viewer_plugin=no
1585 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pdf_viewer"
1588 AC_MSG_ERROR("Plugin pdf_viewer cannot be built; missing $dependencies_missing")
1591 DISABLED_PLUGINS="$DISABLED_PLUGINS pdf_viewer"
1595 AC_MSG_CHECKING([whether to build perl plugin])
1596 if test x"$enable_perl_plugin" != xno; then
1597 dependencies_missing=""
1599 if test x"$HAVE_LIBPERL" = xno; then
1600 dependencies_missing="libperl $dependencies_missing"
1603 if test x"$dependencies_missing" = x; then
1604 PLUGINS="$PLUGINS perl"
1606 elif test x"$enable_perl_plugin" = xauto; then
1608 AC_MSG_WARN("Plugin perl will not be built; missing $dependencies_missing")
1609 enable_perl_plugin=no
1610 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS perl"
1613 AC_MSG_ERROR("Plugin perl cannot be built; missing $dependencies_missing")
1616 DISABLED_PLUGINS="$DISABLED_PLUGINS perl"
1620 AC_MSG_CHECKING([whether to build python plugin])
1621 if test x"$enable_python_plugin" != xno; then
1622 dependencies_missing=""
1624 if test x"$HAVE_PYTHON" = xno; then
1625 dependencies_missing="python $dependencies_missing"
1628 if test x"$dependencies_missing" = x; then
1629 PLUGINS="$PLUGINS python"
1631 elif test x"$enable_python_plugin" = xauto; then
1633 AC_MSG_WARN("Plugin python will not be built; missing $dependencies_missing")
1634 enable_python_plugin=no
1635 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS python"
1638 AC_MSG_ERROR("Plugin python cannot be built; missing $dependencies_missing")
1641 DISABLED_PLUGINS="$DISABLED_PLUGINS python"
1645 AC_MSG_CHECKING([whether to build pgpcore plugin])
1646 if test x"$enable_pgpcore_plugin" != xno; then
1647 dependencies_missing=""
1649 if test x"$HAVE_GPGME" = xno; then
1650 dependencies_missing="libgpgme $dependencies_missing"
1653 if test x"$dependencies_missing" = x; then
1654 PLUGINS="$PLUGINS pgpcore"
1656 elif test x"$enable_pgpcore_plugin" = xauto; then
1658 AC_MSG_WARN("Plugin pgpcore will not be built; missing $dependencies_missing")
1659 enable_pgpcore_plugin=no
1660 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpcore"
1663 AC_MSG_ERROR("Plugin pgpcore cannot be built; missing $dependencies_missing")
1666 DISABLED_PLUGINS="$DISABLED_PLUGINS pgpcore"
1670 AC_MSG_CHECKING([whether to build pgpmime plugin])
1671 if test x"$enable_pgpmime_plugin" != xno; then
1672 dependencies_missing=""
1674 if test x"$HAVE_GPGME" = xno; then
1675 dependencies_missing="libgpgme $dependencies_missing"
1677 if test x"$enable_pgpcore_plugin" = xno; then
1678 dependencies_missing="pgpcore plugin $dependencies_missing"
1681 if test x"$dependencies_missing" = x; then
1682 PLUGINS="$PLUGINS pgpmime"
1684 elif test x"$enable_pgpmime_plugin" = xauto; then
1686 AC_MSG_WARN("Plugin pgpmime will not be built; missing $dependencies_missing")
1687 enable_pgpmime_plugin=no
1688 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpmime"
1691 AC_MSG_ERROR("Plugin pgpmime cannot be built; missing $dependencies_missing")
1694 DISABLED_PLUGINS="$DISABLED_PLUGINS pgpmime"
1698 AC_MSG_CHECKING([whether to build pgpinline plugin])
1699 if test x"$enable_pgpinline_plugin" != xno; then
1700 dependencies_missing=""
1702 if test x"$HAVE_GPGME" = xno; then
1703 dependencies_missing="libgpgme $dependencies_missing"
1705 if test x"$enable_pgpcore_plugin" = xno; then
1706 dependencies_missing="pgpcore plugin $dependencies_missing"
1709 if test x"$dependencies_missing" = x; then
1710 PLUGINS="$PLUGINS pgpinline"
1712 elif test x"$enable_pgpinline_plugin" = xauto; then
1714 AC_MSG_WARN("Plugin pgpinline will not be built; missing $dependencies_missing")
1715 enable_pgpinline_plugin=no
1716 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpinline"
1719 AC_MSG_ERROR("Plugin pgpinline cannot be built; missing $dependencies_missing")
1722 DISABLED_PLUGINS="$DISABLED_PLUGINS pgpinline"
1726 AC_MSG_CHECKING([whether to build rssyl plugin])
1727 if test x"$enable_rssyl_plugin" != xno; then
1728 dependencies_missing=""
1730 if test x"$HAVE_LIBXML" = xno; then
1731 dependencies_missing="libxml2 $dependencies_missing"
1733 if test x"$HAVE_CURL" = xno; then
1734 dependencies_missing="libcurl $dependencies_missing"
1737 if test x"$dependencies_missing" = x; then
1738 PLUGINS="$PLUGINS rssyl"
1740 elif test x"$enable_rssyl_plugin" = xauto; then
1742 AC_MSG_WARN("Plugin rssyl will not be built; missing $dependencies_missing")
1743 enable_rssyl_plugin=no
1744 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS rssyl"
1747 AC_MSG_ERROR("Plugin rssyl cannot be built; missing $dependencies_missing")
1750 DISABLED_PLUGINS="$DISABLED_PLUGINS rssyl"
1754 AC_MSG_CHECKING([whether to build spamassassin plugin])
1755 if test x"$enable_spamassassin_plugin" != xno; then
1756 PLUGINS="$PLUGINS spamassassin"
1760 DISABLED_PLUGINS="$DISABLED_PLUGINS spamassassin"
1764 AC_MSG_CHECKING([whether to build smime plugin])
1765 if test x"$enable_smime_plugin" != xno; then
1766 dependencies_missing=""
1768 if test x"$HAVE_GPGME" = xno; then
1769 dependencies_missing="libgpgme $dependencies_missing"
1771 if test x"$enable_pgpcore_plugin" = xno; then
1772 dependencies_missing="pgpcore plugin $dependencies_missing"
1775 if test x"$dependencies_missing" = x; then
1776 PLUGINS="$PLUGINS smime"
1778 elif test x"$enable_smime_plugin" = xauto; then
1780 AC_MSG_WARN("Plugin smime will not be built; missing $dependencies_missing")
1781 enable_smime_plugin=no
1782 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS smime"
1785 AC_MSG_ERROR("Plugin smime cannot be built; missing $dependencies_missing")
1788 DISABLED_PLUGINS="$DISABLED_PLUGINS smime"
1792 AC_MSG_CHECKING([whether to build spam_report plugin])
1793 if test x"$enable_spam_report_plugin" != xno; then
1794 dependencies_missing=""
1796 if test x"$HAVE_CURL" = xno; then
1797 dependencies_missing="libcurl $dependencies_missing"
1800 if test x"$dependencies_missing" = x; then
1801 PLUGINS="$PLUGINS spam_report"
1803 elif test x"$enable_spam_report_plugin" = xauto; then
1805 AC_MSG_WARN("Plugin spam_report will not be built; missing $dependencies_missing")
1806 enable_spam_report_plugin=no
1807 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS spam_report"
1810 AC_MSG_ERROR("Plugin spam_report cannot be built; missing $dependencies_missing")
1813 DISABLED_PLUGINS="$DISABLED_PLUGINS spam_report"
1817 AC_MSG_CHECKING([whether to build tnef_parse plugin])
1818 if test x"$enable_tnef_parse_plugin" != xno; then
1819 PLUGINS="$PLUGINS tnef_parse"
1822 DISABLED_PLUGINS="$DISABLED_PLUGINS tnef_parse"
1826 AC_MSG_CHECKING([whether to build vcalendar plugin])
1827 if test x"$enable_vcalendar_plugin" != xno; then
1828 dependencies_missing=""
1830 if test x"$HAVE_CURL" = xno; then
1831 dependencies_missing="libcurl $dependencies_missing"
1834 if test x"$HAVE_PERL" = xno; then
1835 dependencies_missing="perl $dependencies_missing"
1838 if test x"$dependencies_missing" = x; then
1839 PLUGINS="$PLUGINS vcalendar"
1841 elif test x"$enable_vcalendar_plugin" = xauto; then
1843 AC_MSG_WARN("Plugin vcalendar will not be built; missing $dependencies_missing")
1844 enable_vcalendar_plugin=no
1845 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS vcalendar"
1848 AC_MSG_ERROR("Plugin vcalendar cannot be built; missing $dependencies_missing")
1851 DISABLED_PLUGINS="$DISABLED_PLUGINS vcalendar"
1855 dnl And finally the automake conditionals.
1857 AM_CONDITIONAL(BUILD_ACPI_NOTIFIER_PLUGIN, test x"$enable_acpi_notifier_plugin" != xno)
1858 AM_CONDITIONAL(BUILD_ADDRESS_KEEPER_PLUGIN, test x"$enable_address_keeper_plugin" != xno)
1859 AM_CONDITIONAL(BUILD_ARCHIVE_PLUGIN, test x"$enable_archive_plugin" != xno)
1860 AM_CONDITIONAL(BUILD_ATT_REMOVER_PLUGIN, test x"$enable_att_remover_plugin" != xno)
1861 AM_CONDITIONAL(BUILD_ATTACHWARNER_PLUGIN, test x"$enable_attachwarner_plugin" != xno)
1862 AM_CONDITIONAL(BUILD_BOGOFILTER_PLUGIN, test x"$enable_bogofilter_plugin" != xno)
1863 AM_CONDITIONAL(BUILD_BSFILTER_PLUGIN, test x"$enable_bsfilter_plugin" != xno)
1864 AM_CONDITIONAL(BUILD_CLAMD_PLUGIN, test x"$enable_clamd_plugin" != xno)
1865 AM_CONDITIONAL(BUILD_DEMO_PLUGIN, test x"$enable_demo_plugin" != xno)
1866 AM_CONDITIONAL(BUILD_FANCY_PLUGIN, test x"$enable_fancy_plugin" != xno)
1867 AM_CONDITIONAL(BUILD_FETCHINFO_PLUGIN, test x"$enable_fetchinfo_plugin" != xno)
1868 AM_CONDITIONAL(BUILD_GDATA_PLUGIN, test x"$enable_gdata_plugin" != xno)
1869 AM_CONDITIONAL(BUILD_GEOLOCATION_PLUGIN, test x"$enable_geolocation_plugin" != xno)
1870 AM_CONDITIONAL(BUILD_MAILMBOX_PLUGIN, test x"$enable_mailmbox_plugin" != xno)
1871 AM_CONDITIONAL(BUILD_NEWMAIL_PLUGIN, test x"$enable_newmail_plugin" != xno)
1872 AM_CONDITIONAL(BUILD_NOTIFICATION_PLUGIN, test x"$enable_notification_plugin" != xno)
1873 AM_CONDITIONAL(BUILD_HOTKEYS, test x"$enable_notification_plugin" != xno -a x"$HAVE_HOTKEYS" = xyes)
1874 AM_CONDITIONAL(BUILD_PDF_VIEWER_PLUGIN, test x"$enable_pdf_viewer_plugin" != xno)
1875 AM_CONDITIONAL(BUILD_PERL_PLUGIN, test x"$enable_perl_plugin" != xno)
1876 AM_CONDITIONAL(BUILD_PYTHON_PLUGIN, test x"$enable_python_plugin" != xno)
1877 AM_CONDITIONAL(BUILD_PGPCORE_PLUGIN, test x"$enable_pgpcore_plugin" != xno)
1878 AM_CONDITIONAL(BUILD_PGPMIME_PLUGIN, test x"$enable_pgpmime_plugin" != xno)
1879 AM_CONDITIONAL(BUILD_PGPINLINE_PLUGIN, test x"$enable_pgpinline_plugin" != xno)
1880 AM_CONDITIONAL(BUILD_RSSYL_PLUGIN, test x"$enable_rssyl_plugin" != xno)
1881 AM_CONDITIONAL(BUILD_SMIME_PLUGIN, test x"$enable_smime_plugin" != xno)
1882 AM_CONDITIONAL(BUILD_SPAMASSASSIN_PLUGIN, test x"$enable_spamassassin_plugin" != xno)
1883 AM_CONDITIONAL(BUILD_SPAM_REPORT_PLUGIN, test x"$enable_spam_report_plugin" != xno)
1884 AM_CONDITIONAL(BUILD_TNEF_PARSE_PLUGIN, test x"$enable_tnef_parse_plugin" != xno)
1885 AM_CONDITIONAL(BUILD_VCALENDAR_PLUGIN, test x"$enable_vcalendar_plugin" != xno)
1888 dnl ****************************
1889 dnl ** Final configure output **
1890 dnl ****************************
1896 src/common/version.h
1899 src/common/passcrypt.h
1902 src/plugins/Makefile
1903 src/plugins/acpi_notifier/Makefile
1904 src/plugins/address_keeper/Makefile
1905 src/plugins/archive/Makefile
1906 src/plugins/att_remover/Makefile
1907 src/plugins/attachwarner/Makefile
1908 src/plugins/bogofilter/Makefile
1909 src/plugins/bsfilter/Makefile
1910 src/plugins/clamd/Makefile
1911 src/plugins/clamd/libclamd/Makefile
1912 src/plugins/demo/Makefile
1913 src/plugins/fancy/Makefile
1914 src/plugins/fetchinfo/Makefile
1915 src/plugins/gdata/Makefile
1916 src/plugins/geolocation/Makefile
1917 src/plugins/mailmbox/Makefile
1918 src/plugins/newmail/Makefile
1919 src/plugins/notification/Makefile
1920 src/plugins/notification/gtkhotkey/Makefile
1921 src/plugins/pdf_viewer/Makefile
1922 src/plugins/perl/Makefile
1923 src/plugins/perl/tools/Makefile
1924 src/plugins/python/Makefile
1925 src/plugins/python/examples/Makefile
1926 src/plugins/pgpcore/Makefile
1927 src/plugins/pgpmime/Makefile
1928 src/plugins/pgpinline/Makefile
1929 src/plugins/rssyl/Makefile
1930 src/plugins/smime/Makefile
1931 src/plugins/spamassassin/Makefile
1932 src/plugins/spam_report/Makefile
1933 src/plugins/tnef_parse/Makefile
1934 src/plugins/vcalendar/Makefile
1935 src/plugins/vcalendar/libical/Makefile
1936 src/plugins/vcalendar/libical/libical/icalversion.h
1937 src/plugins/vcalendar/libical/libical/Makefile
1938 src/plugins/vcalendar/libical/design-data/Makefile
1939 src/plugins/vcalendar/libical/scripts/Makefile
1946 manual/dist/Makefile
1947 manual/dist/pdf/Makefile
1948 manual/dist/ps/Makefile
1949 manual/dist/html/Makefile
1950 manual/dist/txt/Makefile
1952 manual/fr/dist/Makefile
1953 manual/fr/dist/pdf/Makefile
1954 manual/fr/dist/ps/Makefile
1955 manual/fr/dist/html/Makefile
1956 manual/fr/dist/txt/Makefile
1958 manual/pl/dist/Makefile
1959 manual/pl/dist/pdf/Makefile
1960 manual/pl/dist/ps/Makefile
1961 manual/pl/dist/html/Makefile
1962 manual/pl/dist/txt/Makefile
1964 manual/es/dist/Makefile
1965 manual/es/dist/pdf/Makefile
1966 manual/es/dist/ps/Makefile
1967 manual/es/dist/html/Makefile
1968 manual/es/dist/txt/Makefile
1970 manual/de/dist/Makefile
1971 manual/de/dist/pdf/Makefile
1972 manual/de/dist/ps/Makefile
1973 manual/de/dist/html/Makefile
1974 manual/de/dist/txt/Makefile
1978 dnl Output the configuration summary
1980 echo "$PACKAGE $VERSION"
1982 if test x"$enable_new_addrbook" = xyes; then
1983 echo "Using Address Book : New experimental interface"
1985 echo "Using Address Book : Old stable interface"
1986 echo "JPilot : $enable_jpilot"
1987 echo "LDAP : $enable_ldap"
1989 echo "gnuTLS : $enable_gnutls"
1990 echo "iconv : $am_cv_func_iconv"
1991 echo "compface : $enable_compface"
1992 echo "IPv6 : $enable_ipv6"
1993 echo "enchant : $enable_enchant"
1994 echo "IMAP4 : $enable_libetpan"
1995 echo "NNTP : $enable_libetpan"
1996 echo "Crash dialog : $enable_crash_dialog"
1997 echo "LibSM : $enable_libsm"
1998 echo "DBUS : $enable_dbus"
1999 echo "NetworkManager : $enable_networkmanager"
2000 echo "Manual : $enable_manual"
2001 echo "Generic UMPC code : $enable_generic_umpc"
2002 echo "Maemo build : $enable_maemo"
2003 echo "Config dir : $ac_cv_with_config_dir"
2007 for plugin in $PLUGINS; do
2009 if test x"$plugin" = xnotification; then
2011 for notif_feature in $notification_features; do
2012 echo " $notif_feature"
2014 if test "x$notification_missing_dependencies" != x; then
2015 echo " Disabled due to missing dependencies:"
2016 for notif_miss_dep in $notification_missing_dependencies; do
2017 echo " $notif_miss_dep"
2022 if test "x$DISABLED_PLUGINS" != x; then
2024 for plugin in $DISABLED_PLUGINS; do
2029 if test "x$MISSING_DEPS_PLUGINS" != x; then
2030 echo " Disabled due to missing dependencies:"
2031 for plugin in $MISSING_DEPS_PLUGINS; do
2036 echo "The binary will be installed in $prefix/bin"
2038 echo "Configure finished, type 'make' to build."