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 libtool versioning
69 LT_RELEASE=$MAJOR_VERSION.$MINOR_VERSION
70 LT_CURRENT=`expr $MICRO_VERSION - $INTERFACE_AGE`
71 LT_REVISION=$INTERFACE_AGE
72 LT_AGE=`expr $BINARY_AGE - $INTERFACE_AGE`
78 dnl Specify a header configuration file
79 AC_CONFIG_HEADERS(config.h)
80 AC_CONFIG_HEADERS(claws-features.h)
84 dnl Checks for programs.
105 dnl ******************************
107 dnl Not needed anymore because we
108 dnl do AC_CANONICAL_SYSTEM above
109 dnl ******************************
110 dnl AC_CANONICAL_HOST
112 dnl Copied from the official gtk+-2 configure.in
113 AC_MSG_CHECKING([for some Win32 platform])
115 *-*-mingw*|*-*-cygwin*)
117 LDFLAGS="$LDFLAGS -mwindows"
123 AC_MSG_RESULT([$platform_win32])
124 AM_CONDITIONAL(PLATFORM_WIN32, test x"$platform_win32" = x"yes")
126 AC_MSG_CHECKING([for native Win32])
135 AC_MSG_RESULT([$os_win32])
136 AM_CONDITIONAL(OS_WIN32, test x"$os_win32" = x"yes")
138 AC_MSG_CHECKING([for Cygwin])
147 AC_MSG_RESULT([$env_cygwin])
148 AM_CONDITIONAL(CYGWIN, test x"$env_cygwin" = x"yes")
150 if test "$GCC" = "yes"
152 CFLAGS="$CFLAGS -Wno-unused-function"
153 #CFLAGS="-g -Wall -Wno-unused-function"
156 AC_MSG_CHECKING([if gcc supports -Wno-pointer-sign])
157 _gcc_cflags_save=$CFLAGS
158 CFLAGS="-Wno-pointer-sign"
159 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],_gcc_psign=yes,_gcc_psign=no)
160 AC_MSG_RESULT($_gcc_psign)
161 CFLAGS=$_gcc_cflags_save;
162 if test x"$_gcc_psign" = xyes ; then
163 CFLAGS="$CFLAGS -Wno-pointer-sign"
166 CFLAGS="$CFLAGS -Wall"
168 if test $USE_MAINTAINER_MODE = yes; then
169 CFLAGS="-g -Wall -Wno-pointer-sign -DUSE_MAINTAINER_MODE"
175 CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
178 # Note that we need to link to pthread in all cases. This
179 # is because some locking is used even when pthread support is
182 CFLAGS="$CFLAGS -mms-bitfields"
183 LIBS="$LIBS -l${pthread_name} -lws2_32 -lregex"
186 CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
187 CFLAGS="$CFLAGS -std=gnu99 -DSOLARIS"
194 dnl floor and ceil are in -lm
198 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
201 LIBS="$LIBS $GTK_LIBS"
202 AC_CHECK_FUNCS(bind_textdomain_codeset)
206 ALL_LINGUAS="ca cs de en_GB es fi fr he hu it lt nb nl pt_BR ru sk sv zh_TW"
207 GETTEXT_PACKAGE=claws-mail
208 AC_SUBST(GETTEXT_PACKAGE)
209 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define text domain.])
211 AM_GNU_GETTEXT_VERSION([0.18])
212 AM_GNU_GETTEXT([external])
214 AC_ARG_ENABLE(manual,
215 [ --disable-manual Do not build user manual],
216 [enable_manual=$enableval], [enable_manual=yes])
219 [ --disable-libsm Do not build libSM support for session management],
220 [enable_libsm=$enableval], [enable_libsm=yes])
223 [ --disable-ipv6 Do not build IPv6 support],
224 [enable_ipv6=$enableval], [enable_ipv6=yes])
226 AC_ARG_ENABLE(gnutls,
227 [ --disable-gnutls Do not build GnuTLS support for SSL/TLS],
228 [enable_gnutls=$enableval], [enable_gnutls=yes])
230 AC_ARG_ENABLE(enchant,
231 [ --disable-enchant Do not build Enchant support for spell-checking],
232 [enable_enchant=$enableval], [enable_enchant=yes])
234 AC_ARG_ENABLE(crash-dialog,
235 [ --enable-crash-dialog Build crash dialog],
236 [enable_crash_dialog=$enableval], [enable_crash_dialog=no])
238 AC_ARG_ENABLE(generic-umpc,
239 [ --enable-generic-umpc Build generic UMPC code],
240 [enable_generic_umpc=$enableval], [enable_generic_umpc=no])
242 AC_ARG_ENABLE(compface,
243 [ --disable-compface Do not build compface support for X-Face],
244 [enable_compface=$enableval], [enable_compface=yes])
246 AC_ARG_ENABLE(pthread,
247 [ --disable-pthread Do not build pthread support],
248 [enable_pthread=$enableval], [enable_pthread=yes])
250 AC_ARG_ENABLE(startup-notification,
251 [ --disable-startup-notification Do not startup notification support],
252 [enable_startup_notification=$enableval], [enable_startup_notification=yes])
255 [ --disable-dbus Do not build DBUS support],
256 [enable_dbus=$enableval], [enable_dbus=yes])
259 [ --disable-ldap Do not build LDAP support],
260 [enable_ldap=$enableval], [enable_ldap=yes])
262 AC_ARG_ENABLE(jpilot,
263 [ --disable-jpilot Do not build JPilot support],
264 [enable_jpilot=$enableval], [enable_jpilot=yes])
266 AC_ARG_ENABLE(networkmanager,
267 [ --disable-networkmanager Do not build NetworkManager support],
268 [enable_networkmanager=$enableval], [enable_networkmanager=yes])
270 AC_ARG_ENABLE(libetpan,
271 [ --disable-libetpan Do not build libetpan support for IMAP4/NNTP],
272 [enable_libetpan=$enableval], [enable_libetpan=yes])
274 AC_ARG_ENABLE(valgrind,
275 [ --disable-valgrind Do not build valgrind support for debugging],
276 [enable_valgrind=$enableval], [enable_valgrind=yes])
278 AC_ARG_ENABLE(alternate-addressbook,
279 [ --enable-alternate-addressbook Build alternate external address book support],
280 [enable_alternate_addressbook=$enableval], [enable_alternate_addressbook=no])
283 [ --enable-gtk3 Build GTK3 support],
284 [enable_gtk3=$enableval], [enable_gtk3=no])
286 AC_ARG_ENABLE(deprecated,
287 [ --disable-deprecated Disable deprecated GTK functions],
288 [GTK_CFLAGS="$GTK_CFLAGS -DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"], [])
290 manualdir='${docdir}/manual'
291 AC_ARG_WITH(manualdir,
292 [ --with-manualdir=DIR Manual directory],
293 [manualdir="$withval"])
296 dnl ******************************
297 dnl ** Check for required tools **
298 dnl ** to build manuals **
299 dnl ******************************
301 AC_PATH_PROG(DOCBOOK2HTML, docbook2html)
302 AC_PATH_PROG(DOCBOOK2TXT, docbook2txt)
303 AC_PATH_PROG(DOCBOOK2PS, docbook2ps)
304 AC_PATH_PROG(DOCBOOK2PDF, docbook2pdf)
306 AM_CONDITIONAL(MANUAL_HTML, test -n "$DOCBOOK2HTML")
307 AM_CONDITIONAL(MANUAL_TXT, test -n "$DOCBOOK2TXT")
308 AM_CONDITIONAL(MANUAL_PDF, test -n "$DOCBOOK2PDF")
309 AM_CONDITIONAL(MANUAL_PS, test -n "$DOCBOOK2PS")
311 if test x"$enable_manual" = x"yes"; then
312 if test -n "$DOCBOOK2TXT" -o -n "$DOCBOOK2HTML" \
313 -o -n "$DOCBOOK2PS" -o -n "$DOCBOOK2PDF"; then
320 AM_CONDITIONAL(BUILD_MANUAL, test x"$enable_manual" = xyes)
322 dnl Set PACKAGE_DATA_DIR in config.h.
323 if test "x${datarootdir}" = 'x${prefix}/share'; then
324 if test "x${prefix}" = "xNONE"; then
325 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${ac_default_prefix}/share/${PACKAGE}",[PACKAGE_DATA_DIR])
327 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/share/${PACKAGE}",[PACKAGE_DATA_DIR])
330 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datarootdir}/${PACKAGE}",[PACKAGE_DATA_DIR])
333 AC_CHECK_LIB(xpg4, setlocale)
337 AC_MSG_CHECKING([whether to use LibSM])
338 if test x"$enable_libsm" = xyes; then
340 AC_CHECK_LIB(SM, SmcSaveYourselfDone,
341 [SM_LIBS="$X_LIBS -lSM -lICE"],enable_libsm=no,
343 AC_CHECK_HEADERS(X11/SM/SMlib.h,,enable_libsm=no)
344 if test x"$enable_libsm" = xyes; then
345 AC_DEFINE(HAVE_LIBSM, 1, [Define to 1 if you have libSM installed])
347 AC_MSG_RESULT(not found)
348 AC_MSG_WARN([*** LibSM will not be supported ***])
355 dnl Check for d_type member in struct dirent
356 AC_MSG_CHECKING([whether struct dirent has d_type member])
357 AC_CACHE_VAL(ac_cv_dirent_d_type,[
358 AC_TRY_COMPILE([#include <dirent.h>],
359 [struct dirent d; d.d_type = DT_REG;],
360 ac_cv_dirent_d_type=yes, ac_cv_dirent_d_type=no)
362 AC_MSG_RESULT($ac_cv_dirent_d_type)
363 if test $ac_cv_dirent_d_type = yes; then
364 AC_DEFINE(HAVE_DIRENT_D_TYPE, 1,
365 Define if `struct dirent' has `d_type' member.)
368 # Check whether mkdir does not take the permission argument.
369 GNUPG_FUNC_MKDIR_TAKES_ONE_ARG
371 dnl Checks for header files.
375 AC_CHECK_HEADERS(fcntl.h sys/file.h unistd.h paths.h \
376 sys/param.h sys/utsname.h sys/select.h \
377 wchar.h wctype.h locale.h netdb.h)
378 AC_CHECK_HEADER([execinfo.h], [AC_DEFINE(HAVE_BACKTRACE,1,[Has backtrace*() needed for retrieving stack traces])])
379 AC_SEARCH_LIBS(backtrace_symbols, [execinfo])
381 dnl Checks for typedefs, structures, and compiler characteristics.
388 dnl AC_CHECK_TYPE(wint_t, unsigned int) does not work because wint_t
389 dnl may be defined only in wchar.h (this happens with gcc-2.96).
390 dnl So we need to use this extended macro.
391 CLAWS_CHECK_TYPE(wint_t, unsigned int,
396 ], Define to `unsigned int' if <stddef.h> or <wchar.h> doesn't define.)
398 GNUPG_CHECK_TYPEDEF(u32, HAVE_U32_TYPEDEF, Used to test for a u32 typedef)
399 AC_CHECK_SIZEOF(unsigned short, 2)
400 AC_CHECK_SIZEOF(unsigned int, 4)
401 AC_CHECK_SIZEOF(unsigned long, 4)
403 dnl Checks for library functions.
405 AC_CHECK_FUNCS(gethostname mkdir mktime socket strstr strchr \
406 uname flock lockf inet_aton inet_addr \
407 fchmod mkstemp truncate getuid regcomp)
409 AC_CHECK_FUNCS(fgets_unlocked fwrite_unlocked)
411 dnl *****************
412 dnl ** common code **
413 dnl *****************
416 PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.20 gmodule-2.0 >= 2.20 gobject-2.0 >= 2.20 gthread-2.0 >= 2.20)
418 GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0`
419 AC_SUBST(GLIB_GENMARSHAL)
421 AC_SUBST(GLIB_CFLAGS)
424 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
426 LIBS="$LIBS $GTK_LIBS"
427 AC_CHECK_FUNCS(bind_textdomain_codeset)
430 dnl check for IPv6 option
431 dnl automated checks for IPv6 support.
432 AC_MSG_CHECKING([whether to use IPv6])
433 if test x"$enable_ipv6" = xyes; then
435 AC_MSG_CHECKING([for IPv6 support])
436 if test x"$platform_win32" = xyes; then
437 AC_CACHE_VAL(ac_cv_ipv6,[
439 #include <ws2tcpip.h>
440 ], [struct in6_addr a;],
441 ac_cv_ipv6=yes, ac_cv_ipv6=no)
444 AC_CACHE_VAL(ac_cv_ipv6,[
447 #include <sys/types.h>
448 #include <netinet/in.h>
449 ], [int x = IPPROTO_IPV6; struct in6_addr a;],
450 ac_cv_ipv6=yes, ac_cv_ipv6=no)
453 AC_MSG_RESULT($ac_cv_ipv6)
454 if test $ac_cv_ipv6 = yes; then
455 AC_DEFINE(INET6, 1, Define if you want IPv6 support.)
457 AC_MSG_WARN(*** IPv6 will not be supported ***)
465 AC_MSG_CHECKING([whether to use GnuTLS])
466 AC_MSG_RESULT($enable_gnutls)
467 if test "x$enable_gnutls" != "xno"; then
468 PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.2,
470 AC_DEFINE(USE_GNUTLS, 1, gnutls)
471 echo "Building with GnuTLS"
472 PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.11,
474 dnl No linking against libgcrypt needed
477 dnl linking against libgcrypt *is* needed
478 GNUTLS_LIBS="$GNUTLS_LIBS -lgcrypt"
482 echo "Building without gnutls"
485 AC_SUBST(GNUTLS_LIBS)
486 AC_SUBST(GNUTLS_CFLAGS)
489 dnl password encryption
494 AC_SEARCH_LIBS(encrypt, cipher, [], AC_MSG_ERROR(['encrypt'-function not found.]))
497 AC_SEARCH_LIBS(encrypt, crypt, [], AC_MSG_ERROR(['encrypt'-function not found.]))
504 AC_ARG_WITH(passcrypt-key, [ --with-passcrypt-key=KEY Key used to encode passwords (8 byte string)],
505 with_passcrypt_key="$withval", with_passcrypt_key="passkey0")
506 AC_SUBST(PASSCRYPT_KEY, $with_passcrypt_key)
508 dnl RC dir (will be default at a certain point in time)
509 AC_ARG_WITH(config-dir, [ --with-config-dir=RCDIR Local configuration dir (default: .claws-mail)],
510 ac_cv_with_config_dir="$withval", ac_cv_with_config_dir="")
512 dnl Set correct default value based on platform
513 if test x"$ac_cv_with_config_dir" = x""; then
514 if test x"$platform_win32" = xyes; then
515 ac_cv_with_config_dir="Claws-mail"
517 ac_cv_with_config_dir=".claws-mail"
520 AC_DEFINE_UNQUOTED(CFG_RC_DIR, "$ac_cv_with_config_dir", Configuration directory)
522 AC_ARG_WITH(password-encryption, [ --with-password-encryption=PROVIDER Which cryptographic library to use for encrypting stored passwords (gnutls, old, default)],
523 pwd_crypto="$withval", pwd_crypto="default")
525 if test x"$pwd_crypto" = xdefault; then
526 if test x"$enable_gnutls" = xyes; then
527 if `$PKG_CONFIG --atleast-version=3.0 gnutls`; then
532 if test x"$pwd_crypto" = xdefault; then
538 if test x"$enable_gnutls" = xno; then
539 AC_MSG_ERROR([GnuTLS password encryption requested but GnuTLS is not available.])
541 if ! `$PKG_CONFIG --atleast-version=3.0 gnutls`; then
542 AC_MSG_ERROR([GnuTLS version at least 3.0 is required for password encryption.])
544 AC_DEFINE(PASSWORD_CRYPTO_GNUTLS, 1, Use GnuTLS for stored password encryption)
547 AC_DEFINE(PASSWORD_CRYPTO_OLD, 1, Use old insecure method for stored password encryption)
550 AC_MSG_ERROR([Unknown password encryption provider requested.])
555 dnl ************************
556 dnl ** GTK user interface **
557 dnl ************************
560 AM_CONDITIONAL(GTK3, false)
561 AM_CONDITIONAL(GTK2, true)
562 if test x"$enable_gtk3" = x"yes"; then
563 PKG_CHECK_MODULES(GTK, gtk+-3.0 >= 3.0 cairo)
564 AM_CONDITIONAL(GTK3, true)
565 AM_CONDITIONAL(GTK2, false)
567 PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.16)
572 dnl enchant is used for spell checking
573 AC_MSG_CHECKING([whether to use enchant])
574 AC_MSG_RESULT($enable_enchant)
575 if test $enable_enchant = yes; then
576 PKG_CHECK_MODULES(ENCHANT, enchant >= 1.0.0,
578 AC_DEFINE(USE_ENCHANT, 1, enchant)
579 echo "Building with enchant"
581 CFLAGS="$CFLAGS `$PKG_CONFIG --cflags enchant`"
584 echo "Building without enchant-notification"
587 AC_SUBST(ENCHANT_CFLAGS)
588 AC_SUBST(ENCHANT_LIBS)
591 dnl want crash dialog
592 if test $enable_crash_dialog = yes; then
593 dnl check if GDB is somewhere
594 AC_CHECK_PROG(enable_crash_dialog, gdb, yes, no)
595 AC_MSG_CHECKING([whether to use crash dialog])
596 if test $enable_crash_dialog = yes; then
597 AC_DEFINE(CRASH_DIALOG, 1, Pop up crash dialog)
599 AC_MSG_RESULT($enable_crash_dialog)
603 if test $enable_generic_umpc = yes; then
604 AC_DEFINE(GENERIC_UMPC, 1, Generic UMPC code)
605 AC_MSG_RESULT($enable_generic_umpc)
608 dnl Check for X-Face support
609 AC_MSG_CHECKING([whether to use compface])
610 if test x"$enable_compface" = xyes; then
612 AC_CHECK_LIB(compface, uncompface,
613 [AC_DEFINE(HAVE_LIBCOMPFACE, 1, Define if you want compface support.)],
614 [enable_compface=no])
615 if test x"$enable_compface" = xyes; then
616 COMPFACE_LIBS="-lcompface"
620 AC_SUBST(COMPFACE_LIBS)
625 dnl check for pthread support
626 AC_MSG_CHECKING([whether to use pthread])
627 if test x$enable_pthread = xno; then
632 # For W32 we need to use a special ptrhead lib. In this case we can't
633 # use AC_CHECK_LIB because it has no means of checking for a
634 # library installed under a different name. Checking for the
636 if test -n "${pthread_name}" ; then
639 AC_CHECK_LIB(pthread, pthread_create, :, enable_pthread=no)
641 AC_CHECK_HEADERS(pthread.h, :, enable_pthread=no)
643 if test x$enable_pthread = xyes; then
644 AC_DEFINE(USE_PTHREAD, 1, Define if you have pthread)
645 if test -z "${pthread_name}" ; then
646 PTHREAD_LIBS="-lpthread"
651 AC_SUBST(PTHREAD_LIBS)
654 dnl Check whether we need to pass -lresolv
655 dnl We know that we don't need it for W32.
657 if test x$os_win32 = xno; then
660 ac_cv_var__res_options=no
661 AC_TRY_LINK([#include <sys/types.h>
662 #include <sys/socket.h>
663 #include <netinet/in.h>
664 #include <arpa/nameser.h>
665 #include <resolv.h>],
666 [_res.options = RES_INIT;],
667 ac_cv_var__res_options=yes);
668 if test "$ac_cv_var__res_options" != "yes"; then
673 if test "x$LIBRESOLV" = "x"; then
674 AC_CHECK_LIB(resolv, res_query, [LIBRESOLV=-lresolv])
680 LIBS="$LIBS $LIBRESOLV"
682 dnl #######################################################################
683 dnl # Check for startup notification
684 dnl #######################################################################
685 if test "x$enable_startup_notification" = "xyes"; then
686 PKG_CHECK_MODULES(STARTUP_NOTIFICATION, libstartup-notification-1.0 >= 0.5,
688 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, [Define if we're using libstartup-notification.])
689 echo "Building with libstartup-notification"
690 enable_startup_notification=yes
693 echo "Building without libstartup-notification"
694 enable_startup_notification=no
697 AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
698 AC_SUBST(STARTUP_NOTIFICATION_LIBS)
701 dnl #######################################################################
702 dnl # Check for D-Bus support
703 dnl #######################################################################
704 if test "x$enable_dbus" = "xyes"; then
705 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.60, dbus-glib-1 >= 0.60],
707 AC_DEFINE(HAVE_DBUS_GLIB, 1, [Define if glib bindings of D-Bus are available])
711 echo "D-Bus requirements not met. D-Bus support not activated."
714 AC_SUBST(DBUS_CFLAGS)
718 dnl #######################################################################
719 dnl # Configure address book support
720 dnl #######################################################################
722 dnl #######################################################################
723 dnl # Check for alternate address book support
724 dnl #######################################################################
725 AC_MSG_CHECKING([whether DBUS support for alternate address book is present])
726 if test x"$enable_dbus_glib" = xyes; then
728 AC_MSG_CHECKING([whether to enable alternate address book])
729 if test x"$enable_alternate_addressbook" = xyes; then
731 PKG_CHECK_MODULES(CONTACTS, [claws-contacts],
733 AC_DEFINE(USE_ALT_ADDRBOOK, 1, [Define if alternate address book is to be activated.])
734 enable_alternate_addressbook=yes
735 AC_SUBST(CONTACTS_CFLAGS)
736 AC_SUBST(CONTACTS_LIBS)
739 enable_alternate_addressbook=no
743 enable_alternate_addressbook=no
747 enable_alternate_addressbook=no
750 dnl #######################################################################
751 dnl # Check for old address book support
752 dnl #######################################################################
753 if test x"$enable_alternate_addressbook" = xno; then
754 dnl for LDAP support in addressbook
755 dnl no check for libraries; dynamically loaded
756 AC_MSG_CHECKING([whether to use LDAP])
757 if test x"$enable_ldap" = xno; then
759 elif test x"$enable_ldap" = xyes -a x"$enable_pthread" = xno; then
760 AC_MSG_RESULT(no - LDAP support needs pthread support)
763 elif test x"$platform_win32" = xyes; then
765 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
766 LDAP_LIBS="-lwldap32"
771 dnl check for available libraries, and pull them in
772 AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="$LDAP_LIBS -lresolv")
773 AC_CHECK_LIB(socket, bind, LDAP_LIBS="$LDAP_LIBS -lsocket")
774 AC_CHECK_LIB(nsl, gethostbyaddr, LDAP_LIBS="$LDAP_LIBS -lnsl")
775 AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="$LDAP_LIBS -llber",,
778 AC_CHECK_HEADERS(ldap.h lber.h,
782 if test "$enable_ldap" = yes; then
783 AC_CHECK_LIB(ldap, ldap_open,
788 AC_CHECK_LIB(ldap, ldap_start_tls_s,
789 [ ac_cv_have_tls=yes ],
790 [ ac_cv_have_tls=no ])
794 AC_MSG_CHECKING([whether ldap library is available])
795 AC_MSG_RESULT($enable_ldap)
797 AC_MSG_CHECKING([whether TLS library is available])
798 AC_MSG_RESULT($ac_cv_have_tls)
800 if test "$enable_ldap" = yes; then
801 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
802 LDAP_LIBS="$LDAP_LIBS -lldap"
804 if test "$ac_cv_have_tls" = yes; then
805 AC_DEFINE(USE_LDAP_TLS, 1, Define if you want LDAP TLS support in addressbook.)
807 dnl As of OpenLDAP API version 3000 a number of functions has
808 dnl been deprecated. As Claws-mail compiles and runs on many
809 dnl platforms and many versions of OpenLDAP we need to be able
810 dnl to switch between the old and new API because new API has
811 dnl added new functions replacing old ones and at the same time
812 dnl old functions has been changed.
813 dnl If cross-compiling defaults to enable deprecated features
814 dnl for maximum portability
815 AC_MSG_CHECKING([The API version of OpenLDAP])
819 [if (LDAP_API_VERSION >= 3000)
822 [AC_MSG_RESULT([version < 3000])
823 AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)],
824 [AC_MSG_RESULT([version >= 3000])
825 AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 1, Define if OpenLDAP API is at least version 3000.)],
826 [AC_MSG_RESULT([Enabling deprecated features in OpenLDAP])
827 AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)
828 AC_DEFINE(LDAP_DEPRECATED, 1, Define to activate deprecated features in OpenLDAP)]
833 dnl for JPilot support in addressbook
834 dnl no check for libraries; these are dynamically loaded
835 AC_MSG_CHECKING([whether to use JPilot])
836 if test "$enable_jpilot" = yes; then
838 AC_CHECK_HEADERS(pi-args.h pi-appinfo.h pi-address.h pi-version.h,
839 [ AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ],
840 [ enable_jpilot=no ])
841 if test "$enable_jpilot" = no; then
842 AC_CHECK_HEADERS(libpisock/pi-args.h libpisock/pi-appinfo.h libpisock/pi-address.h libpisock/pi-version.h,
844 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ])
847 AC_CHECK_LIB(pisock, unpack_Address, [JPILOT_LIBS="-lpisock"], [JPILOT_LIBS="" enable_jpilot="no"])
848 if test x"$enable_jpilot" = xyes; then
849 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.)
851 AC_MSG_NOTICE([JPilot support not available])
853 AC_SUBST(JPILOT_LIBS)
859 AM_CONDITIONAL(BUILD_ALTADDRBOOK, test x"$enable_alternate_addressbook" = x"yes")
861 dnl #######################################################################
862 dnl # Check for NetworkManager support
863 dnl #######################################################################
864 if test x"$enable_dbus_glib" = xyes; then
865 if test x"$enable_networkmanager" = xyes; then
866 PKG_CHECK_MODULES(NETWORKMANAGER_SUPPORT, NetworkManager >= 0.6.2,
868 AC_DEFINE(HAVE_NETWORKMANAGER_SUPPORT, 1, [Define if NetworkManager support is to be included.])
869 echo "Building with NetworkManager support"
870 enable_networkmanager=yes
873 echo "NetworkManager not found."
874 enable_networkmanager=no
876 AC_SUBST(NETWORKMANAGER_SUPPORT_CFLAGS)
879 echo "NetworkManager support deactivated as D-Bus requirements were not met."
880 enable_networkmanager=no
884 AC_MSG_CHECKING([whether to use libetpan])
885 if test x"$enable_libetpan" = xyes; then
888 AC_PATH_PROG(libetpanconfig, [libetpan-config])
889 if test "x$libetpanconfig" != "x"; then
890 CPPFLAGS="$CPPFLAGS `$libetpanconfig --cflags 2>/dev/null`"
891 AC_CHECK_HEADER(libetpan/libetpan.h, [libetpan_result=yes])
892 if test "x$libetpan_result" = "xyes"; then
893 AC_MSG_CHECKING([whether libetpan-config hints compiles and links fine])
894 LIBS="$LIBS `$libetpanconfig --libs 2>/dev/null`"
895 AC_TRY_LINK([#include <libetpan/dbstorage.h>], [db_mailstorage_init(NULL, NULL);], [libetpan_result=yes], [libetpan_result=no])
896 AC_MSG_RESULT([$libetpan_result])
899 if test "x$libetpan_result" = "xyes"; then
900 LIBETPAN_CPPFLAGS="`$libetpanconfig --cflags`"
901 LIBETPAN_LIBS="`$libetpanconfig --libs`"
902 LIBETPAN_VERSION=`$libetpanconfig --version | $AWK -F. '{printf "%d", ($1 * 100) + $2}'`
903 if test "$LIBETPAN_VERSION" -lt "57"; then
904 AC_MSG_RESULT([*** Claws Mail requires libetpan 0.57 or newer. See http://www.etpan.org/])
905 AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 and/or NNTP support.])
906 AC_MSG_ERROR([libetpan 0.57 not found])
908 AC_SUBST(LIBETPAN_FLAGS)
909 AC_SUBST(LIBETPAN_LIBS)
910 AC_DEFINE(HAVE_LIBETPAN, 1, Define if you want IMAP and/or NNTP support.)
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])
919 AM_CONDITIONAL(CLAWS_LIBETPAN, test "x$libetpan_result" = "xyes")
921 AC_MSG_CHECKING([whether to use valgrind])
922 if test x$enable_valgrind = xyes; then
924 PKG_CHECK_MODULES(VALGRIND, valgrind >= 2.4.0,
925 enable_valgrind=yes, enable_valgrind=no)
926 if test x"$enable_valgrind" = xyes; then
927 AC_DEFINE(HAVE_VALGRIND, 1, Define if you want valgrind support)
929 AC_MSG_RESULT(not found)
934 AM_CONDITIONAL(CLAWS_VALGRIND, test x"$enable_valgrind" = x"yes")
936 dnl *************************
937 dnl ** section for plugins **
938 dnl *************************
942 MISSING_DEPS_PLUGINS=""
944 dnl First we set the enabled status - either enabled (yes), auto-enabled (auto)
945 dnl or (auto-)disabled (no for both)
947 dnl All plugins are auto-enabled except for Demo which is just there to help
948 dnl potential plugins writers.
950 AC_ARG_ENABLE(acpi_notifier-plugin,
951 [ --disable-acpi_notifier-plugin Do not build acpi_notifier plugin],
952 [enable_acpi_notifier_plugin=$enableval], [enable_acpi_notifier_plugin=auto])
954 AC_ARG_ENABLE(address_keeper-plugin,
955 [ --disable-address_keeper-plugin Do not build address_keeper plugin],
956 [enable_address_keeper_plugin=$enableval], [enable_address_keeper_plugin=auto])
958 AC_ARG_ENABLE(archive-plugin,
959 [ --disable-archive-plugin Do not build archive plugin],
960 [enable_archive_plugin=$enableval], [enable_archive_plugin=auto])
962 AC_ARG_ENABLE(att_remover-plugin,
963 [ --disable-att_remover-plugin Do not build att_remover plugin],
964 [enable_att_remover_plugin=$enableval], [enable_att_remover_plugin=auto])
966 AC_ARG_ENABLE(attachwarner-plugin,
967 [ --disable-attachwarner-plugin Do not build attachwarner plugin],
968 [enable_attachwarner_plugin=$enableval], [enable_attachwarner_plugin=auto])
970 AC_ARG_ENABLE(bogofilter-plugin,
971 [ --disable-bogofilter-plugin Do not build bogofilter plugin],
972 [enable_bogofilter_plugin=$enableval], [enable_bogofilter_plugin=auto])
974 AC_ARG_ENABLE(bsfilter-plugin,
975 [ --disable-bsfilter-plugin Do not build bsfilter plugin],
976 [enable_bsfilter_plugin=$enableval], [enable_bsfilter_plugin=auto])
978 AC_ARG_ENABLE(clamd-plugin,
979 [ --disable-clamd-plugin Do not build clamd plugin],
980 [enable_clamd_plugin=$enableval], [enable_clamd_plugin=auto])
982 AC_ARG_ENABLE(fancy-plugin,
983 [ --disable-fancy-plugin Do not build fancy plugin],
984 [enable_fancy_plugin=$enableval], [enable_fancy_plugin=auto])
986 AC_ARG_ENABLE(fetchinfo-plugin,
987 [ --disable-fetchinfo-plugin Do not build fetchinfo plugin],
988 [enable_fetchinfo_plugin=$enableval], [enable_fetchinfo_plugin=auto])
990 AC_ARG_ENABLE(gdata-plugin,
991 [ --disable-gdata-plugin Do not build gdata plugin],
992 [enable_gdata_plugin=$enableval], [enable_gdata_plugin=auto])
994 AC_ARG_ENABLE(libravatar-plugin,
995 [ --disable-libravatar-plugin Do not build libravatar plugin],
996 [enable_libravatar_plugin=$enableval], [enable_libravatar_plugin=auto])
998 AC_ARG_ENABLE(mailmbox-plugin,
999 [ --disable-mailmbox-plugin Do not build mailmbox plugin],
1000 [enable_mailmbox_plugin=$enableval], [enable_mailmbox_plugin=auto])
1002 AC_ARG_ENABLE(managesieve-plugin,
1003 [ --disable-managesieve-plugin Do not build managesieve plugin],
1004 [enable_managesieve_plugin=$enableval], [enable_managesieve_plugin=auto])
1006 AC_ARG_ENABLE(newmail-plugin,
1007 [ --disable-newmail-plugin Do not build newmail plugin],
1008 [enable_newmail_plugin=$enableval], [enable_newmail_plugin=auto])
1010 AC_ARG_ENABLE(notification-plugin,
1011 [ --disable-notification-plugin Do not build notification plugin],
1012 [enable_notification_plugin=$enableval], [enable_notification_plugin=auto])
1014 AC_ARG_ENABLE(pdf_viewer-plugin,
1015 [ --disable-pdf_viewer-plugin Do not build pdf_viewer plugin],
1016 [enable_pdf_viewer_plugin=$enableval], [enable_pdf_viewer_plugin=auto])
1018 AC_ARG_ENABLE(perl-plugin,
1019 [ --disable-perl-plugin Do not build perl plugin],
1020 [enable_perl_plugin=$enableval], [enable_perl_plugin=auto])
1022 AC_ARG_ENABLE(python-plugin,
1023 [ --disable-python-plugin Do not build python plugin],
1024 [enable_python_plugin=$enableval], [enable_python_plugin=auto])
1026 AC_ARG_ENABLE(pgpcore-plugin,
1027 [ --disable-pgpcore-plugin Do not build pgpcore plugin],
1028 [enable_pgpcore_plugin=$enableval], [enable_pgpcore_plugin=auto])
1030 AC_ARG_ENABLE(pgpmime-plugin,
1031 [ --disable-pgpmime-plugin Do not build pgpmime plugin],
1032 [enable_pgpmime_plugin=$enableval], [enable_pgpmime_plugin=auto])
1034 AC_ARG_ENABLE(pgpinline-plugin,
1035 [ --disable-pgpinline-plugin Do not build pgpinline plugin],
1036 [enable_pgpinline_plugin=$enableval], [enable_pgpinline_plugin=auto])
1038 AC_ARG_ENABLE(rssyl-plugin,
1039 [ --disable-rssyl-plugin Do not build rssyl plugin],
1040 [enable_rssyl_plugin=$enableval], [enable_rssyl_plugin=auto])
1042 AC_ARG_ENABLE(smime-plugin,
1043 [ --disable-smime-plugin Do not build smime plugin],
1044 [enable_smime_plugin=$enableval], [enable_smime_plugin=auto])
1046 AC_ARG_ENABLE(spamassassin-plugin,
1047 [ --disable-spamassassin-plugin Do not build spamassassin plugin],
1048 [enable_spamassassin_plugin=$enableval], [enable_spamassassin_plugin=auto])
1050 AC_ARG_ENABLE(spam_report-plugin,
1051 [ --disable-spam_report-plugin Do not build spam_report plugin],
1052 [enable_spam_report_plugin=$enableval], [enable_spam_report_plugin=auto])
1054 AC_ARG_ENABLE(tnef_parse-plugin,
1055 [ --disable-tnef_parse-plugin Do not build tnef_parse plugin],
1056 [enable_tnef_parse_plugin=$enableval], [enable_tnef_parse_plugin=auto])
1058 AC_ARG_ENABLE(vcalendar-plugin,
1059 [ --disable-vcalendar-plugin Do not build vcalendar plugin],
1060 [enable_vcalendar_plugin=$enableval], [enable_vcalendar_plugin=auto])
1062 dnl disabled by default
1063 AC_ARG_ENABLE(demo-plugin,
1064 [ --enable-demo-plugin Build demo plugin],
1065 [enable_demo_plugin=$enableval], [enable_demo_plugin=no])
1068 dnl Then we check (unconditionnaly) for plugins dependencies
1069 dnl Some dependencies are optional, some mandatories. This is taken care of
1072 dnl During this dependancy check we do the checks themselves, define HAVE_X to
1073 dnl either yes or no, and do the AC_SUBST calls.
1075 dnl Archive: libarchive
1076 dnl Fancy: Webkit, curl, optionally libsoup-gnome
1078 dnl Libravatar: libcurl
1079 dnl Notification: optionally libnotify libindicate libcanberra_gtk hotkey
1080 dnl Pdf-Viewer: libpoppler
1082 dnl PGP/Core: libgpgme
1083 dnl PGP/Mime: pgpcore libgpgme
1084 dnl PGP/Inline: pgpcore libgpgme
1085 dnl S/Mime: pgpcore libgpgme
1087 dnl RSSyl: expat libcurl
1088 dnl SpamReport: libcurl
1089 dnl vCalendar: libcurl
1091 dnl libcurl ********************************************************************
1092 PKG_CHECK_MODULES(CURL, libcurl, HAVE_CURL=yes, HAVE_CURL=no)
1094 AC_SUBST(CURL_CFLAGS)
1096 dnl expat **********************************************************************
1097 PKG_CHECK_MODULES(EXPAT, expat, HAVE_EXPAT=yes, HAVE_EXPAT=no)
1099 if test x"$HAVE_EXPAT" = xno; then
1100 AC_CHECK_HEADER(expat.h, [expat_header=yes], [expat_header=no])
1101 AC_CHECK_LIB(expat, XML_ParserCreate, [expat_lib=yes], [expat_lib=no])
1102 if test x"$expat_header" = xyes -a x"$expat_lib"=xyes; then
1105 EXPAT_LIBS="-lexpat"
1109 AC_SUBST(EXPAT_CFLAGS)
1110 AC_SUBST(EXPAT_LIBS)
1112 dnl webkit *********************************************************************
1113 PKG_CHECK_MODULES(WEBKIT, webkit-1.0 >= 1.1.14, HAVE_WEBKIT=yes, HAVE_WEBKIT=no)
1114 AC_SUBST(WEBKIT_LIBS)
1115 AC_SUBST(WEBKIT_CFLAGS)
1117 dnl libsoup ********************************************************************
1118 PKG_CHECK_MODULES(LIBSOUP, libsoup-2.4, HAVE_LIBSOUP=yes, HAVE_LIBSOUP=no)
1119 if test x"$HAVE_LIBSOUP" = xyes; then
1120 AC_DEFINE(HAVE_LIBSOUP, 1, [Define if libsoup is available])
1122 AC_SUBST(LIBSOUP_CFLAGS)
1123 AC_SUBST(LIBSOUP_LIBS)
1125 dnl libsoup-gnome **************************************************************
1126 PKG_CHECK_MODULES(LIBSOUP_GNOME, libsoup-gnome-2.4 >= 2.26, HAVE_LIBSOUP_GNOME=yes, HAVE_LIBSOUP_GNOME=no)
1127 if test x"$HAVE_LIBSOUP_GNOME" = xyes; then
1128 AC_DEFINE(HAVE_LIBSOUP_GNOME, 1, [Define if libsoup_gnome is available])
1130 AC_SUBST(LIBSOUP_GNOME_CFLAGS)
1131 AC_SUBST(LIBSOUP_GNOME_LIBS)
1133 dnl libarchive *****************************************************************
1134 AC_CHECK_LIB([archive], [archive_read_new],
1135 ARCHIVE_LIBS=-larchive
1137 AC_SUBST(ARCHIVE_LIBS),
1141 dnl libgdata *******************************************************************
1142 PKG_CHECK_MODULES(GDATA, libgdata >= 0.17.1, HAVE_GDATA=yes, HAVE_GDATA=no)
1143 AC_SUBST(GDATA_CFLAGS)
1144 AC_SUBST(GDATA_LIBS)
1146 dnl Poppler ********************************************************************
1147 PKG_CHECK_MODULES(POPPLER, poppler-glib >= 0.12.0, HAVE_POPPLER=yes, HAVE_POPPLER=no)
1148 AC_SUBST(POPPLER_LIBS)
1149 AC_SUBST(POPPLER_CFLAGS)
1151 dnl check for Poppler extra features that we conditionally support
1152 if test x"$HAVE_POPPLER" = xyes; then
1154 CFLAGS="$POPPLER_CFLAGS $GTK_CFLAGS $GLIB_CFLAGS"
1155 AC_CHECK_DECL(POPPLER_DEST_NAMED,
1156 [AC_DEFINE([HAVE_POPPLER_DEST_NAMED], [], [Description])],
1157 ,[#include <poppler-action.h>])
1158 AC_CHECK_DECL(POPPLER_DEST_XYZ,
1159 [AC_DEFINE([HAVE_POPPLER_DEST_XYZ], [], [Description])],
1160 ,[#include <poppler-action.h>])
1164 dnl perl ***********************************************************************
1165 AC_CHECK_PROG(HAVE_PERL, perl, yes, no)
1166 if test x"$HAVE_PERL" = xyes; then
1167 AC_MSG_CHECKING(for perl >= 5.8.0)
1168 PERL_VER=`perl -e 'print $] > 5.0079999?"yes":"no"'`
1169 if test "$PERL_VER" = "yes"; then
1176 if test x"$HAVE_PERL" = xyes; then
1177 AC_MSG_CHECKING(for Perl compile flags)
1178 PERL_CFLAGS=`perl -MExtUtils::Embed -e ccopts`
1179 PERL_CFLAGS=`echo $PERL_CFLAGS | sed 's/-D_FILE_OFFSET_BITS=[[0-9]]*//'`
1180 PERL_LDFLAGS=`perl -MExtUtils::Embed -e ldopts |sed 's/-lgdbm//'`
1181 PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-ldb//'`
1182 PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-lndbm//'`
1183 PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-lc//'`
1185 AC_MSG_NOTICE([Adding perl LIBS ${PERL_CFLAGS}])
1187 if test x"$HAVE_PERL" = xyes; then
1188 AC_CHECK_LIB(perl,perl_alloc,[AC_DEFINE(HAVE_LIBPERL, 1, Check for libperl.)],
1189 [ HAVE_LIBPERL=no ])
1191 if test x"$HAVE_LIBPERL" = xno; then
1192 LIBPERL_PREFIX=`perl -MExtUtils::Embed -e perl_inc`
1193 LIBPERL_PREFIX=`echo $LIBPERL_PREFIX |sed 's/-I//'`
1194 AC_MSG_CHECKING([for libperl.so])
1195 if test -f "$LIBPERL_PREFIX/libperl.so"; then
1204 AC_SUBST(PERL_CFLAGS)
1205 AC_SUBST(PERL_LDFLAGS)
1208 dnl Gpgme **********************************************************************
1209 AM_PATH_GPGME(1.0.0, HAVE_GPGME=yes, HAVE_GPGME=no)
1210 if test x"$HAVE_GPGME" = xyes; then
1211 AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.)
1212 AM_PATH_GPGME(1.1.1, AC_DEFINE(HAVE_GPGME_PKA_TRUST, 1, [Define if GPGME supports PKA.]))
1215 dnl Python *********************************************************************
1216 AM_PATH_PYTHON([2.5], [
1217 AC_PATH_PROG(PYTHON_CONFIG, python$PYTHON_VERSION-config)
1218 if test x"$PYTHON_CONFIG" = x"" ; then
1219 AC_PATH_PROG(PYTHON_CONFIG, python-config)
1221 if test x"$PYTHON_CONFIG" != x""; then
1222 PYTHON_CFLAGS=`$PYTHON_CONFIG --includes`
1223 PYTHON_LIBS=`$PYTHON_CONFIG --libs`
1224 PYTHON_PREFIX=`$PYTHON_CONFIG --prefix`
1227 AC_MSG_WARN(python-config not found. Maybe you need to install development packages for Python.)
1231 if test x"$HAVE_PYTHON" = xyes; then
1233 if test x"$platform_win32" = xno; then
1235 PYTHON_SHARED_LIB="libpython${PYTHON_VERSION}.so"
1236 AC_CHECK_LIB(dl, dlopen, [LIBS="-ldl"])
1237 AC_MSG_CHECKING([whether to dlopen $PYTHON_SHARED_LIB works])
1241 #define PYTHON_SO_FILE "${PYTHON_SHARED_LIB}"
1243 [if (!dlopen(PYTHON_SO_FILE, RTLD_NOW | RTLD_GLOBAL)) return 1; return 0;])
1245 [found_libpython_so="yes"],
1246 [found_libpython_so="no"],
1247 [AC_MSG_FAILURE([cross-compiling not supported])])
1249 if test x"$found_libpython_so" != x"yes"; then
1251 AC_MSG_WARN(Could not find Python shared libary: ${PYTHON_SHARED_LIB}. Maybe you need to install development packages for Python.)
1258 if test x"$HAVE_PYTHON" = xyes; then
1259 PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= 2.10.3, [AC_DEFINE(ENABLE_PYTHON, [1], [Enable Python support])], HAVE_PYTHON=no)
1262 AC_SUBST(PYTHON_SHARED_LIB)
1263 AC_SUBST(PYTHON_CFLAGS)
1264 AC_SUBST(PYTHON_LIBS)
1265 AC_SUBST(PYGTK_CFLAGS)
1266 AC_SUBST(PYGTK_LIBS)
1268 dnl libnotify ******************************************************************
1269 PKG_CHECK_MODULES(libnotify, libnotify >= 0.4.3, HAVE_LIBNOTIFY=yes, HAVE_LIBNOTIFY=no)
1270 if test x"$HAVE_LIBNOTIFY" = xyes; then
1271 AC_DEFINE(HAVE_LIBNOTIFY, 1, [Define if libnotify support is enabled])
1273 AC_SUBST(libnotify_CFLAGS)
1274 AC_SUBST(libnotify_LIBS)
1276 dnl libcanberra-gtk ************************************************************
1277 PKG_CHECK_MODULES(libcanberra_gtk, libcanberra-gtk >= 0.6, HAVE_LIBCANBERRA_GTK=yes, HAVE_LIBCANBERRA_GTK=no)
1278 if test x"$HAVE_LIBCANBERRA_GTK" = xyes; then
1279 AC_DEFINE(HAVE_LIBCANBERRA_GTK, 1, [Define if libcanberra-gtk support is enabled])
1281 AC_SUBST(libcanberra_gtk_CFLAGS)
1282 AC_SUBST(libcanberra_gtk_LIBS)
1284 dnl libindicate ****************************************************************
1285 dnl We support either 0.3+ or 0.5+ or 0.6+ or 0.7+
1286 LIBINDICATE_MODULE=indicate
1287 LIBINDICATE_REQUIRED=0.3.0
1289 PKG_CHECK_EXISTS(indicate-0.5 >= 0.5.0, LIBINDICATE_MODULE=indicate-0.5)
1290 PKG_CHECK_EXISTS(indicate-0.6 >= 0.6.0, LIBINDICATE_MODULE=indicate-0.6)
1291 PKG_CHECK_EXISTS(indicate-0.7 >= 0.7.0, LIBINDICATE_MODULE=indicate-0.7)
1292 PKG_CHECK_MODULES(libindicate, $LIBINDICATE_MODULE >= $LIBINDICATE_REQUIRED, HAVE_LIBINDICATE=yes, HAVE_LIBINDICATE=no)
1293 if test x"$HAVE_LIBINDICATE" = xyes; then
1294 AC_DEFINE(NOTIFICATION_INDICATOR, 1, [Activate support for indicators])
1296 AC_SUBST(libindicate_CFLAGS)
1297 AC_SUBST(libindicate_LIBS)
1299 dnl hotkeys ********************************************************************
1300 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)
1301 if test x"$HAVE_HOTKEYS" = xyes; then
1302 AC_DEFINE(NOTIFICATION_HOTKEYS, 1, Activate support for global hotkeys)
1304 AC_SUBST(CM_NP_HOTKEY_CFLAGS)
1305 AC_SUBST(CM_NP_HOTKEY_LIBS)
1307 dnl Third, we now cross the requested plugins and the available dependencies
1308 dnl If some dependencies are missing and the plugin was explicitely enabled,
1309 dnl we error out, else we only inform.
1311 AC_MSG_CHECKING([whether to build acpi_notifier plugin])
1312 if test x"$enable_acpi_notifier_plugin" != xno; then
1313 PLUGINS="$PLUGINS acpi_notifier"
1316 DISABLED_PLUGINS="$DISABLED_PLUGINS acpi_notifier"
1320 AC_MSG_CHECKING([whether to build address_keeper plugin])
1321 if test x"$enable_address_keeper_plugin" != xno; then
1322 PLUGINS="$PLUGINS address_keeper"
1325 DISABLED_PLUGINS="$DISABLED_PLUGINS address_keeper"
1329 AC_MSG_CHECKING([whether to build archive plugin])
1330 if test x"$enable_archive_plugin" != xno; then
1331 dependencies_missing=""
1333 if test x"$HAVE_ARCHIVE" = xno; then
1334 dependencies_missing="libarchive $dependencies_missing"
1337 if test x"$dependencies_missing" = x; then
1338 PLUGINS="$PLUGINS archive"
1340 elif test x"$enable_archive_plugin" = xauto; then
1342 AC_MSG_WARN("Plugin archive will not be built; missing $dependencies_missing")
1343 enable_archive_plugin=no
1344 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS archive"
1347 AC_MSG_ERROR("Plugin archive cannot be built; missing $dependencies_missing")
1350 DISABLED_PLUGINS="$DISABLED_PLUGINS archive"
1354 AC_MSG_CHECKING([whether to build att_remover plugin])
1355 if test x"$enable_att_remover_plugin" != xno; then
1356 PLUGINS="$PLUGINS att_remover"
1359 DISABLED_PLUGINS="$DISABLED_PLUGINS att_remover"
1363 AC_MSG_CHECKING([whether to build attachwarner plugin])
1364 if test x"$enable_attachwarner_plugin" != xno; then
1365 PLUGINS="$PLUGINS attachwarner"
1368 DISABLED_PLUGINS="$DISABLED_PLUGINS attachwarner"
1372 AC_MSG_CHECKING([whether to build bogofilter plugin])
1373 if test x"$enable_bogofilter_plugin" != xno; then
1374 PLUGINS="$PLUGINS bogofilter"
1377 DISABLED_PLUGINS="$DISABLED_PLUGINS bogofilter"
1381 AC_MSG_CHECKING([whether to build bsfilter plugin])
1382 if test x"$enable_bsfilter_plugin" != xno; then
1383 PLUGINS="$PLUGINS bsfilter"
1386 DISABLED_PLUGINS="$DISABLED_PLUGINS bsfilter"
1390 AC_MSG_CHECKING([whether to build clamd plugin])
1391 if test x"$enable_clamd_plugin" != xno; then
1392 PLUGINS="$PLUGINS clamd"
1395 DISABLED_PLUGINS="$DISABLED_PLUGINS clamd"
1399 AC_MSG_CHECKING([whether to build demo plugin])
1400 if test x"$enable_demo_plugin" != xno; then
1401 PLUGINS="$PLUGINS demo"
1404 DISABLED_PLUGINS="$DISABLED_PLUGINS demo"
1408 AC_MSG_CHECKING([whether to build fancy plugin])
1409 if test x"$enable_fancy_plugin" != xno; then
1410 dependencies_missing=""
1412 if test x"$HAVE_WEBKIT" = xno; then
1413 dependencies_missing="libwebkit-1.0 $dependencies_missing"
1415 if test x"$HAVE_CURL" = xno; then
1416 dependencies_missing="libcurl $dependencies_missing"
1419 if test x"$dependencies_missing" = x; then
1420 PLUGINS="$PLUGINS fancy"
1422 elif test x"$enable_fancy_plugin" = xauto; then
1424 AC_MSG_WARN("Plugin fancy will not be built; missing $dependencies_missing")
1425 enable_fancy_plugin=no
1426 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS fancy"
1429 AC_MSG_ERROR("Plugin fancy cannot be built; missing $dependencies_missing")
1432 DISABLED_PLUGINS="$DISABLED_PLUGINS fancy"
1436 AC_MSG_CHECKING([whether to build fetchinfo plugin])
1437 if test x"$enable_fetchinfo_plugin" != xno; then
1438 PLUGINS="$PLUGINS fetchinfo"
1441 DISABLED_PLUGINS="$DISABLED_PLUGINS fetchinfo"
1445 AC_MSG_CHECKING([whether to build gdata plugin])
1446 if test x"$enable_gdata_plugin" != xno; then
1447 dependencies_missing=""
1449 if test x"$HAVE_GDATA" = xno; then
1450 dependencies_missing="libgdata $dependencies_missing"
1453 if test x"$dependencies_missing" = x; then
1454 PLUGINS="$PLUGINS gdata"
1456 elif test x"$enable_gdata_plugin" = xauto; then
1458 AC_MSG_WARN("Plugin gdata will not be built; missing $dependencies_missing")
1459 enable_gdata_plugin=no
1460 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS gdata"
1463 AC_MSG_ERROR("Plugin gdata cannot be built; missing $dependencies_missing")
1466 DISABLED_PLUGINS="$DISABLED_PLUGINS gdata"
1470 AC_MSG_CHECKING([whether to build libravatar plugin])
1471 if test x"$enable_libravatar_plugin" != xno; then
1472 dependencies_missing=""
1474 if test x"$HAVE_CURL" = xno; then
1475 dependencies_missing="libcurl $dependencies_missing"
1478 if test x"$dependencies_missing" = x; then
1479 PLUGINS="$PLUGINS libravatar"
1481 elif test x"$enable_libravatar_plugin" = xauto; then
1483 AC_MSG_WARN("Plugin libravatar will not be built; missing $dependencies_missing")
1484 enable_libravatar_plugin=no
1485 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS libravatar"
1488 AC_MSG_ERROR("Plugin libravatar cannot be built; missing $dependencies_missing")
1491 DISABLED_PLUGINS="$DISABLED_PLUGINS libravatar"
1495 AC_MSG_CHECKING([whether to build mailmbox plugin])
1496 if test x"$enable_mailmbox_plugin" != xno; then
1497 PLUGINS="$PLUGINS mailmbox"
1500 DISABLED_PLUGINS="$DISABLED_PLUGINS mailmbox"
1504 AC_MSG_CHECKING([whether to build managesieve plugin])
1505 if test x"$enable_managesieve_plugin" != xno; then
1506 PLUGINS="$PLUGINS managesieve"
1509 DISABLED_PLUGINS="$DISABLED_PLUGINS managesieve"
1513 AC_MSG_CHECKING([whether to build newmail plugin])
1514 if test x"$enable_newmail_plugin" != xno; then
1515 PLUGINS="$PLUGINS newmail"
1518 DISABLED_PLUGINS="$DISABLED_PLUGINS newmail"
1522 AC_MSG_CHECKING([whether to build notification plugin])
1523 if test x"$enable_notification_plugin" != xno; then
1524 PLUGINS="$PLUGINS notification"
1527 AC_DEFINE(NOTIFICATION_POPUP, 1, Activate notification popup)
1528 AC_DEFINE(NOTIFICATION_BANNER, 1, Activate notification banner)
1529 AC_DEFINE(NOTIFICATION_COMMAND, 1, Activate notification shell command)
1530 AC_DEFINE(NOTIFICATION_TRAYICON, 1, Activate notification trayicon)
1531 if test x"$platform_win32" = xno; then
1532 AC_DEFINE(NOTIFICATION_LCDPROC, 1, Activate lcdproc support)
1535 notification_features="banner command"
1536 notification_missing_dependencies=""
1537 if test x"$HAVE_HOTKEYS" = xyes; then
1538 notification_features="$notification_features hotkeys"
1540 notification_missing_dependencies="$notification_missing_dependencies hotkeys"
1542 notification_features="$notification_features lcdproc"
1543 if test x"$HAVE_LIBINDICATE" = xyes; then
1544 notification_features="$notification_features libindicate"
1546 notification_missing_dependencies="$notification_missing_dependencies libindicate"
1548 if test x"$HAVE_LIBNOTIFY" = xyes; then
1549 notification_features="$notification_features libnotify"
1551 notification_missing_dependencies="$notification_missing_dependencies libnotify"
1553 if test x"$HAVE_LIBCANBERRA_GTK" = xyes; then
1554 notification_features="$notification_features libcanberra-gtk"
1556 notification_missing_dependencies="$notification_missing_dependencies libcanberra-gtk"
1558 notification_features="$notification_features popup trayicon"
1560 DISABLED_PLUGINS="$DISABLED_PLUGINS notification"
1564 AC_MSG_CHECKING([whether to build pdf_viewer plugin])
1565 if test x"$enable_pdf_viewer_plugin" != xno; then
1566 dependencies_missing=""
1568 if test x"$HAVE_POPPLER" = xno; then
1569 dependencies_missing="libpoppler-glib $dependencies_missing"
1572 if test x"$dependencies_missing" = x; then
1573 PLUGINS="$PLUGINS pdf_viewer"
1575 elif test x"$enable_pdf_viewer_plugin" = xauto; then
1577 AC_MSG_WARN("Plugin pdf_viewer will not be built; missing $dependencies_missing")
1578 enable_pdf_viewer_plugin=no
1579 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pdf_viewer"
1582 AC_MSG_ERROR("Plugin pdf_viewer cannot be built; missing $dependencies_missing")
1585 DISABLED_PLUGINS="$DISABLED_PLUGINS pdf_viewer"
1589 AC_MSG_CHECKING([whether to build perl plugin])
1590 if test x"$enable_perl_plugin" != xno; then
1591 dependencies_missing=""
1593 if test x"$HAVE_LIBPERL" = xno; then
1594 dependencies_missing="libperl $dependencies_missing"
1597 if test x"$dependencies_missing" = x; then
1598 PLUGINS="$PLUGINS perl"
1600 elif test x"$enable_perl_plugin" = xauto; then
1602 AC_MSG_WARN("Plugin perl will not be built; missing $dependencies_missing")
1603 enable_perl_plugin=no
1604 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS perl"
1607 AC_MSG_ERROR("Plugin perl cannot be built; missing $dependencies_missing")
1610 DISABLED_PLUGINS="$DISABLED_PLUGINS perl"
1614 AC_MSG_CHECKING([whether to build python plugin])
1615 if test x"$enable_python_plugin" != xno; then
1616 dependencies_missing=""
1618 if test x"$HAVE_PYTHON" = xno; then
1619 dependencies_missing="python $dependencies_missing"
1622 if test x"$dependencies_missing" = x; then
1623 PLUGINS="$PLUGINS python"
1625 elif test x"$enable_python_plugin" = xauto; then
1627 AC_MSG_WARN("Plugin python will not be built; missing $dependencies_missing")
1628 enable_python_plugin=no
1629 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS python"
1632 AC_MSG_ERROR("Plugin python cannot be built; missing $dependencies_missing")
1635 DISABLED_PLUGINS="$DISABLED_PLUGINS python"
1639 AC_MSG_CHECKING([whether to build pgpcore plugin])
1640 if test x"$enable_pgpcore_plugin" != xno; then
1641 dependencies_missing=""
1643 if test x"$HAVE_GPGME" = xno; then
1644 dependencies_missing="libgpgme $dependencies_missing"
1647 if test x"$dependencies_missing" = x; then
1648 PLUGINS="$PLUGINS pgpcore"
1650 elif test x"$enable_pgpcore_plugin" = xauto; then
1652 AC_MSG_WARN("Plugin pgpcore will not be built; missing $dependencies_missing")
1653 enable_pgpcore_plugin=no
1654 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpcore"
1657 AC_MSG_ERROR("Plugin pgpcore cannot be built; missing $dependencies_missing")
1660 DISABLED_PLUGINS="$DISABLED_PLUGINS pgpcore"
1664 AC_MSG_CHECKING([whether to build pgpmime plugin])
1665 if test x"$enable_pgpmime_plugin" != xno; then
1666 dependencies_missing=""
1668 if test x"$HAVE_GPGME" = xno; then
1669 dependencies_missing="libgpgme $dependencies_missing"
1671 if test x"$enable_pgpcore_plugin" = xno; then
1672 dependencies_missing="pgpcore plugin $dependencies_missing"
1675 if test x"$dependencies_missing" = x; then
1676 PLUGINS="$PLUGINS pgpmime"
1678 elif test x"$enable_pgpmime_plugin" = xauto; then
1680 AC_MSG_WARN("Plugin pgpmime will not be built; missing $dependencies_missing")
1681 enable_pgpmime_plugin=no
1682 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpmime"
1685 AC_MSG_ERROR("Plugin pgpmime cannot be built; missing $dependencies_missing")
1688 DISABLED_PLUGINS="$DISABLED_PLUGINS pgpmime"
1692 AC_MSG_CHECKING([whether to build pgpinline plugin])
1693 if test x"$enable_pgpinline_plugin" != xno; then
1694 dependencies_missing=""
1696 if test x"$HAVE_GPGME" = xno; then
1697 dependencies_missing="libgpgme $dependencies_missing"
1699 if test x"$enable_pgpcore_plugin" = xno; then
1700 dependencies_missing="pgpcore plugin $dependencies_missing"
1703 if test x"$dependencies_missing" = x; then
1704 PLUGINS="$PLUGINS pgpinline"
1706 elif test x"$enable_pgpinline_plugin" = xauto; then
1708 AC_MSG_WARN("Plugin pgpinline will not be built; missing $dependencies_missing")
1709 enable_pgpinline_plugin=no
1710 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpinline"
1713 AC_MSG_ERROR("Plugin pgpinline cannot be built; missing $dependencies_missing")
1716 DISABLED_PLUGINS="$DISABLED_PLUGINS pgpinline"
1720 AC_MSG_CHECKING([whether to build rssyl plugin])
1721 if test x"$enable_rssyl_plugin" != xno; then
1722 dependencies_missing=""
1724 if test x"$HAVE_EXPAT" = xno; then
1725 dependencies_missing="expat $dependencies_missing"
1727 if test x"$HAVE_CURL" = xno; then
1728 dependencies_missing="libcurl $dependencies_missing"
1731 if test x"$dependencies_missing" = x; then
1732 PLUGINS="$PLUGINS rssyl"
1734 elif test x"$enable_rssyl_plugin" = xauto; then
1736 AC_MSG_WARN("Plugin rssyl will not be built; missing $dependencies_missing")
1737 enable_rssyl_plugin=no
1738 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS rssyl"
1741 AC_MSG_ERROR("Plugin rssyl cannot be built; missing $dependencies_missing")
1744 DISABLED_PLUGINS="$DISABLED_PLUGINS rssyl"
1748 AC_MSG_CHECKING([whether to build spamassassin plugin])
1749 if test x"$enable_spamassassin_plugin" != xno; then
1750 PLUGINS="$PLUGINS spamassassin"
1754 DISABLED_PLUGINS="$DISABLED_PLUGINS spamassassin"
1758 AC_MSG_CHECKING([whether to build smime plugin])
1759 if test x"$enable_smime_plugin" != xno; then
1760 dependencies_missing=""
1762 if test x"$HAVE_GPGME" = xno; then
1763 dependencies_missing="libgpgme $dependencies_missing"
1765 if test x"$enable_pgpcore_plugin" = xno; then
1766 dependencies_missing="pgpcore plugin $dependencies_missing"
1769 if test x"$dependencies_missing" = x; then
1770 PLUGINS="$PLUGINS smime"
1772 elif test x"$enable_smime_plugin" = xauto; then
1774 AC_MSG_WARN("Plugin smime will not be built; missing $dependencies_missing")
1775 enable_smime_plugin=no
1776 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS smime"
1779 AC_MSG_ERROR("Plugin smime cannot be built; missing $dependencies_missing")
1782 DISABLED_PLUGINS="$DISABLED_PLUGINS smime"
1786 AC_MSG_CHECKING([whether to build spam_report plugin])
1787 if test x"$enable_spam_report_plugin" != xno; then
1788 dependencies_missing=""
1790 if test x"$HAVE_CURL" = xno; then
1791 dependencies_missing="libcurl $dependencies_missing"
1794 if test x"$dependencies_missing" = x; then
1795 PLUGINS="$PLUGINS spam_report"
1797 elif test x"$enable_spam_report_plugin" = xauto; then
1799 AC_MSG_WARN("Plugin spam_report will not be built; missing $dependencies_missing")
1800 enable_spam_report_plugin=no
1801 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS spam_report"
1804 AC_MSG_ERROR("Plugin spam_report cannot be built; missing $dependencies_missing")
1807 DISABLED_PLUGINS="$DISABLED_PLUGINS spam_report"
1811 AC_MSG_CHECKING([whether to build tnef_parse plugin])
1812 if test x"$enable_tnef_parse_plugin" != xno; then
1813 PLUGINS="$PLUGINS tnef_parse"
1816 DISABLED_PLUGINS="$DISABLED_PLUGINS tnef_parse"
1820 AC_MSG_CHECKING([whether to build vcalendar plugin])
1821 if test x"$enable_vcalendar_plugin" != xno; then
1822 dependencies_missing=""
1824 if test x"$HAVE_CURL" = xno; then
1825 dependencies_missing="libcurl $dependencies_missing"
1828 if test x"$HAVE_PERL" = xno; then
1829 dependencies_missing="perl $dependencies_missing"
1832 if test x"$dependencies_missing" = x; then
1833 PLUGINS="$PLUGINS vcalendar"
1835 elif test x"$enable_vcalendar_plugin" = xauto; then
1837 AC_MSG_WARN("Plugin vcalendar will not be built; missing $dependencies_missing")
1838 enable_vcalendar_plugin=no
1839 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS vcalendar"
1842 AC_MSG_ERROR("Plugin vcalendar cannot be built; missing $dependencies_missing")
1845 DISABLED_PLUGINS="$DISABLED_PLUGINS vcalendar"
1849 dnl And finally the automake conditionals.
1851 AM_CONDITIONAL(BUILD_ACPI_NOTIFIER_PLUGIN, test x"$enable_acpi_notifier_plugin" != xno)
1852 AM_CONDITIONAL(BUILD_ADDRESS_KEEPER_PLUGIN, test x"$enable_address_keeper_plugin" != xno)
1853 AM_CONDITIONAL(BUILD_ARCHIVE_PLUGIN, test x"$enable_archive_plugin" != xno)
1854 AM_CONDITIONAL(BUILD_ATT_REMOVER_PLUGIN, test x"$enable_att_remover_plugin" != xno)
1855 AM_CONDITIONAL(BUILD_ATTACHWARNER_PLUGIN, test x"$enable_attachwarner_plugin" != xno)
1856 AM_CONDITIONAL(BUILD_BOGOFILTER_PLUGIN, test x"$enable_bogofilter_plugin" != xno)
1857 AM_CONDITIONAL(BUILD_BSFILTER_PLUGIN, test x"$enable_bsfilter_plugin" != xno)
1858 AM_CONDITIONAL(BUILD_CLAMD_PLUGIN, test x"$enable_clamd_plugin" != xno)
1859 AM_CONDITIONAL(BUILD_DEMO_PLUGIN, test x"$enable_demo_plugin" != xno)
1860 AM_CONDITIONAL(BUILD_FANCY_PLUGIN, test x"$enable_fancy_plugin" != xno)
1861 AM_CONDITIONAL(BUILD_FETCHINFO_PLUGIN, test x"$enable_fetchinfo_plugin" != xno)
1862 AM_CONDITIONAL(BUILD_GDATA_PLUGIN, test x"$enable_gdata_plugin" != xno)
1863 AM_CONDITIONAL(BUILD_LIBRAVATAR_PLUGIN, test x"$enable_libravatar_plugin" != xno)
1864 AM_CONDITIONAL(BUILD_MAILMBOX_PLUGIN, test x"$enable_mailmbox_plugin" != xno)
1865 AM_CONDITIONAL(BUILD_MANAGESIEVE_PLUGIN, test x"$enable_managesieve_plugin" != xno)
1866 AM_CONDITIONAL(BUILD_NEWMAIL_PLUGIN, test x"$enable_newmail_plugin" != xno)
1867 AM_CONDITIONAL(BUILD_NOTIFICATION_PLUGIN, test x"$enable_notification_plugin" != xno)
1868 AM_CONDITIONAL(BUILD_HOTKEYS, test x"$enable_notification_plugin" != xno -a x"$HAVE_HOTKEYS" = xyes)
1869 AM_CONDITIONAL(BUILD_PDF_VIEWER_PLUGIN, test x"$enable_pdf_viewer_plugin" != xno)
1870 AM_CONDITIONAL(BUILD_PERL_PLUGIN, test x"$enable_perl_plugin" != xno)
1871 AM_CONDITIONAL(BUILD_PYTHON_PLUGIN, test x"$enable_python_plugin" != xno)
1872 AM_CONDITIONAL(BUILD_PGPCORE_PLUGIN, test x"$enable_pgpcore_plugin" != xno)
1873 AM_CONDITIONAL(BUILD_PGPMIME_PLUGIN, test x"$enable_pgpmime_plugin" != xno)
1874 AM_CONDITIONAL(BUILD_PGPINLINE_PLUGIN, test x"$enable_pgpinline_plugin" != xno)
1875 AM_CONDITIONAL(BUILD_RSSYL_PLUGIN, test x"$enable_rssyl_plugin" != xno)
1876 AM_CONDITIONAL(BUILD_SMIME_PLUGIN, test x"$enable_smime_plugin" != xno)
1877 AM_CONDITIONAL(BUILD_SPAMASSASSIN_PLUGIN, test x"$enable_spamassassin_plugin" != xno)
1878 AM_CONDITIONAL(BUILD_SPAM_REPORT_PLUGIN, test x"$enable_spam_report_plugin" != xno)
1879 AM_CONDITIONAL(BUILD_TNEF_PARSE_PLUGIN, test x"$enable_tnef_parse_plugin" != xno)
1880 AM_CONDITIONAL(BUILD_VCALENDAR_PLUGIN, test x"$enable_vcalendar_plugin" != xno)
1883 dnl ****************************
1884 dnl ** Final configure output **
1885 dnl ****************************
1891 src/common/version.h
1894 src/common/passcrypt.h
1897 src/plugins/Makefile
1898 src/plugins/acpi_notifier/Makefile
1899 src/plugins/address_keeper/Makefile
1900 src/plugins/archive/Makefile
1901 src/plugins/att_remover/Makefile
1902 src/plugins/attachwarner/Makefile
1903 src/plugins/bogofilter/Makefile
1904 src/plugins/bsfilter/Makefile
1905 src/plugins/clamd/Makefile
1906 src/plugins/clamd/libclamd/Makefile
1907 src/plugins/demo/Makefile
1908 src/plugins/fancy/Makefile
1909 src/plugins/fetchinfo/Makefile
1910 src/plugins/gdata/Makefile
1911 src/plugins/libravatar/Makefile
1912 src/plugins/mailmbox/Makefile
1913 src/plugins/managesieve/Makefile
1914 src/plugins/newmail/Makefile
1915 src/plugins/notification/Makefile
1916 src/plugins/notification/gtkhotkey/Makefile
1917 src/plugins/pdf_viewer/Makefile
1918 src/plugins/perl/Makefile
1919 src/plugins/perl/tools/Makefile
1920 src/plugins/python/Makefile
1921 src/plugins/python/examples/Makefile
1922 src/plugins/pgpcore/Makefile
1923 src/plugins/pgpmime/Makefile
1924 src/plugins/pgpinline/Makefile
1925 src/plugins/rssyl/Makefile
1926 src/plugins/rssyl/libfeed/Makefile
1927 src/plugins/smime/Makefile
1928 src/plugins/spamassassin/Makefile
1929 src/plugins/spam_report/Makefile
1930 src/plugins/tnef_parse/Makefile
1931 src/plugins/vcalendar/Makefile
1932 src/plugins/vcalendar/libical/Makefile
1933 src/plugins/vcalendar/libical/libical/icalversion.h
1934 src/plugins/vcalendar/libical/libical/Makefile
1935 src/plugins/vcalendar/libical/design-data/Makefile
1936 src/plugins/vcalendar/libical/scripts/Makefile
1943 manual/dist/Makefile
1944 manual/dist/pdf/Makefile
1945 manual/dist/ps/Makefile
1946 manual/dist/html/Makefile
1947 manual/dist/txt/Makefile
1949 manual/fr/dist/Makefile
1950 manual/fr/dist/pdf/Makefile
1951 manual/fr/dist/ps/Makefile
1952 manual/fr/dist/html/Makefile
1953 manual/fr/dist/txt/Makefile
1955 manual/es/dist/Makefile
1956 manual/es/dist/pdf/Makefile
1957 manual/es/dist/ps/Makefile
1958 manual/es/dist/html/Makefile
1959 manual/es/dist/txt/Makefile
1963 dnl Output the configuration summary
1965 echo "$PACKAGE $VERSION"
1967 if test x"$enable_alternate_addressbook" = xyes; then
1968 echo "Using Address Book : Alternate experimental interface"
1970 echo "Using Address Book : Original stable interface"
1971 echo "JPilot : $enable_jpilot"
1972 echo "LDAP : $enable_ldap"
1974 echo "gnuTLS : $enable_gnutls"
1975 echo "iconv : $am_cv_func_iconv"
1976 echo "compface : $enable_compface"
1977 echo "IPv6 : $enable_ipv6"
1978 echo "enchant : $enable_enchant"
1979 echo "IMAP4 : $enable_libetpan"
1980 echo "NNTP : $enable_libetpan"
1981 echo "Crash dialog : $enable_crash_dialog"
1982 echo "LibSM : $enable_libsm"
1983 echo "DBUS : $enable_dbus"
1984 echo "NetworkManager : $enable_networkmanager"
1985 echo "Manual : $enable_manual"
1986 echo "Generic UMPC code : $enable_generic_umpc"
1987 echo "Config dir : $ac_cv_with_config_dir"
1988 echo "Password crypto : $pwd_crypto"
1992 for plugin in $PLUGINS; do
1994 if test x"$plugin" = xnotification; then
1996 for notif_feature in $notification_features; do
1997 echo " $notif_feature"
1999 if test "x$notification_missing_dependencies" != x; then
2000 echo " Disabled due to missing dependencies:"
2001 for notif_miss_dep in $notification_missing_dependencies; do
2002 echo " $notif_miss_dep"
2007 if test "x$DISABLED_PLUGINS" != x; then
2009 for plugin in $DISABLED_PLUGINS; do
2014 if test "x$MISSING_DEPS_PLUGINS" != x; then
2015 echo " Disabled due to missing dependencies:"
2016 for plugin in $MISSING_DEPS_PLUGINS; do
2021 echo "The binary will be installed in $prefix/bin"
2023 echo "Configure finished, type 'make' to build."