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"`
27 if test \( -z "$GIT_VERSION" \); then
28 AC_MSG_ERROR([*** could not determine program version])
31 MAJOR_VERSION=${GIT_VERSION%%.*}
32 MINOR_VERSION=${GIT_VERSION#*.}
33 MINOR_VERSION=${MINOR_VERSION%%.*}
34 MICRO_VERSION=${GIT_VERSION##*.}
35 MICRO_VERSION=${MICRO_VERSION%%-*}
36 EXTRA_VERSION=${GIT_VERSION#*-}
37 EXTRA_VERSION=${EXTRA_VERSION%%-*}
39 if test \( "x$EXTRA_VERSION" != "x" -a `echo -n $EXTRA_VERSION | wc -c` -lt 5 \); then
40 VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}git${EXTRA_VERSION}
42 VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}
46 if test \( "x$EXTRA_RELEASE" != "x" \); then
47 VERSION=${VERSION}${EXTRA_RELEASE}${EXTRA_GTK2_VERSION}
54 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
55 dnl AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
56 dnl AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
59 AC_SUBST(MAJOR_VERSION)
60 AC_SUBST(MINOR_VERSION)
61 AC_SUBST(MICRO_VERSION)
62 AC_SUBST(EXTRA_VERSION)
65 AC_CHECK_PROG(HAVE_GTK_ICON_CACHE, gtk-update-icon-cache, yes, no)
66 AM_CONDITIONAL(UPDATE_GTK_ICON_CACHE, test x"$HAVE_GTK_ICON_CACHE" = xyes)
68 dnl Require pkg-config
69 m4_ifndef([PKG_PROG_PKG_CONFIG],
70 [m4_fatal([Could not locate the pkg-config autoconf macros. These
71 are usually located in /usr/share/aclocal/pkg.m4. If your macros
72 are in a different location, try setting the environment variable
73 ACLOCAL_FLAGS before running ./autogen.sh or autoreconf again. E.g.:
74 export ACLOCAL_FLAGS="-I/other/macro/dir"])
78 dnl libtool versioning
79 LT_RELEASE=$MAJOR_VERSION.$MINOR_VERSION
80 LT_CURRENT=`expr $MICRO_VERSION - $INTERFACE_AGE`
81 LT_REVISION=$INTERFACE_AGE
82 LT_AGE=`expr $BINARY_AGE - $INTERFACE_AGE`
88 dnl Specify a header configuration file
89 AC_CONFIG_HEADERS(config.h)
90 AC_CONFIG_HEADERS(claws-features.h)
94 dnl Checks for programs.
115 dnl ******************************
117 dnl Not needed anymore because we
118 dnl do AC_CANONICAL_SYSTEM above
119 dnl ******************************
120 dnl AC_CANONICAL_HOST
122 dnl Copied from the official gtk+-2 configure.in
123 AC_MSG_CHECKING([for host platform])
125 *-*-mingw*|*-*-cygwin*)
127 LDFLAGS="$LDFLAGS -mwindows -Wl,--export-all-symbols"
131 LDFLAGS="$LDFLAGS -Wl,-export_dynamic"
136 LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
139 AM_CONDITIONAL(PLATFORM_WIN32, test x"$platform_win32" = x"yes")
140 AM_CONDITIONAL(PLATFORM_OSX, test x"$platform_osx" = x"yes")
141 AC_MSG_RESULT([$host])
143 AC_MSG_CHECKING([for native Win32])
152 AC_MSG_RESULT([$os_win32])
153 AM_CONDITIONAL(OS_WIN32, test x"$os_win32" = x"yes")
155 AC_MSG_CHECKING([for Cygwin])
164 AC_MSG_RESULT([$env_cygwin])
165 AM_CONDITIONAL(CYGWIN, test x"$env_cygwin" = x"yes")
167 if test "$GCC" = "yes"
169 CFLAGS="$CFLAGS -Wno-unused-function"
170 #CFLAGS="-g -Wall -Wno-unused-function"
173 AC_MSG_CHECKING([if gcc supports -Wno-pointer-sign])
174 _gcc_cflags_save=$CFLAGS
175 CFLAGS="-Wno-pointer-sign"
176 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],_gcc_psign=yes,_gcc_psign=no)
177 AC_MSG_RESULT($_gcc_psign)
178 CFLAGS=$_gcc_cflags_save;
179 if test x"$_gcc_psign" = xyes ; then
180 CFLAGS="$CFLAGS -Wno-pointer-sign"
183 CFLAGS="$CFLAGS -Wall -D_GNU_SOURCE"
185 if test $USE_MAINTAINER_MODE = yes; then
186 CFLAGS="$CFLAGS -g -Wno-pointer-sign -DUSE_MAINTAINER_MODE"
192 CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
195 # Note that we need to link to pthread in all cases. This
196 # is because some locking is used even when pthread support is
199 CFLAGS="$CFLAGS -mms-bitfields"
200 LIBS="$LIBS -l${pthread_name} -lws2_32 -lregex"
203 CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
204 CFLAGS="$CFLAGS -std=gnu99 -DSOLARIS"
211 dnl floor and ceil are in -lm
215 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
218 LIBS="$LIBS $GTK_LIBS"
219 AC_CHECK_FUNCS(bind_textdomain_codeset)
223 ALL_LINGUAS="ca cs da de en_GB es fi fr hu id_ID it ja nb nl pl pt_BR ro ru sk sv tr zh_TW"
224 GETTEXT_PACKAGE=claws-mail
225 AC_SUBST(GETTEXT_PACKAGE)
226 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define text domain.])
228 AM_GNU_GETTEXT_VERSION([0.18])
229 AM_GNU_GETTEXT([external])
231 AC_ARG_ENABLE(manual,
232 [ --disable-manual Do not build user manual],
233 [enable_manual=$enableval], [enable_manual=yes])
236 [ --disable-libsm Do not build libSM support for session management],
237 [enable_libsm=$enableval], [enable_libsm=yes])
240 [ --disable-ipv6 Do not build IPv6 support],
241 [enable_ipv6=$enableval], [enable_ipv6=yes])
243 AC_ARG_ENABLE(gnutls,
244 [ --disable-gnutls Do not build GnuTLS support for SSL/TLS],
245 [enable_gnutls=$enableval], [enable_gnutls=yes])
247 AC_ARG_ENABLE(enchant,
248 [ --disable-enchant Do not build Enchant support for spell-checking],
249 [enable_enchant=$enableval], [enable_enchant=yes])
251 AC_ARG_ENABLE(crash-dialog,
252 [ --enable-crash-dialog Build crash dialog],
253 [enable_crash_dialog=$enableval], [enable_crash_dialog=no])
255 AC_ARG_ENABLE(generic-umpc,
256 [ --enable-generic-umpc Build generic UMPC code],
257 [enable_generic_umpc=$enableval], [enable_generic_umpc=no])
259 AC_ARG_ENABLE(compface,
260 [ --disable-compface Do not build compface support for X-Face],
261 [enable_compface=$enableval], [enable_compface=yes])
263 AC_ARG_ENABLE(pthread,
264 [ --disable-pthread Do not build pthread support],
265 [enable_pthread=$enableval], [enable_pthread=yes])
267 AC_ARG_ENABLE(startup-notification,
268 [ --disable-startup-notification Do not startup notification support],
269 [enable_startup_notification=$enableval], [enable_startup_notification=yes])
272 [ --disable-dbus Do not build DBUS support],
273 [enable_dbus=$enableval], [enable_dbus=yes])
276 [ --disable-ldap Do not build LDAP support],
277 [enable_ldap=$enableval], [enable_ldap=yes])
279 AC_ARG_ENABLE(jpilot,
280 [ --disable-jpilot Do not build JPilot support],
281 [enable_jpilot=$enableval], [enable_jpilot=yes])
283 AC_ARG_ENABLE(networkmanager,
284 [ --disable-networkmanager Do not build NetworkManager support],
285 [enable_networkmanager=$enableval], [enable_networkmanager=yes])
287 AC_ARG_ENABLE(libetpan,
288 [ --disable-libetpan Do not build libetpan support for IMAP4/NNTP],
289 [enable_libetpan=$enableval], [enable_libetpan=yes])
291 AC_ARG_ENABLE(valgrind,
292 [ --disable-valgrind Do not build valgrind support for debugging],
293 [enable_valgrind=$enableval], [enable_valgrind=yes])
295 AC_ARG_ENABLE(alternate-addressbook,
296 [ --enable-alternate-addressbook Build alternate external address book support],
297 [enable_alternate_addressbook=$enableval], [enable_alternate_addressbook=no])
300 [ --disable-svg Do not build SVG support],
301 [enable_svg=$enableval], [enable_svg=yes])
304 [ --enable-tests Build unit tests],
305 [enable_tests=$enableval], [enable_tests=no])
307 manualdir='${docdir}/manual'
308 AC_ARG_WITH(manualdir,
309 [ --with-manualdir=DIR Manual directory],
310 [manualdir="$withval"])
313 dnl ******************************
314 dnl ** Check for required tools **
315 dnl ** to build manuals **
316 dnl ******************************
318 AC_PATH_PROG(DOCBOOK2HTML, docbook2html)
319 AC_PATH_PROG(DOCBOOK2TXT, docbook2txt)
320 AC_PATH_PROG(DOCBOOK2PS, docbook2ps)
321 AC_PATH_PROG(DOCBOOK2PDF, docbook2pdf)
323 AM_CONDITIONAL(MANUAL_HTML, test -n "$DOCBOOK2HTML")
324 AM_CONDITIONAL(MANUAL_TXT, test -n "$DOCBOOK2TXT")
325 AM_CONDITIONAL(MANUAL_PDF, test -n "$DOCBOOK2PDF")
326 AM_CONDITIONAL(MANUAL_PS, test -n "$DOCBOOK2PS")
328 if test x"$enable_manual" = x"yes"; then
329 if test -n "$DOCBOOK2TXT" -o -n "$DOCBOOK2HTML" \
330 -o -n "$DOCBOOK2PS" -o -n "$DOCBOOK2PDF"; then
337 AM_CONDITIONAL(BUILD_MANUAL, test x"$enable_manual" = xyes)
339 dnl Set PACKAGE_DATA_DIR in config.h.
340 if test "x${datarootdir}" = 'x${prefix}/share'; then
341 if test "x${prefix}" = "xNONE"; then
342 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${ac_default_prefix}/share/${PACKAGE}",[PACKAGE_DATA_DIR])
344 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/share/${PACKAGE}",[PACKAGE_DATA_DIR])
347 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datarootdir}/${PACKAGE}",[PACKAGE_DATA_DIR])
350 AC_CHECK_LIB(xpg4, setlocale)
354 AC_MSG_CHECKING([whether to use LibSM])
355 if test x"$enable_libsm" = xyes; then
357 AC_CHECK_LIB(SM, SmcSaveYourselfDone,
358 [SM_LIBS="$X_LIBS -lSM -lICE"],enable_libsm=no,
360 AC_CHECK_HEADERS(X11/SM/SMlib.h,,enable_libsm=no)
361 if test x"$enable_libsm" = xyes; then
362 AC_DEFINE(HAVE_LIBSM, 1, [Define to 1 if you have libSM installed])
364 AC_MSG_RESULT(not found)
365 AC_MSG_WARN([*** LibSM will not be supported ***])
372 dnl Check for d_type member in struct dirent
373 AC_MSG_CHECKING([whether struct dirent has d_type member])
374 AC_CACHE_VAL(ac_cv_dirent_d_type,[
375 AC_TRY_COMPILE([#include <dirent.h>],
376 [struct dirent d; d.d_type = DT_REG;],
377 ac_cv_dirent_d_type=yes, ac_cv_dirent_d_type=no)
379 AC_MSG_RESULT($ac_cv_dirent_d_type)
380 if test $ac_cv_dirent_d_type = yes; then
381 AC_DEFINE(HAVE_DIRENT_D_TYPE, 1,
382 Define if `struct dirent' has `d_type' member.)
385 # Check whether mkdir does not take the permission argument.
386 GNUPG_FUNC_MKDIR_TAKES_ONE_ARG
388 dnl Checks for header files.
392 AC_CHECK_HEADERS(fcntl.h sys/file.h unistd.h paths.h \
393 sys/param.h sys/utsname.h sys/select.h \
394 wchar.h wctype.h locale.h netdb.h)
395 AC_CHECK_HEADER([execinfo.h], [AC_DEFINE(HAVE_BACKTRACE,1,[Has backtrace*() needed for retrieving stack traces])])
396 AC_SEARCH_LIBS(backtrace_symbols, [execinfo])
398 dnl Checks for typedefs, structures, and compiler characteristics.
405 dnl AC_CHECK_TYPE(wint_t, unsigned int) does not work because wint_t
406 dnl may be defined only in wchar.h (this happens with gcc-2.96).
407 dnl So we need to use this extended macro.
408 CLAWS_CHECK_TYPE(wint_t, unsigned int,
413 ], Define to `unsigned int' if <stddef.h> or <wchar.h> doesn't define.)
415 GNUPG_CHECK_TYPEDEF(u32, HAVE_U32_TYPEDEF, Used to test for a u32 typedef)
416 AC_CHECK_SIZEOF(unsigned short, 2)
417 AC_CHECK_SIZEOF(unsigned int, 4)
418 AC_CHECK_SIZEOF(unsigned long, 4)
420 dnl Checks for library functions.
422 AC_CHECK_FUNCS(gethostname mkdir mktime socket strstr strchr \
423 uname flock lockf inet_aton inet_addr \
424 fchmod mkstemp truncate getuid regcomp)
426 AC_CHECK_FUNCS(fgets_unlocked fgetc_unlocked fputs_unlocked fputc_unlocked fread_unlocked fwrite_unlocked feof_unlocked ferror_unlocked fmemopen)
428 dnl *****************
429 dnl ** common code **
430 dnl *****************
433 PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.28 gmodule-2.0 >= 2.28 gobject-2.0 >= 2.28 gthread-2.0 >= 2.28)
435 GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
436 AC_SUBST(GLIB_GENMARSHAL)
438 AC_SUBST(GLIB_CFLAGS)
441 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
443 LIBS="$LIBS $GTK_LIBS"
444 AC_CHECK_FUNCS(bind_textdomain_codeset)
447 dnl check for IPv6 option
448 dnl automated checks for IPv6 support.
449 AC_MSG_CHECKING([whether to use IPv6])
450 if test x"$enable_ipv6" = xyes; then
452 AC_MSG_CHECKING([for IPv6 support])
453 if test x"$platform_win32" = xyes; then
454 AC_CACHE_VAL(ac_cv_ipv6,[
456 #include <ws2tcpip.h>
457 ], [struct in6_addr a;],
458 ac_cv_ipv6=yes, ac_cv_ipv6=no)
461 AC_CACHE_VAL(ac_cv_ipv6,[
464 #include <sys/types.h>
465 #include <netinet/in.h>
466 ], [int x = IPPROTO_IPV6; struct in6_addr a;],
467 ac_cv_ipv6=yes, ac_cv_ipv6=no)
470 AC_MSG_RESULT($ac_cv_ipv6)
471 if test $ac_cv_ipv6 = yes; then
472 AC_DEFINE(INET6, 1, Define if you want IPv6 support.)
474 AC_MSG_WARN(*** IPv6 will not be supported ***)
482 AC_MSG_CHECKING([whether to use GnuTLS])
483 AC_MSG_RESULT($enable_gnutls)
484 if test "x$enable_gnutls" != "xno"; then
485 PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.2,
487 AC_DEFINE(USE_GNUTLS, 1, gnutls)
488 echo "Building with GnuTLS"
489 PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.11,
491 dnl No linking against libgcrypt needed
494 dnl linking against libgcrypt *is* needed
495 GNUTLS_LIBS="$GNUTLS_LIBS -lgcrypt"
499 echo "Building without GnuTLS"
500 AC_MSG_RESULT([*** GnuTLS support is recommended ])
501 AC_MSG_RESULT([*** You can use --disable-gnutls if you don't need it.])
502 AC_MSG_ERROR([GnuTLS not found])
504 AC_SUBST(GNUTLS_LIBS)
505 AC_SUBST(GNUTLS_CFLAGS)
508 PKG_CHECK_MODULES(NETTLE, nettle)
509 AC_SUBST(NETTLE_LIBS)
511 AC_ARG_WITH(passcrypt-key, [ --with-passcrypt-key=KEY Key used to encode passwords (8 byte string)],
512 with_passcrypt_key="$withval", with_passcrypt_key="passkey0")
513 AC_SUBST(PASSCRYPT_KEY, $with_passcrypt_key)
515 dnl RC dir (will be default at a certain point in time)
516 AC_ARG_WITH(config-dir, [ --with-config-dir=RCDIR Local configuration dir (default: .claws-mail)],
517 ac_cv_with_config_dir="$withval", ac_cv_with_config_dir="")
519 dnl Set correct default value based on platform
520 if test x"$ac_cv_with_config_dir" = x""; then
521 if test x"$platform_win32" = xyes; then
522 ac_cv_with_config_dir="Claws-mail"
524 ac_cv_with_config_dir=".claws-mail"
527 AC_DEFINE_UNQUOTED(CFG_RC_DIR, "$ac_cv_with_config_dir", Configuration directory)
529 AC_ARG_WITH(password-encryption, [ --with-password-encryption=PROVIDER Which cryptographic library to use for encrypting stored passwords (gnutls, old, default)],
530 pwd_crypto="$withval", pwd_crypto="default")
532 if test x"$pwd_crypto" = xdefault; then
533 if test x"$enable_gnutls" = xyes; then
534 if `$PKG_CONFIG --atleast-version=3.0 gnutls`; then
539 if test x"$pwd_crypto" = xdefault; then
545 if test x"$enable_gnutls" = xno; then
546 AC_MSG_ERROR([GnuTLS password encryption requested but GnuTLS is not available.])
548 if ! `$PKG_CONFIG --atleast-version=3.0 gnutls`; then
549 AC_MSG_ERROR([GnuTLS version at least 3.0 is required for password encryption.])
551 AC_DEFINE(PASSWORD_CRYPTO_GNUTLS, 1, Use GnuTLS for stored password encryption)
554 AC_DEFINE(PASSWORD_CRYPTO_OLD, 1, Use old insecure method for stored password encryption)
557 AC_MSG_ERROR([Unknown password encryption provider requested.])
562 dnl ************************
563 dnl ** GTK user interface **
564 dnl ************************
567 PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.24)
568 AC_ARG_ENABLE(deprecated,
569 [ --disable-deprecated Disable deprecated GTK functions],
570 [GTK_CFLAGS="$GTK_CFLAGS -DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"], [])
572 dnl Make sure the code does not regress to using deprecated GTK stuff...
573 GTK_CFLAGS="$GTK_CFLAGS -DGTK_DISABLE_SINGLE_INCLUDES -DGSEAL_ENABLE"
578 dnl enchant is used for spell checking
579 AC_MSG_CHECKING([whether to use enchant])
580 AC_MSG_RESULT($enable_enchant)
581 if test $enable_enchant = yes; then
582 PKG_CHECK_MODULES(ENCHANT, enchant >= 1.4.0,
584 AC_DEFINE(USE_ENCHANT, 1, enchant)
585 echo "Building with enchant"
589 PKG_CHECK_MODULES(ENCHANT, enchant-2 >= 2.0.0,
591 AC_DEFINE(USE_ENCHANT, 1, enchant-2)
592 echo "Building with enchant-2"
596 echo "Building without enchant-notification"
600 AC_SUBST(ENCHANT_CFLAGS)
601 AC_SUBST(ENCHANT_LIBS)
604 dnl want crash dialog
605 if test $enable_crash_dialog = yes; then
606 dnl check if GDB is somewhere
607 AC_CHECK_PROG(enable_crash_dialog, gdb, yes, no)
608 AC_MSG_CHECKING([whether to use crash dialog])
609 if test $enable_crash_dialog = yes; then
610 AC_DEFINE(CRASH_DIALOG, 1, Pop up crash dialog)
612 AC_MSG_RESULT($enable_crash_dialog)
616 if test $enable_generic_umpc = yes; then
617 AC_DEFINE(GENERIC_UMPC, 1, Generic UMPC code)
618 AC_MSG_RESULT($enable_generic_umpc)
621 dnl Check for X-Face support
622 AC_MSG_CHECKING([whether to use compface])
623 if test x"$enable_compface" = xyes; then
625 AC_CHECK_LIB(compface, uncompface,
626 [AC_DEFINE(HAVE_LIBCOMPFACE, 1, Define if you want compface support.)],
627 [enable_compface=no])
628 if test x"$enable_compface" = xyes; then
629 COMPFACE_LIBS="-lcompface"
633 AC_SUBST(COMPFACE_LIBS)
638 dnl check for pthread support
639 AC_MSG_CHECKING([whether to use pthread])
640 if test x$enable_pthread = xno; then
645 # For W32 we need to use a special ptrhead lib. In this case we can't
646 # use AC_CHECK_LIB because it has no means of checking for a
647 # library installed under a different name. Checking for the
649 if test -n "${pthread_name}" ; then
652 AC_CHECK_LIB(pthread, pthread_create, :, enable_pthread=no)
654 AC_CHECK_HEADERS(pthread.h, :, enable_pthread=no)
656 if test x$enable_pthread = xyes; then
657 AC_DEFINE(USE_PTHREAD, 1, Define if you have pthread)
658 if test -z "${pthread_name}" ; then
659 PTHREAD_LIBS="-lpthread"
664 AC_SUBST(PTHREAD_LIBS)
667 dnl Check whether we need to pass -lresolv
668 dnl We know that we don't need it for W32.
670 if test x$os_win32 = xno; then
673 ac_cv_var__res_options=no
674 AC_TRY_LINK([#include <sys/types.h>
675 #include <sys/socket.h>
676 #include <netinet/in.h>
677 #include <arpa/nameser.h>
678 #include <resolv.h>],
679 [_res.options = RES_INIT;],
680 ac_cv_var__res_options=yes);
681 if test "$ac_cv_var__res_options" != "yes"; then
686 if test "x$LIBRESOLV" = "x"; then
687 AC_CHECK_LIB(resolv, res_query, [LIBRESOLV=-lresolv])
693 LIBS="$LIBS $LIBRESOLV"
695 dnl #######################################################################
696 dnl # Check for startup notification
697 dnl #######################################################################
698 if test "x$enable_startup_notification" = "xyes"; then
699 PKG_CHECK_MODULES(STARTUP_NOTIFICATION, libstartup-notification-1.0 >= 0.5,
701 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, [Define if we're using libstartup-notification.])
702 echo "Building with libstartup-notification"
703 enable_startup_notification=yes
706 echo "Building without libstartup-notification"
707 enable_startup_notification=no
710 AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
711 AC_SUBST(STARTUP_NOTIFICATION_LIBS)
714 dnl #######################################################################
715 dnl # Check for D-Bus support
716 dnl #######################################################################
717 if test "x$enable_dbus" = "xyes"; then
718 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.60, dbus-glib-1 >= 0.60],
720 AC_DEFINE(HAVE_DBUS_GLIB, 1, [Define if glib bindings of D-Bus are available])
724 echo "D-Bus requirements not met. D-Bus support not activated."
727 AC_SUBST(DBUS_CFLAGS)
731 dnl #######################################################################
732 dnl # Configure address book support
733 dnl #######################################################################
735 dnl #######################################################################
736 dnl # Check for alternate address book support
737 dnl #######################################################################
738 AC_MSG_CHECKING([whether DBUS support for alternate address book is present])
739 if test x"$enable_dbus" = xyes; then
741 AC_MSG_CHECKING([whether to enable alternate address book])
742 if test x"$enable_alternate_addressbook" = xyes; then
744 PKG_CHECK_MODULES(CONTACTS, [claws-contacts],
746 AC_DEFINE(USE_ALT_ADDRBOOK, 1, [Define if alternate address book is to be activated.])
747 enable_alternate_addressbook=yes
748 AC_SUBST(CONTACTS_CFLAGS)
749 AC_SUBST(CONTACTS_LIBS)
752 enable_alternate_addressbook=no
756 enable_alternate_addressbook=no
760 enable_alternate_addressbook=no
763 dnl #######################################################################
764 dnl # Check for old address book support
765 dnl #######################################################################
766 if test x"$enable_alternate_addressbook" = xno; then
767 dnl for LDAP support in addressbook
768 dnl no check for libraries; dynamically loaded
769 AC_MSG_CHECKING([whether to use LDAP])
770 if test x"$enable_ldap" = xno; then
772 elif test x"$enable_ldap" = xyes -a x"$enable_pthread" = xno; then
773 AC_MSG_RESULT(no - LDAP support needs pthread support)
776 elif test x"$platform_win32" = xyes; then
778 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
779 LDAP_LIBS="-lwldap32"
784 dnl check for available libraries, and pull them in
785 AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="$LDAP_LIBS -lresolv")
786 AC_CHECK_LIB(socket, bind, LDAP_LIBS="$LDAP_LIBS -lsocket")
787 AC_CHECK_LIB(nsl, gethostbyaddr, LDAP_LIBS="$LDAP_LIBS -lnsl")
788 AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="$LDAP_LIBS -llber",,
791 AC_CHECK_HEADERS(ldap.h lber.h,
795 if test "$enable_ldap" = yes; then
796 AC_CHECK_LIB(ldap, ldap_open,
801 AC_CHECK_LIB(ldap, ldap_start_tls_s,
802 [ ac_cv_have_tls=yes ],
803 [ ac_cv_have_tls=no ])
807 AC_MSG_CHECKING([whether ldap library is available])
808 AC_MSG_RESULT($enable_ldap)
810 AC_MSG_CHECKING([whether TLS library is available])
811 AC_MSG_RESULT($ac_cv_have_tls)
813 if test "$enable_ldap" = yes; then
814 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
815 LDAP_LIBS="$LDAP_LIBS -lldap"
817 if test "$ac_cv_have_tls" = yes; then
818 AC_DEFINE(USE_LDAP_TLS, 1, Define if you want LDAP TLS support in addressbook.)
820 dnl As of OpenLDAP API version 3000 a number of functions has
821 dnl been deprecated. As Claws-mail compiles and runs on many
822 dnl platforms and many versions of OpenLDAP we need to be able
823 dnl to switch between the old and new API because new API has
824 dnl added new functions replacing old ones and at the same time
825 dnl old functions has been changed.
826 dnl If cross-compiling defaults to enable deprecated features
827 dnl for maximum portability
828 AC_MSG_CHECKING([The API version of OpenLDAP])
832 [if (LDAP_API_VERSION >= 3000)
835 [AC_MSG_RESULT([version < 3000])
836 AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)],
837 [AC_MSG_RESULT([version >= 3000])
838 AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 1, Define if OpenLDAP API is at least version 3000.)],
839 [AC_MSG_RESULT([Enabling deprecated features in OpenLDAP])
840 AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)
841 AC_DEFINE(LDAP_DEPRECATED, 1, Define to activate deprecated features in OpenLDAP)]
846 dnl for JPilot support in addressbook
847 dnl no check for libraries; these are dynamically loaded
848 AC_MSG_CHECKING([whether to use JPilot])
849 if test "$enable_jpilot" = yes; then
851 AC_CHECK_HEADERS(pi-args.h pi-appinfo.h pi-address.h pi-version.h,
852 [ AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ],
853 [ enable_jpilot=no ])
854 if test "$enable_jpilot" = no; then
855 AC_CHECK_HEADERS(libpisock/pi-args.h libpisock/pi-appinfo.h libpisock/pi-address.h libpisock/pi-version.h,
857 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ])
860 AC_CHECK_LIB(pisock, unpack_Address, [JPILOT_LIBS="-lpisock"], [JPILOT_LIBS="" enable_jpilot="no"])
861 if test x"$enable_jpilot" = xyes; then
862 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.)
864 AC_MSG_NOTICE([JPilot support not available])
866 AC_SUBST(JPILOT_LIBS)
872 AM_CONDITIONAL(BUILD_ALTADDRBOOK, test x"$enable_alternate_addressbook" = x"yes")
874 dnl #######################################################################
875 dnl # Check for NetworkManager support
876 dnl #######################################################################
877 if test x"$enable_dbus" = xyes; then
878 if test x"$enable_networkmanager" = xyes; then
879 PKG_CHECK_MODULES(NETWORKMANAGER_SUPPORT, libnm,
881 AC_DEFINE(HAVE_NETWORKMANAGER_SUPPORT, 1, [Define if NetworkManager support is to be included.])
882 echo "Building with NetworkManager support"
883 enable_networkmanager=yes
886 echo "NetworkManager not found."
887 enable_networkmanager=no
889 AC_SUBST(NETWORKMANAGER_SUPPORT_CFLAGS)
892 echo "NetworkManager support deactivated as D-Bus requirements were not met."
893 enable_networkmanager=no
897 AC_MSG_CHECKING([whether to use libetpan])
898 if test x"$enable_libetpan" = xyes; then
901 AC_PATH_PROG(libetpanconfig, [libetpan-config])
902 if test "x$libetpanconfig" != "x"; then
903 CPPFLAGS="$CPPFLAGS `$libetpanconfig --cflags 2>/dev/null`"
904 AC_CHECK_HEADER(libetpan/libetpan.h, [libetpan_result=yes])
905 if test "x$libetpan_result" = "xyes"; then
906 AC_MSG_CHECKING([whether libetpan-config hints compiles and links fine])
907 LIBS="$LIBS `$libetpanconfig --libs 2>/dev/null`"
908 AC_TRY_LINK([#include <libetpan/dbstorage.h>], [db_mailstorage_init(NULL, NULL);], [libetpan_result=yes], [libetpan_result=no])
909 AC_MSG_RESULT([$libetpan_result])
912 if test "x$libetpan_result" = "xyes"; then
913 LIBETPAN_CPPFLAGS="`$libetpanconfig --cflags`"
914 LIBETPAN_LIBS="`$libetpanconfig --libs`"
915 LIBETPAN_VERSION=`$libetpanconfig --version | $AWK -F. '{printf "%d", ($1 * 100) + $2}'`
916 if test "$LIBETPAN_VERSION" -lt "57"; then
917 AC_MSG_RESULT([*** Claws Mail requires libetpan 0.57 or newer. See http://www.etpan.org/])
918 AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 and/or NNTP support.])
919 AC_MSG_ERROR([libetpan 0.57 not found])
921 AC_SUBST(LIBETPAN_FLAGS)
922 AC_SUBST(LIBETPAN_LIBS)
923 AC_DEFINE(HAVE_LIBETPAN, 1, Define if you want IMAP and/or NNTP support.)
925 AC_MSG_RESULT([*** Claws Mail requires libetpan 0.57 or newer. See http://www.etpan.org/ ])
926 AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 and/or NNTP support.])
927 AC_MSG_ERROR([libetpan 0.57 not found])
932 AM_CONDITIONAL(CLAWS_LIBETPAN, test "x$libetpan_result" = "xyes")
935 AC_MSG_CHECKING([whether to use librsvg])
936 if test x"$enable_svg" = xyes; then
938 PKG_CHECK_MODULES([SVG], [librsvg-2.0 >= 2.39.0 cairo >= 1.0.0],
942 AC_DEFINE(HAVE_SVG, 1, [Define if librsvg2 is available for SVG support])
946 AC_MSG_NOTICE([SVG support deactivated as librsvg2 >= 2.39.0 was not found])
953 AC_MSG_CHECKING([whether to use valgrind])
954 if test x$enable_valgrind = xyes; then
956 PKG_CHECK_MODULES(VALGRIND, valgrind >= 2.4.0,
957 enable_valgrind=yes, enable_valgrind=no)
958 if test x"$enable_valgrind" = xyes; then
959 AC_DEFINE(HAVE_VALGRIND, 1, Define if you want valgrind support)
961 AC_MSG_RESULT(not found)
966 AM_CONDITIONAL(CLAWS_VALGRIND, test x"$enable_valgrind" = x"yes")
968 AC_MSG_CHECKING([whether to build unit tests])
969 if test x$enable_tests = xyes; then
974 AM_CONDITIONAL(BUILD_TESTS, test "x$enable_tests" = "xyes")
976 dnl *************************
977 dnl ** section for plugins **
978 dnl *************************
982 MISSING_DEPS_PLUGINS=""
984 dnl First we set the enabled status - either enabled (yes), auto-enabled (auto)
985 dnl or (auto-)disabled (no for both)
987 dnl All plugins are auto-enabled except for Demo which is just there to help
988 dnl potential plugins writers.
990 AC_ARG_ENABLE(acpi_notifier-plugin,
991 [ --disable-acpi_notifier-plugin Do not build acpi_notifier plugin],
992 [enable_acpi_notifier_plugin=$enableval], [enable_acpi_notifier_plugin=auto])
994 AC_ARG_ENABLE(address_keeper-plugin,
995 [ --disable-address_keeper-plugin Do not build address_keeper plugin],
996 [enable_address_keeper_plugin=$enableval], [enable_address_keeper_plugin=auto])
998 AC_ARG_ENABLE(archive-plugin,
999 [ --disable-archive-plugin Do not build archive plugin],
1000 [enable_archive_plugin=$enableval], [enable_archive_plugin=auto])
1002 AC_ARG_ENABLE(att_remover-plugin,
1003 [ --disable-att_remover-plugin Do not build att_remover plugin],
1004 [enable_att_remover_plugin=$enableval], [enable_att_remover_plugin=auto])
1006 AC_ARG_ENABLE(attachwarner-plugin,
1007 [ --disable-attachwarner-plugin Do not build attachwarner plugin],
1008 [enable_attachwarner_plugin=$enableval], [enable_attachwarner_plugin=auto])
1010 AC_ARG_ENABLE(bogofilter-plugin,
1011 [ --disable-bogofilter-plugin Do not build bogofilter plugin],
1012 [enable_bogofilter_plugin=$enableval], [enable_bogofilter_plugin=auto])
1014 AC_ARG_ENABLE(bsfilter-plugin,
1015 [ --disable-bsfilter-plugin Do not build bsfilter plugin],
1016 [enable_bsfilter_plugin=$enableval], [enable_bsfilter_plugin=auto])
1018 AC_ARG_ENABLE(clamd-plugin,
1019 [ --disable-clamd-plugin Do not build clamd plugin],
1020 [enable_clamd_plugin=$enableval], [enable_clamd_plugin=auto])
1022 AC_ARG_ENABLE(dillo-plugin,
1023 [ --disable-dillo-plugin Do not build dillo plugin],
1024 [enable_dillo_plugin=$enableval], [enable_dillo_plugin=auto])
1026 AC_ARG_ENABLE(fancy-plugin,
1027 [ --disable-fancy-plugin Do not build fancy plugin],
1028 [enable_fancy_plugin=$enableval], [enable_fancy_plugin=auto])
1030 AC_ARG_ENABLE(fetchinfo-plugin,
1031 [ --disable-fetchinfo-plugin Do not build fetchinfo plugin],
1032 [enable_fetchinfo_plugin=$enableval], [enable_fetchinfo_plugin=auto])
1034 AC_ARG_ENABLE(gdata-plugin,
1035 [ --disable-gdata-plugin Do not build gdata plugin],
1036 [enable_gdata_plugin=$enableval], [enable_gdata_plugin=auto])
1038 AC_ARG_ENABLE(libravatar-plugin,
1039 [ --disable-libravatar-plugin Do not build libravatar plugin],
1040 [enable_libravatar_plugin=$enableval], [enable_libravatar_plugin=auto])
1042 AC_ARG_ENABLE(mailmbox-plugin,
1043 [ --disable-mailmbox-plugin Do not build mailmbox plugin],
1044 [enable_mailmbox_plugin=$enableval], [enable_mailmbox_plugin=auto])
1046 AC_ARG_ENABLE(managesieve-plugin,
1047 [ --disable-managesieve-plugin Do not build managesieve plugin],
1048 [enable_managesieve_plugin=$enableval], [enable_managesieve_plugin=auto])
1050 AC_ARG_ENABLE(newmail-plugin,
1051 [ --disable-newmail-plugin Do not build newmail plugin],
1052 [enable_newmail_plugin=$enableval], [enable_newmail_plugin=auto])
1054 AC_ARG_ENABLE(notification-plugin,
1055 [ --disable-notification-plugin Do not build notification plugin],
1056 [enable_notification_plugin=$enableval], [enable_notification_plugin=auto])
1058 AC_ARG_ENABLE(pdf_viewer-plugin,
1059 [ --disable-pdf_viewer-plugin Do not build pdf_viewer plugin],
1060 [enable_pdf_viewer_plugin=$enableval], [enable_pdf_viewer_plugin=auto])
1062 AC_ARG_ENABLE(perl-plugin,
1063 [ --disable-perl-plugin Do not build perl plugin],
1064 [enable_perl_plugin=$enableval], [enable_perl_plugin=auto])
1066 AC_ARG_ENABLE(python-plugin,
1067 [ --disable-python-plugin Do not build python plugin],
1068 [enable_python_plugin=$enableval], [enable_python_plugin=auto])
1070 AC_ARG_ENABLE(pgpcore-plugin,
1071 [ --disable-pgpcore-plugin Do not build pgpcore plugin],
1072 [enable_pgpcore_plugin=$enableval], [enable_pgpcore_plugin=auto])
1074 AC_ARG_ENABLE(pgpmime-plugin,
1075 [ --disable-pgpmime-plugin Do not build pgpmime plugin],
1076 [enable_pgpmime_plugin=$enableval], [enable_pgpmime_plugin=auto])
1078 AC_ARG_ENABLE(pgpinline-plugin,
1079 [ --disable-pgpinline-plugin Do not build pgpinline plugin],
1080 [enable_pgpinline_plugin=$enableval], [enable_pgpinline_plugin=auto])
1082 AC_ARG_ENABLE(rssyl-plugin,
1083 [ --disable-rssyl-plugin Do not build rssyl plugin],
1084 [enable_rssyl_plugin=$enableval], [enable_rssyl_plugin=auto])
1086 AC_ARG_ENABLE(smime-plugin,
1087 [ --disable-smime-plugin Do not build smime plugin],
1088 [enable_smime_plugin=$enableval], [enable_smime_plugin=auto])
1090 AC_ARG_ENABLE(spamassassin-plugin,
1091 [ --disable-spamassassin-plugin Do not build spamassassin plugin],
1092 [enable_spamassassin_plugin=$enableval], [enable_spamassassin_plugin=auto])
1094 AC_ARG_ENABLE(spam_report-plugin,
1095 [ --disable-spam_report-plugin Do not build spam_report plugin],
1096 [enable_spam_report_plugin=$enableval], [enable_spam_report_plugin=auto])
1098 AC_ARG_ENABLE(tnef_parse-plugin,
1099 [ --disable-tnef_parse-plugin Do not build tnef_parse plugin],
1100 [enable_tnef_parse_plugin=$enableval], [enable_tnef_parse_plugin=auto])
1102 AC_ARG_ENABLE(vcalendar-plugin,
1103 [ --disable-vcalendar-plugin Do not build vcalendar plugin],
1104 [enable_vcalendar_plugin=$enableval], [enable_vcalendar_plugin=auto])
1106 dnl disabled by default
1107 AC_ARG_ENABLE(demo-plugin,
1108 [ --enable-demo-plugin Build demo plugin],
1109 [enable_demo_plugin=$enableval], [enable_demo_plugin=no])
1112 dnl Then we check (unconditionnaly) for plugins dependencies
1113 dnl Some dependencies are optional, some mandatory. This is taken care of
1116 dnl During this dependancy check we do the checks themselves, define HAVE_X to
1117 dnl either yes or no, and do the AC_SUBST calls.
1119 dnl Archive: libarchive
1120 dnl Fancy: Webkit, curl, optionally libsoup-gnome
1122 dnl Libravatar: libcurl
1123 dnl Notification: optionally libnotify unity/messaging-menu
1124 dnl libcanberra_gtk hotkey
1125 dnl Pdf-Viewer: libpoppler
1127 dnl PGP/Core: libgpgme
1128 dnl PGP/Mime: pgpcore libgpgme
1129 dnl PGP/Inline: pgpcore libgpgme
1130 dnl S/Mime: pgpcore libgpgme
1132 dnl RSSyl: expat libcurl
1133 dnl SpamReport: libcurl
1134 dnl vCalendar: libcurl, libical
1135 dnl tnef_parse: libytnef
1137 dnl libcurl ********************************************************************
1138 PKG_CHECK_MODULES(CURL, libcurl, HAVE_CURL=yes, HAVE_CURL=no)
1140 AC_SUBST(CURL_CFLAGS)
1142 dnl expat **********************************************************************
1143 PKG_CHECK_MODULES(EXPAT, expat, HAVE_EXPAT=yes, HAVE_EXPAT=no)
1145 if test x"$HAVE_EXPAT" = xno; then
1146 AC_CHECK_HEADER(expat.h, [expat_header=yes], [expat_header=no])
1147 AC_CHECK_LIB(expat, XML_ParserCreate, [expat_lib=yes], [expat_lib=no])
1148 if test x"$expat_header" = xyes -a x"$expat_lib"=xyes; then
1151 EXPAT_LIBS="-lexpat"
1155 AC_SUBST(EXPAT_CFLAGS)
1156 AC_SUBST(EXPAT_LIBS)
1158 dnl webkit *********************************************************************
1159 PKG_CHECK_MODULES(WEBKIT, webkit-1.0 >= 1.10.0, HAVE_WEBKIT=yes, HAVE_WEBKIT=no)
1160 AC_SUBST(WEBKIT_LIBS)
1161 AC_SUBST(WEBKIT_CFLAGS)
1163 dnl libsoup ********************************************************************
1164 PKG_CHECK_MODULES(LIBSOUP, libsoup-2.4, HAVE_LIBSOUP=yes, HAVE_LIBSOUP=no)
1165 if test x"$HAVE_LIBSOUP" = xyes; then
1166 AC_DEFINE(HAVE_LIBSOUP, 1, [Define if libsoup is available])
1168 AC_SUBST(LIBSOUP_CFLAGS)
1169 AC_SUBST(LIBSOUP_LIBS)
1171 dnl libsoup-gnome **************************************************************
1172 PKG_CHECK_MODULES(LIBSOUP_GNOME, libsoup-gnome-2.4 >= 2.26, HAVE_LIBSOUP_GNOME=yes, HAVE_LIBSOUP_GNOME=no)
1173 if test x"$HAVE_LIBSOUP_GNOME" = xyes; then
1174 AC_DEFINE(HAVE_LIBSOUP_GNOME, 1, [Define if libsoup_gnome is available])
1176 AC_SUBST(LIBSOUP_GNOME_CFLAGS)
1177 AC_SUBST(LIBSOUP_GNOME_LIBS)
1179 dnl libarchive *****************************************************************
1180 PKG_CHECK_MODULES(LIBARCHIVE, libarchive, HAVE_ARCHIVE=yes, HAVE_ARCHIVE=no)
1181 AC_SUBST(ARCHIVE_LIBS)
1182 AC_SUBST(ARCHIVE_CFLAGS)
1183 AC_CHECK_LIB([archive], [archive_read_new],
1184 ARCHIVE_LIBS=-larchive
1186 AC_SUBST(ARCHIVE_LIBS,$ARCHIVE_CFLAGS),
1190 dnl libgdata *******************************************************************
1191 PKG_CHECK_MODULES(GDATA, libgdata >= 0.17.2, HAVE_GDATA=yes, HAVE_GDATA=no)
1192 AC_SUBST(GDATA_CFLAGS)
1193 AC_SUBST(GDATA_LIBS)
1195 dnl libical ********************************************************************
1196 PKG_CHECK_MODULES(LIBICAL, libical >= 2.0, HAVE_LIBICAL=yes, HAVE_LIBICAL=no)
1197 AC_SUBST(LIBICAL_CFLAGS)
1198 AC_SUBST(LIBICAL_LIBS)
1200 dnl Poppler ********************************************************************
1201 PKG_CHECK_MODULES(POPPLER, poppler-glib >= 0.12.0, HAVE_POPPLER=yes, HAVE_POPPLER=no)
1202 AC_SUBST(POPPLER_LIBS)
1203 AC_SUBST(POPPLER_CFLAGS)
1205 dnl check for Poppler extra features that we conditionally support
1206 if test x"$HAVE_POPPLER" = xyes; then
1208 CFLAGS="$POPPLER_CFLAGS $GTK_CFLAGS $GLIB_CFLAGS"
1209 AC_CHECK_DECL(POPPLER_DEST_NAMED,
1210 [AC_DEFINE([HAVE_POPPLER_DEST_NAMED], [], [Description])],
1211 ,[#include <poppler-action.h>])
1212 AC_CHECK_DECL(POPPLER_DEST_XYZ,
1213 [AC_DEFINE([HAVE_POPPLER_DEST_XYZ], [], [Description])],
1214 ,[#include <poppler-action.h>])
1218 dnl perl ***********************************************************************
1219 AC_CHECK_PROG(HAVE_PERL, perl, yes, no)
1220 if test x"$HAVE_PERL" = xyes; then
1221 AC_MSG_CHECKING(for perl >= 5.8.0)
1222 PERL_VER=`perl -e 'print $] > 5.0079999?"yes":"no"'`
1223 if test "$PERL_VER" = "yes"; then
1230 if test x"$HAVE_PERL" = xyes; then
1231 AC_MSG_CHECKING(for Perl compile flags)
1232 PERL_CFLAGS=`perl -MExtUtils::Embed -e ccopts`
1233 PERL_CFLAGS=`echo $PERL_CFLAGS | sed 's/-D_FILE_OFFSET_BITS=[[0-9]]*//'`
1234 PERL_LDFLAGS=`perl -MExtUtils::Embed -e ldopts |sed 's/-lgdbm\>//'`
1235 PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-ldb\>//'`
1236 PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-lndbm\>//'`
1237 PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-lc\>//'`
1239 AC_MSG_NOTICE([Adding perl LIBS ${PERL_CFLAGS}])
1241 if test x"$HAVE_PERL" = xyes; then
1242 AC_CHECK_LIB(perl,perl_alloc,[AC_DEFINE(HAVE_LIBPERL, 1, Check for libperl.)],
1243 [ HAVE_LIBPERL=no ])
1245 if test x"$HAVE_LIBPERL" = xno; then
1246 LIBPERL_PREFIX=`perl -MExtUtils::Embed -e perl_inc`
1247 LIBPERL_PREFIX=`echo $LIBPERL_PREFIX |sed 's/-I//'`
1248 AC_MSG_CHECKING([for libperl.so])
1249 if test -f "$LIBPERL_PREFIX/libperl.so"; then
1258 AC_SUBST(PERL_CFLAGS)
1259 AC_SUBST(PERL_LDFLAGS)
1262 dnl Gpgme **********************************************************************
1263 AM_PATH_GPGME(1.0.0, HAVE_GPGME=yes, HAVE_GPGME=no)
1264 if test x"$HAVE_GPGME" = xyes; then
1265 AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.)
1266 AM_PATH_GPGME(1.1.1, AC_DEFINE(HAVE_GPGME_PKA_TRUST, 1, [Define if GPGME supports PKA.]))
1269 dnl Python *********************************************************************
1270 AM_PATH_PYTHON([2.5], [
1271 AC_PATH_PROG(PYTHON_CONFIG, python$PYTHON_VERSION-config)
1272 if test x"$PYTHON_CONFIG" = x"" ; then
1273 AC_PATH_PROG(PYTHON_CONFIG, python-config)
1275 if test x"$PYTHON_CONFIG" != x""; then
1276 PYTHON_CFLAGS=`$PYTHON_CONFIG --includes`
1277 PYTHON_LIBS=`$PYTHON_CONFIG --libs`
1278 PYTHON_PREFIX=`$PYTHON_CONFIG --prefix`
1281 AC_MSG_WARN(python-config not found. Maybe you need to install development packages for Python.)
1285 if test x"$HAVE_PYTHON" = xyes; then
1287 if test x"$platform_win32" = xno; then
1289 PYTHON_SHARED_LIB="libpython${PYTHON_VERSION}.so"
1290 AC_CHECK_LIB(dl, dlopen, [LIBS="-ldl"])
1291 AC_MSG_CHECKING([whether to dlopen $PYTHON_SHARED_LIB works])
1295 #define PYTHON_SO_FILE "${PYTHON_SHARED_LIB}"
1297 [if (!dlopen(PYTHON_SO_FILE, RTLD_NOW | RTLD_GLOBAL)) return 1; return 0;])
1299 [found_libpython_so="yes"],
1300 [found_libpython_so="no"],
1301 [AC_MSG_FAILURE([cross-compiling not supported])])
1303 if test x"$found_libpython_so" != x"yes"; then
1305 AC_MSG_WARN(Could not find Python shared libary: ${PYTHON_SHARED_LIB}. Maybe you need to install development packages for Python.)
1312 if test x"$HAVE_PYTHON" = xyes; then
1313 PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= 2.10.3, [AC_DEFINE(ENABLE_PYTHON, [1], [Enable Python support])], HAVE_PYTHON=no)
1316 AC_SUBST(PYTHON_SHARED_LIB)
1317 AC_SUBST(PYTHON_CFLAGS)
1318 AC_SUBST(PYTHON_LIBS)
1319 AC_SUBST(PYGTK_CFLAGS)
1320 AC_SUBST(PYGTK_LIBS)
1322 dnl libnotify ******************************************************************
1323 PKG_CHECK_MODULES(libnotify, libnotify >= 0.4.3, HAVE_LIBNOTIFY=yes, HAVE_LIBNOTIFY=no)
1324 if test x"$HAVE_LIBNOTIFY" = xyes; then
1325 AC_DEFINE(HAVE_LIBNOTIFY, 1, [Define if libnotify support is enabled])
1327 AC_SUBST(libnotify_CFLAGS)
1328 AC_SUBST(libnotify_LIBS)
1330 dnl libcanberra-gtk ************************************************************
1331 PKG_CHECK_MODULES(libcanberra_gtk, libcanberra-gtk >= 0.6, HAVE_LIBCANBERRA_GTK=yes, HAVE_LIBCANBERRA_GTK=no)
1332 if test x"$HAVE_LIBCANBERRA_GTK" = xyes; then
1333 AC_DEFINE(HAVE_LIBCANBERRA_GTK, 1, [Define if libcanberra-gtk support is enabled])
1335 AC_SUBST(libcanberra_gtk_CFLAGS)
1336 AC_SUBST(libcanberra_gtk_LIBS)
1338 dnl unity/messaging-menu *******************************************************
1339 PKG_CHECK_MODULES(unity, unity messaging-menu, HAVE_UNITY=yes, HAVE_UNITY=no)
1340 if test x"$HAVE_UNITY" = xyes; then
1341 AC_DEFINE(NOTIFICATION_INDICATOR, 1, [Activate support for unity and messaging-menu])
1343 AC_SUBST(unity_CFLAGS)
1344 AC_SUBST(unity_LIBS)
1346 dnl hotkeys ********************************************************************
1347 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)
1348 if test x"$HAVE_HOTKEYS" = xyes; then
1349 AC_DEFINE(NOTIFICATION_HOTKEYS, 1, Activate support for global hotkeys)
1351 AC_SUBST(CM_NP_HOTKEY_CFLAGS)
1352 AC_SUBST(CM_NP_HOTKEY_LIBS)
1354 dnl libytnef *******************************************************************
1358 # Check both ytnef.h and libytnef/ytnef.h, and adjust YTNEF_CFLAGS
1360 AC_CHECK_HEADER(ytnef.h, [have_ytnef=1], [have_ytnef=0])
1361 if test $have_ytnef -eq 0; then
1362 AC_CHECK_HEADER(libytnef/ytnef.h,
1364 YTNEF_CFLAGS="${YTNEF_CFLAGS} -DYTNEF_H_SUBDIR"],
1367 if test $have_ytnef -eq 1; then
1368 AC_MSG_CHECKING([how libytnef's SwapDDWord() should be called])
1369 # Now we have to figure out which libytnef version we're using,
1370 # based on whether SwapDDWord takes one argument or two.
1371 if test "x${YTNEF_CFLAGS}" = "x"; then
1372 ytnef_include="#include <ytnef.h>"
1374 ytnef_include="#include <libytnef/ytnef.h>"
1376 AC_TRY_COMPILE([#include <stdio.h>
1378 [SwapDDWord(0, 0);],
1381 if test $have_ytnef -eq 0; then
1382 AC_TRY_COMPILE([#include <stdio.h>
1386 YTNEF_CFLAGS="${YTNEF_CFLAGS} -DYTNEF_OLD_SWAPDDWORD"],
1389 if test $have_ytnef -eq 1; then
1390 YTNEF_LIBS="-lytnef"
1393 AC_MSG_RESULT(no idea, unsupported libytnef version?)
1396 AC_SUBST(YTNEF_CFLAGS)
1397 AC_SUBST(YTNEF_LIBS)
1399 dnl Third, we now cross the requested plugins and the available dependencies
1400 dnl If some dependencies are missing and the plugin was explicitely enabled,
1401 dnl we error out, else we only inform.
1403 AC_MSG_CHECKING([whether to build acpi_notifier plugin])
1404 if test x"$enable_acpi_notifier_plugin" != xno; then
1405 PLUGINS="$PLUGINS acpi_notifier"
1408 DISABLED_PLUGINS="$DISABLED_PLUGINS acpi_notifier"
1412 AC_MSG_CHECKING([whether to build address_keeper plugin])
1413 if test x"$enable_address_keeper_plugin" != xno; then
1414 PLUGINS="$PLUGINS address_keeper"
1417 DISABLED_PLUGINS="$DISABLED_PLUGINS address_keeper"
1421 AC_MSG_CHECKING([whether to build archive plugin])
1422 if test x"$enable_archive_plugin" != xno; then
1423 dependencies_missing=""
1425 if test x"$HAVE_ARCHIVE" = xno; then
1426 dependencies_missing="libarchive $dependencies_missing"
1429 if test x"$dependencies_missing" = x; then
1430 PLUGINS="$PLUGINS archive"
1432 elif test x"$enable_archive_plugin" = xauto; then
1434 AC_MSG_WARN("Plugin archive will not be built; missing $dependencies_missing")
1435 enable_archive_plugin=no
1436 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS archive"
1439 AC_MSG_ERROR("Plugin archive cannot be built; missing $dependencies_missing")
1442 DISABLED_PLUGINS="$DISABLED_PLUGINS archive"
1446 AC_MSG_CHECKING([whether to build att_remover plugin])
1447 if test x"$enable_att_remover_plugin" != xno; then
1448 PLUGINS="$PLUGINS att_remover"
1451 DISABLED_PLUGINS="$DISABLED_PLUGINS att_remover"
1455 AC_MSG_CHECKING([whether to build attachwarner plugin])
1456 if test x"$enable_attachwarner_plugin" != xno; then
1457 PLUGINS="$PLUGINS attachwarner"
1460 DISABLED_PLUGINS="$DISABLED_PLUGINS attachwarner"
1464 AC_MSG_CHECKING([whether to build bogofilter plugin])
1465 if test x"$enable_bogofilter_plugin" != xno; then
1466 PLUGINS="$PLUGINS bogofilter"
1469 DISABLED_PLUGINS="$DISABLED_PLUGINS bogofilter"
1473 AC_MSG_CHECKING([whether to build bsfilter plugin])
1474 if test x"$enable_bsfilter_plugin" != xno; then
1475 PLUGINS="$PLUGINS bsfilter"
1478 DISABLED_PLUGINS="$DISABLED_PLUGINS bsfilter"
1482 AC_MSG_CHECKING([whether to build clamd plugin])
1483 if test x"$enable_clamd_plugin" != xno; then
1484 PLUGINS="$PLUGINS clamd"
1487 DISABLED_PLUGINS="$DISABLED_PLUGINS clamd"
1491 AC_MSG_CHECKING([whether to build demo plugin])
1492 if test x"$enable_demo_plugin" != xno; then
1493 PLUGINS="$PLUGINS demo"
1496 DISABLED_PLUGINS="$DISABLED_PLUGINS demo"
1500 AC_MSG_CHECKING([whether to build Dillo plugin])
1501 if test x"$enable_dillo_plugin" != xno; then
1502 PLUGINS="$PLUGINS dillo"
1505 DISABLED_PLUGINS="$DISABLED_PLUGINS dillo"
1509 AC_MSG_CHECKING([whether to build fancy plugin])
1510 if test x"$enable_fancy_plugin" != xno; then
1511 dependencies_missing=""
1513 if test x"$HAVE_WEBKIT" = xno; then
1514 dependencies_missing="libwebkit-1.0 $dependencies_missing"
1516 if test x"$HAVE_CURL" = xno; then
1517 dependencies_missing="libcurl $dependencies_missing"
1520 if test x"$dependencies_missing" = x; then
1521 PLUGINS="$PLUGINS fancy"
1523 elif test x"$enable_fancy_plugin" = xauto; then
1525 AC_MSG_WARN("Plugin fancy will not be built; missing $dependencies_missing")
1526 enable_fancy_plugin=no
1527 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS fancy"
1530 AC_MSG_ERROR("Plugin fancy cannot be built; missing $dependencies_missing")
1533 DISABLED_PLUGINS="$DISABLED_PLUGINS fancy"
1537 AC_MSG_CHECKING([whether to build fetchinfo plugin])
1538 if test x"$enable_fetchinfo_plugin" != xno; then
1539 PLUGINS="$PLUGINS fetchinfo"
1542 DISABLED_PLUGINS="$DISABLED_PLUGINS fetchinfo"
1546 AC_MSG_CHECKING([whether to build gdata plugin])
1547 if test x"$enable_gdata_plugin" != xno; then
1548 dependencies_missing=""
1550 if test x"$HAVE_GDATA" = xno; then
1551 dependencies_missing="libgdata $dependencies_missing"
1554 if test x"$dependencies_missing" = x; then
1555 PLUGINS="$PLUGINS gdata"
1557 elif test x"$enable_gdata_plugin" = xauto; then
1559 AC_MSG_WARN("Plugin gdata will not be built; missing $dependencies_missing")
1560 enable_gdata_plugin=no
1561 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS gdata"
1564 AC_MSG_ERROR("Plugin gdata cannot be built; missing $dependencies_missing")
1567 DISABLED_PLUGINS="$DISABLED_PLUGINS gdata"
1571 AC_MSG_CHECKING([whether to build libravatar plugin])
1572 if test x"$enable_libravatar_plugin" != xno; then
1573 dependencies_missing=""
1575 if test x"$HAVE_CURL" = xno; then
1576 dependencies_missing="libcurl $dependencies_missing"
1579 if test x"$dependencies_missing" = x; then
1580 PLUGINS="$PLUGINS libravatar"
1582 elif test x"$enable_libravatar_plugin" = xauto; then
1584 AC_MSG_WARN("Plugin libravatar will not be built; missing $dependencies_missing")
1585 enable_libravatar_plugin=no
1586 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS libravatar"
1589 AC_MSG_ERROR("Plugin libravatar cannot be built; missing $dependencies_missing")
1592 DISABLED_PLUGINS="$DISABLED_PLUGINS libravatar"
1596 AC_MSG_CHECKING([whether to build mailmbox plugin])
1597 if test x"$enable_mailmbox_plugin" != xno; then
1598 PLUGINS="$PLUGINS mailmbox"
1601 DISABLED_PLUGINS="$DISABLED_PLUGINS mailmbox"
1605 AC_MSG_CHECKING([whether to build managesieve plugin])
1606 if test x"$enable_managesieve_plugin" != xno; then
1607 PLUGINS="$PLUGINS managesieve"
1610 DISABLED_PLUGINS="$DISABLED_PLUGINS managesieve"
1614 AC_MSG_CHECKING([whether to build newmail plugin])
1615 if test x"$enable_newmail_plugin" != xno; then
1616 PLUGINS="$PLUGINS newmail"
1619 DISABLED_PLUGINS="$DISABLED_PLUGINS newmail"
1623 AC_MSG_CHECKING([whether to build notification plugin])
1624 if test x"$enable_notification_plugin" != xno; then
1625 PLUGINS="$PLUGINS notification"
1628 AC_DEFINE(NOTIFICATION_POPUP, 1, Activate notification popup)
1629 AC_DEFINE(NOTIFICATION_BANNER, 1, Activate notification banner)
1630 AC_DEFINE(NOTIFICATION_COMMAND, 1, Activate notification shell command)
1631 AC_DEFINE(NOTIFICATION_TRAYICON, 1, Activate notification trayicon)
1632 if test x"$platform_win32" = xno; then
1633 AC_DEFINE(NOTIFICATION_LCDPROC, 1, Activate lcdproc support)
1636 notification_features="banner command"
1637 notification_missing_dependencies=""
1638 if test x"$HAVE_HOTKEYS" = xyes; then
1639 notification_features="$notification_features hotkeys"
1641 notification_missing_dependencies="$notification_missing_dependencies hotkeys"
1643 notification_features="$notification_features lcdproc"
1644 if test x"$HAVE_UNITY" = xyes; then
1645 notification_features="$notification_features unity/messaging-menu"
1647 notification_missing_dependencies="$notification_missing_dependencies unity/messaging-menu"
1649 if test x"$HAVE_LIBNOTIFY" = xyes; then
1650 notification_features="$notification_features libnotify"
1652 notification_missing_dependencies="$notification_missing_dependencies libnotify"
1654 if test x"$HAVE_LIBCANBERRA_GTK" = xyes; then
1655 notification_features="$notification_features libcanberra-gtk"
1657 notification_missing_dependencies="$notification_missing_dependencies libcanberra-gtk"
1659 notification_features="$notification_features popup trayicon"
1661 DISABLED_PLUGINS="$DISABLED_PLUGINS notification"
1665 AC_MSG_CHECKING([whether to build pdf_viewer plugin])
1666 if test x"$enable_pdf_viewer_plugin" != xno; then
1667 dependencies_missing=""
1669 if test x"$HAVE_POPPLER" = xno; then
1670 dependencies_missing="libpoppler-glib $dependencies_missing"
1673 if test x"$dependencies_missing" = x; then
1674 PLUGINS="$PLUGINS pdf_viewer"
1676 elif test x"$enable_pdf_viewer_plugin" = xauto; then
1678 AC_MSG_WARN("Plugin pdf_viewer will not be built; missing $dependencies_missing")
1679 enable_pdf_viewer_plugin=no
1680 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pdf_viewer"
1683 AC_MSG_ERROR("Plugin pdf_viewer cannot be built; missing $dependencies_missing")
1686 DISABLED_PLUGINS="$DISABLED_PLUGINS pdf_viewer"
1690 AC_MSG_CHECKING([whether to build perl plugin])
1691 if test x"$enable_perl_plugin" != xno; then
1692 dependencies_missing=""
1694 if test x"$HAVE_LIBPERL" = xno; then
1695 dependencies_missing="libperl $dependencies_missing"
1698 if test x"$dependencies_missing" = x; then
1699 PLUGINS="$PLUGINS perl"
1701 elif test x"$enable_perl_plugin" = xauto; then
1703 AC_MSG_WARN("Plugin perl will not be built; missing $dependencies_missing")
1704 enable_perl_plugin=no
1705 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS perl"
1708 AC_MSG_ERROR("Plugin perl cannot be built; missing $dependencies_missing")
1711 DISABLED_PLUGINS="$DISABLED_PLUGINS perl"
1715 AC_MSG_CHECKING([whether to build python plugin])
1716 if test x"$enable_python_plugin" != xno; then
1717 dependencies_missing=""
1719 if test x"$HAVE_PYTHON" = xno; then
1720 dependencies_missing="python $dependencies_missing"
1723 if test x"$dependencies_missing" = x; then
1724 PLUGINS="$PLUGINS python"
1726 elif test x"$enable_python_plugin" = xauto; then
1728 AC_MSG_WARN("Plugin python will not be built; missing $dependencies_missing")
1729 enable_python_plugin=no
1730 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS python"
1733 AC_MSG_ERROR("Plugin python cannot be built; missing $dependencies_missing")
1736 DISABLED_PLUGINS="$DISABLED_PLUGINS python"
1740 AC_MSG_CHECKING([whether to build pgpcore plugin])
1741 if test x"$enable_pgpcore_plugin" != xno; then
1742 dependencies_missing=""
1744 if test x"$HAVE_GPGME" = xno; then
1745 dependencies_missing="libgpgme $dependencies_missing"
1748 if test x"$dependencies_missing" = x; then
1749 PLUGINS="$PLUGINS pgpcore"
1751 elif test x"$enable_pgpcore_plugin" = xauto; then
1753 AC_MSG_WARN("Plugin pgpcore will not be built; missing $dependencies_missing")
1754 enable_pgpcore_plugin=no
1755 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpcore"
1758 AC_MSG_ERROR("Plugin pgpcore cannot be built; missing $dependencies_missing")
1761 DISABLED_PLUGINS="$DISABLED_PLUGINS pgpcore"
1765 AC_MSG_CHECKING([whether to build pgpmime plugin])
1766 if test x"$enable_pgpmime_plugin" != xno; then
1767 dependencies_missing=""
1769 if test x"$HAVE_GPGME" = xno; then
1770 dependencies_missing="libgpgme $dependencies_missing"
1772 if test x"$enable_pgpcore_plugin" = xno; then
1773 dependencies_missing="pgpcore plugin $dependencies_missing"
1776 if test x"$dependencies_missing" = x; then
1777 PLUGINS="$PLUGINS pgpmime"
1779 elif test x"$enable_pgpmime_plugin" = xauto; then
1781 AC_MSG_WARN("Plugin pgpmime will not be built; missing $dependencies_missing")
1782 enable_pgpmime_plugin=no
1783 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpmime"
1786 AC_MSG_ERROR("Plugin pgpmime cannot be built; missing $dependencies_missing")
1789 DISABLED_PLUGINS="$DISABLED_PLUGINS pgpmime"
1793 AC_MSG_CHECKING([whether to build pgpinline plugin])
1794 if test x"$enable_pgpinline_plugin" != xno; then
1795 dependencies_missing=""
1797 if test x"$HAVE_GPGME" = xno; then
1798 dependencies_missing="libgpgme $dependencies_missing"
1800 if test x"$enable_pgpcore_plugin" = xno; then
1801 dependencies_missing="pgpcore plugin $dependencies_missing"
1804 if test x"$dependencies_missing" = x; then
1805 PLUGINS="$PLUGINS pgpinline"
1807 elif test x"$enable_pgpinline_plugin" = xauto; then
1809 AC_MSG_WARN("Plugin pgpinline will not be built; missing $dependencies_missing")
1810 enable_pgpinline_plugin=no
1811 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpinline"
1814 AC_MSG_ERROR("Plugin pgpinline cannot be built; missing $dependencies_missing")
1817 DISABLED_PLUGINS="$DISABLED_PLUGINS pgpinline"
1821 AC_MSG_CHECKING([whether to build rssyl plugin])
1822 if test x"$enable_rssyl_plugin" != xno; then
1823 dependencies_missing=""
1825 if test x"$HAVE_EXPAT" = xno; then
1826 dependencies_missing="expat $dependencies_missing"
1828 if test x"$HAVE_CURL" = xno; then
1829 dependencies_missing="libcurl $dependencies_missing"
1832 if test x"$dependencies_missing" = x; then
1833 PLUGINS="$PLUGINS rssyl"
1835 elif test x"$enable_rssyl_plugin" = xauto; then
1837 AC_MSG_WARN("Plugin rssyl will not be built; missing $dependencies_missing")
1838 enable_rssyl_plugin=no
1839 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS rssyl"
1842 AC_MSG_ERROR("Plugin rssyl cannot be built; missing $dependencies_missing")
1845 DISABLED_PLUGINS="$DISABLED_PLUGINS rssyl"
1849 AC_MSG_CHECKING([whether to build spamassassin plugin])
1850 if test x"$enable_spamassassin_plugin" != xno; then
1851 PLUGINS="$PLUGINS spamassassin"
1855 dnl check for zlib (optional)
1857 SPAMASSASSIN_CFLAGS=""
1858 SPAMASSASSIN_LIBS=""
1859 AC_CHECK_HEADER([zlib.h],
1860 [AC_DEFINE(HAVE_ZLIB_H,1,[optional zlib support for spamassassin plugin])]
1861 [spamassassin_zlib=1],
1862 [spamassassin_zlib=0])
1863 if test $spamassassin_zlib -eq 1; then
1864 AC_CHECK_LIB(z, deflate, [spamassassin_zlib=1], [spamassassin_zlib=0])
1865 AC_MSG_CHECKING([whether to build spamassassin plugin with zlib support])
1866 if test $spamassassin_zlib -eq 1; then
1868 SPAMASSASSIN_CFLAGS="-DHAVE_LIBZ"
1869 SPAMASSASSIN_LIBS="-lz"
1874 AC_SUBST(SPAMASSASSIN_CFLAGS)
1875 AC_SUBST(SPAMASSASSIN_LIBS)
1877 DISABLED_PLUGINS="$DISABLED_PLUGINS spamassassin"
1881 AC_MSG_CHECKING([whether to build smime plugin])
1882 if test x"$enable_smime_plugin" != xno; then
1883 dependencies_missing=""
1885 if test x"$HAVE_GPGME" = xno; then
1886 dependencies_missing="libgpgme $dependencies_missing"
1888 if test x"$enable_pgpcore_plugin" = xno; then
1889 dependencies_missing="pgpcore plugin $dependencies_missing"
1892 if test x"$dependencies_missing" = x; then
1893 PLUGINS="$PLUGINS smime"
1895 elif test x"$enable_smime_plugin" = xauto; then
1897 AC_MSG_WARN("Plugin smime will not be built; missing $dependencies_missing")
1898 enable_smime_plugin=no
1899 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS smime"
1902 AC_MSG_ERROR("Plugin smime cannot be built; missing $dependencies_missing")
1905 DISABLED_PLUGINS="$DISABLED_PLUGINS smime"
1909 AC_MSG_CHECKING([whether to build spam_report plugin])
1910 if test x"$enable_spam_report_plugin" != xno; then
1911 dependencies_missing=""
1913 if test x"$HAVE_CURL" = xno; then
1914 dependencies_missing="libcurl $dependencies_missing"
1917 if test x"$dependencies_missing" = x; then
1918 PLUGINS="$PLUGINS spam_report"
1920 elif test x"$enable_spam_report_plugin" = xauto; then
1922 AC_MSG_WARN("Plugin spam_report will not be built; missing $dependencies_missing")
1923 enable_spam_report_plugin=no
1924 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS spam_report"
1927 AC_MSG_ERROR("Plugin spam_report cannot be built; missing $dependencies_missing")
1930 DISABLED_PLUGINS="$DISABLED_PLUGINS spam_report"
1934 AC_MSG_CHECKING([whether to build tnef_parse plugin])
1935 if test x"$enable_tnef_parse_plugin" != xno; then
1936 dependencies_missing=""
1938 if test $have_ytnef -eq 0; then
1939 dependencies_missing="libytnef"
1942 if test x"$dependencies_missing" = x; then
1943 PLUGINS="$PLUGINS tnef_parse"
1945 elif test x"$enable_tnef_parse_plugin" = xauto; then
1947 AC_MSG_WARN(Plugin tnef_parse will not be built; missing $dependencies_missing")
1948 enable_tnef_parse_plugin=no
1949 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS tnef_parse"
1952 AC_MSG_ERROR(Plugin tnef_parse will not be built; missing $dependencies_missing")
1955 DISABLED_PLUGINS="$DISABLED_PLUGINS tnef_parse"
1960 AC_MSG_CHECKING([whether to build vcalendar plugin])
1961 if test x"$enable_vcalendar_plugin" != xno; then
1962 dependencies_missing=""
1964 if test x"$HAVE_CURL" = xno; then
1965 dependencies_missing="libcurl $dependencies_missing"
1968 if test x"$HAVE_LIBICAL" = xno; then
1969 dependencies_missing="libical $dependencies_missing"
1972 if test x"$HAVE_PERL" = xno; then
1973 dependencies_missing="perl $dependencies_missing"
1976 if test x"$dependencies_missing" = x; then
1977 PLUGINS="$PLUGINS vcalendar"
1979 elif test x"$enable_vcalendar_plugin" = xauto; then
1981 AC_MSG_WARN("Plugin vcalendar will not be built; missing $dependencies_missing")
1982 enable_vcalendar_plugin=no
1983 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS vcalendar"
1986 AC_MSG_ERROR("Plugin vcalendar cannot be built; missing $dependencies_missing")
1989 DISABLED_PLUGINS="$DISABLED_PLUGINS vcalendar"
1993 dnl And finally the automake conditionals.
1995 AM_CONDITIONAL(BUILD_ACPI_NOTIFIER_PLUGIN, test x"$enable_acpi_notifier_plugin" != xno)
1996 AM_CONDITIONAL(BUILD_ADDRESS_KEEPER_PLUGIN, test x"$enable_address_keeper_plugin" != xno)
1997 AM_CONDITIONAL(BUILD_ARCHIVE_PLUGIN, test x"$enable_archive_plugin" != xno)
1998 AM_CONDITIONAL(BUILD_ATT_REMOVER_PLUGIN, test x"$enable_att_remover_plugin" != xno)
1999 AM_CONDITIONAL(BUILD_ATTACHWARNER_PLUGIN, test x"$enable_attachwarner_plugin" != xno)
2000 AM_CONDITIONAL(BUILD_BOGOFILTER_PLUGIN, test x"$enable_bogofilter_plugin" != xno)
2001 AM_CONDITIONAL(BUILD_BSFILTER_PLUGIN, test x"$enable_bsfilter_plugin" != xno)
2002 AM_CONDITIONAL(BUILD_CLAMD_PLUGIN, test x"$enable_clamd_plugin" != xno)
2003 AM_CONDITIONAL(BUILD_DEMO_PLUGIN, test x"$enable_demo_plugin" != xno)
2004 AM_CONDITIONAL(BUILD_DILLO_PLUGIN, test x"$enable_dillo_plugin" != xno)
2005 AM_CONDITIONAL(BUILD_FANCY_PLUGIN, test x"$enable_fancy_plugin" != xno)
2006 AM_CONDITIONAL(BUILD_FETCHINFO_PLUGIN, test x"$enable_fetchinfo_plugin" != xno)
2007 AM_CONDITIONAL(BUILD_GDATA_PLUGIN, test x"$enable_gdata_plugin" != xno)
2008 AM_CONDITIONAL(BUILD_LIBRAVATAR_PLUGIN, test x"$enable_libravatar_plugin" != xno)
2009 AM_CONDITIONAL(BUILD_MAILMBOX_PLUGIN, test x"$enable_mailmbox_plugin" != xno)
2010 AM_CONDITIONAL(BUILD_MANAGESIEVE_PLUGIN, test x"$enable_managesieve_plugin" != xno)
2011 AM_CONDITIONAL(BUILD_NEWMAIL_PLUGIN, test x"$enable_newmail_plugin" != xno)
2012 AM_CONDITIONAL(BUILD_NOTIFICATION_PLUGIN, test x"$enable_notification_plugin" != xno)
2013 AM_CONDITIONAL(BUILD_HOTKEYS, test x"$enable_notification_plugin" != xno -a x"$HAVE_HOTKEYS" = xyes)
2014 AM_CONDITIONAL(BUILD_PDF_VIEWER_PLUGIN, test x"$enable_pdf_viewer_plugin" != xno)
2015 AM_CONDITIONAL(BUILD_PERL_PLUGIN, test x"$enable_perl_plugin" != xno)
2016 AM_CONDITIONAL(BUILD_PYTHON_PLUGIN, test x"$enable_python_plugin" != xno)
2017 AM_CONDITIONAL(BUILD_PGPCORE_PLUGIN, test x"$enable_pgpcore_plugin" != xno)
2018 AM_CONDITIONAL(BUILD_PGPMIME_PLUGIN, test x"$enable_pgpmime_plugin" != xno)
2019 AM_CONDITIONAL(BUILD_PGPINLINE_PLUGIN, test x"$enable_pgpinline_plugin" != xno)
2020 AM_CONDITIONAL(BUILD_RSSYL_PLUGIN, test x"$enable_rssyl_plugin" != xno)
2021 AM_CONDITIONAL(BUILD_SMIME_PLUGIN, test x"$enable_smime_plugin" != xno)
2022 AM_CONDITIONAL(BUILD_SPAMASSASSIN_PLUGIN, test x"$enable_spamassassin_plugin" != xno)
2023 AM_CONDITIONAL(BUILD_SPAM_REPORT_PLUGIN, test x"$enable_spam_report_plugin" != xno)
2024 AM_CONDITIONAL(BUILD_TNEF_PARSE_PLUGIN, test x"$enable_tnef_parse_plugin" != xno)
2025 AM_CONDITIONAL(BUILD_VCALENDAR_PLUGIN, test x"$enable_vcalendar_plugin" != xno)
2028 dnl ****************************
2029 dnl ** Final configure output **
2030 dnl ****************************
2036 src/common/version.h
2039 src/common/passcrypt.h
2040 src/common/tests/Makefile
2043 src/plugins/Makefile
2044 src/plugins/acpi_notifier/Makefile
2045 src/plugins/address_keeper/Makefile
2046 src/plugins/archive/Makefile
2047 src/plugins/att_remover/Makefile
2048 src/plugins/attachwarner/Makefile
2049 src/plugins/bogofilter/Makefile
2050 src/plugins/bsfilter/Makefile
2051 src/plugins/clamd/Makefile
2052 src/plugins/clamd/libclamd/Makefile
2053 src/plugins/demo/Makefile
2054 src/plugins/dillo/Makefile
2055 src/plugins/fancy/Makefile
2056 src/plugins/fetchinfo/Makefile
2057 src/plugins/gdata/Makefile
2058 src/plugins/libravatar/Makefile
2059 src/plugins/mailmbox/Makefile
2060 src/plugins/managesieve/Makefile
2061 src/plugins/newmail/Makefile
2062 src/plugins/notification/Makefile
2063 src/plugins/notification/gtkhotkey/Makefile
2064 src/plugins/pdf_viewer/Makefile
2065 src/plugins/perl/Makefile
2066 src/plugins/perl/tools/Makefile
2067 src/plugins/python/Makefile
2068 src/plugins/python/examples/Makefile
2069 src/plugins/pgpcore/Makefile
2070 src/plugins/pgpmime/Makefile
2071 src/plugins/pgpinline/Makefile
2072 src/plugins/rssyl/Makefile
2073 src/plugins/rssyl/tests/Makefile
2074 src/plugins/rssyl/libfeed/Makefile
2075 src/plugins/rssyl/libfeed/tests/Makefile
2076 src/plugins/smime/Makefile
2077 src/plugins/spamassassin/Makefile
2078 src/plugins/spam_report/Makefile
2079 src/plugins/tnef_parse/Makefile
2080 src/plugins/vcalendar/Makefile
2088 manual/dist/Makefile
2089 manual/dist/pdf/Makefile
2090 manual/dist/ps/Makefile
2091 manual/dist/html/Makefile
2092 manual/dist/txt/Makefile
2094 manual/fr/dist/Makefile
2095 manual/fr/dist/pdf/Makefile
2096 manual/fr/dist/ps/Makefile
2097 manual/fr/dist/html/Makefile
2098 manual/fr/dist/txt/Makefile
2100 manual/es/dist/Makefile
2101 manual/es/dist/pdf/Makefile
2102 manual/es/dist/ps/Makefile
2103 manual/es/dist/html/Makefile
2104 manual/es/dist/txt/Makefile
2108 dnl Output the configuration summary
2110 echo "$PACKAGE $VERSION"
2112 if test x"$enable_alternate_addressbook" = xyes; then
2113 echo "Using Address Book : Alternate experimental interface"
2115 echo "Using Address Book : Original stable interface"
2116 echo "JPilot : $enable_jpilot"
2117 echo "LDAP : $enable_ldap"
2119 echo "gnuTLS : $enable_gnutls"
2120 echo "iconv : $am_cv_func_iconv"
2121 echo "compface : $enable_compface"
2122 echo "IPv6 : $enable_ipv6"
2123 echo "enchant : $enable_enchant"
2124 echo "IMAP4 : $enable_libetpan"
2125 echo "NNTP : $enable_libetpan"
2126 echo "Crash dialog : $enable_crash_dialog"
2127 echo "LibSM : $enable_libsm"
2128 echo "DBUS : $enable_dbus"
2129 echo "NetworkManager : $enable_networkmanager"
2130 echo "Manual : $enable_manual"
2131 echo "Generic UMPC code : $enable_generic_umpc"
2132 echo "SVG support : $enable_svg"
2133 echo "Config dir : $ac_cv_with_config_dir"
2134 echo "Password crypto : $pwd_crypto"
2135 echo "Unit tests : $enable_tests"
2139 for plugin in $PLUGINS; do
2141 if test x"$plugin" = xnotification; then
2143 for notif_feature in $notification_features; do
2144 echo " $notif_feature"
2146 if test "x$notification_missing_dependencies" != x; then
2147 echo " Disabled due to missing dependencies:"
2148 for notif_miss_dep in $notification_missing_dependencies; do
2149 echo " $notif_miss_dep"
2154 if test "x$DISABLED_PLUGINS" != x; then
2156 for plugin in $DISABLED_PLUGINS; do
2161 if test "x$MISSING_DEPS_PLUGINS" != x; then
2162 echo " Disabled due to missing dependencies:"
2163 for plugin in $MISSING_DEPS_PLUGINS; do
2168 echo "The binary will be installed in $prefix/bin"
2170 echo "Configure finished, type 'make' to build."