prefix this translator msg in such a way that the translators will see it
[claws.git] / configure.ac
blobd81db6fa70f91d81d5e7a90c96d5543448a222cb
2 AC_PREREQ(2.59)
3 AC_INIT(src/main.c)
4 AC_CONFIG_AUX_DIR(config)
5 AC_CONFIG_MACRO_DIR([m4])
7 PACKAGE=claws-mail
9 dnl version number
10 INTERFACE_AGE=0
11 BINARY_AGE=0
12 EXTRA_RELEASE=
13 EXTRA_GTK2_VERSION=
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/])
19     else
20         GIT_VERSION=`git describe --abbrev=6 --dirty --always`
21         echo "echo ${GIT_VERSION}" > ./version
22     fi
23 else
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}
41 else
42     VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}
43     EXTRA_VERSION=0
46 if test \( "x$EXTRA_RELEASE" != "x" \); then
47     VERSION=${VERSION}${EXTRA_RELEASE}${EXTRA_GTK2_VERSION}
50 dnl set $target
51 AC_CANONICAL_SYSTEM
53 dnl
54 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
55 dnl AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
56 dnl AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
57 AC_SUBST(PACKAGE)
58 AC_SUBST(VERSION)
59 AC_SUBST(MAJOR_VERSION)
60 AC_SUBST(MINOR_VERSION)
61 AC_SUBST(MICRO_VERSION)
62 AC_SUBST(EXTRA_VERSION)
63 AC_SUBST(GIT_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"])
76 PKG_PROG_PKG_CONFIG
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`
83 AC_SUBST(LT_RELEASE)
84 AC_SUBST(LT_CURRENT)
85 AC_SUBST(LT_REVISION)
86 AC_SUBST(LT_AGE)
88 dnl Specify a header configuration file
89 AC_CONFIG_HEADERS(config.h)
90 AC_CONFIG_HEADERS(claws-features.h)
92 AM_MAINTAINER_MODE
94 dnl Checks for programs.
95 dnl AC_ARG_PROGRAM
96 AC_PROG_CC
97 AC_ISC_POSIX
98 AC_PROG_INSTALL
99 AC_PROG_LN_S
100 AC_PROG_MAKE_SET
101 AC_PROG_CPP
102 dnl AC_PROG_RANLIB
103 AM_PROG_LEX
104 AC_PROG_YACC
105 AC_LIB_PREFIX
106 AC_LIBTOOL_WIN32_DLL
107 LT_INIT
108 LT_AC_PROG_RC
109 AC_LIBTOOL_RC
110 AC_PROG_LIBTOOL
111 AC_PROG_AWK
113 dnl AC_PROG_CXX will set CXX=g++ even if it finds no useable C++
114 dnl compiler, so we have to check whether the program named by
115 dnl CXX exists.
116 AC_PROG_CXX
117 AC_PATH_PROG(REAL_CXX, $CXX)
118 HAVE_CXX=no
119 if test -n "$REAL_CXX"; then
120         HAVE_CXX=yes
123 AC_SYS_LARGEFILE
125 dnl ******************************
126 dnl Checks for host
127 dnl Not needed anymore because we
128 dnl do AC_CANONICAL_SYSTEM above
129 dnl ******************************
130 dnl AC_CANONICAL_HOST
132 dnl Copied from the official gtk+-2 configure.in
133 AC_MSG_CHECKING([for host platform])
134 case "$host" in
135   *-*-mingw*|*-*-cygwin*)
136     platform_win32=yes
137     LDFLAGS="$LDFLAGS -mwindows -Wl,--export-all-symbols"
138     ;;
139         *-apple-*)
140                 platform_osx=yes
141                 LDFLAGS="$LDFLAGS -Wl,-export_dynamic"
142                 ;;
143   *)
144     platform_win32=no
145                 platform_osx=no
146                 LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
147     ;;
148 esac
149 AM_CONDITIONAL(PLATFORM_WIN32, test x"$platform_win32" = x"yes")
150 AM_CONDITIONAL(PLATFORM_OSX, test x"$platform_osx" = x"yes")
151 AC_MSG_RESULT([$host])
153 AC_MSG_CHECKING([for native Win32])
154 case "$host" in
155   *-*-mingw*)
156     os_win32=yes
157     ;;
158   *)
159     os_win32=no
160     ;;
161 esac
162 AC_MSG_RESULT([$os_win32])
163 AM_CONDITIONAL(OS_WIN32, test x"$os_win32" = x"yes")
165 AC_MSG_CHECKING([for Cygwin])
166 case "$host" in
167   *-*-cygwin*)
168     env_cygwin=yes
169     ;;
170   *)
171     env_cygwin=no
172     ;;
173 esac
174 AC_MSG_RESULT([$env_cygwin])
175 AM_CONDITIONAL(CYGWIN, test x"$env_cygwin" = x"yes")
177 if test "$GCC" = "yes"
178 then
179         CFLAGS="$CFLAGS -Wno-unused-function"
180         #CFLAGS="-g -Wall -Wno-unused-function"
183 AC_MSG_CHECKING([if gcc supports -Wno-pointer-sign])
184 _gcc_cflags_save=$CFLAGS
185 CFLAGS="-Wno-pointer-sign"
186 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],_gcc_psign=yes,_gcc_psign=no)
187 AC_MSG_RESULT($_gcc_psign)
188 CFLAGS=$_gcc_cflags_save;
189 if test x"$_gcc_psign" = xyes ; then
190         CFLAGS="$CFLAGS -Wno-pointer-sign"
193 CFLAGS="$CFLAGS -Wall -D_GNU_SOURCE"
195 if test $USE_MAINTAINER_MODE = yes; then
196         CFLAGS="$CFLAGS -g -Wno-pointer-sign -DUSE_MAINTAINER_MODE"
199 pthread_name=
200 case "$target" in
201 *-darwin*)
202         CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
203         ;;
204 *-*-mingw*)
205         # Note that we need to link to pthread in all cases. This
206         # is because some locking is used even when pthread support is
207         # disabled.
208         pthread_name=pthread
209         CFLAGS="$CFLAGS -mms-bitfields"
210         LIBS="$LIBS -l${pthread_name} -lws2_32 -lregex"
211         ;;
212 *-*-solaris*)
213         CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
214         CFLAGS="$CFLAGS -std=gnu99 -DSOLARIS"
215         ;;
216 esac
218 dnl Checks for iconv
219 AM_ICONV
221 dnl floor and ceil are  in -lm
222 LIBS="$LIBS -lm"
225 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
227 syl_save_LIBS=$LIBS
228 LIBS="$LIBS $GTK_LIBS"
229 AC_CHECK_FUNCS(bind_textdomain_codeset)
230 LIBS=$syl_save_LIBS
232 dnl for gettext
233 ALL_LINGUAS="ca cs da de el_GR en_GB es fi fr hu id_ID it ja nb nl pl pt_BR pt_PT ro ru sk sv tr zh_TW"
234 GETTEXT_PACKAGE=claws-mail
235 AC_SUBST(GETTEXT_PACKAGE)
236 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define text domain.])
238 AM_GNU_GETTEXT_VERSION([0.18])
239 AM_GNU_GETTEXT([external])
241 AC_ARG_ENABLE(manual,
242                 [  --disable-manual                Do not build user manual],
243                 [enable_manual=$enableval], [enable_manual=yes])
245 AC_ARG_ENABLE(libsm,
246                 [  --disable-libsm                 Do not build libSM support for session management],
247                 [enable_libsm=$enableval], [enable_libsm=yes])
249 AC_ARG_ENABLE(ipv6,
250                 [  --disable-ipv6                  Do not build IPv6 support],
251                 [enable_ipv6=$enableval], [enable_ipv6=yes])
253 AC_ARG_ENABLE(gnutls,
254                 [  --disable-gnutls                Do not build GnuTLS support for SSL/TLS],
255                     [enable_gnutls=$enableval], [enable_gnutls=yes])
257 AC_ARG_ENABLE(enchant,
258                 [  --disable-enchant               Do not build Enchant support for spell-checking],
259                 [enable_enchant=$enableval], [enable_enchant=yes])
261 AC_ARG_ENABLE(crash-dialog,
262                 [  --enable-crash-dialog           Build crash dialog],
263                 [enable_crash_dialog=$enableval], [enable_crash_dialog=no])
265 AC_ARG_ENABLE(generic-umpc,
266                 [  --enable-generic-umpc           Build generic UMPC code],
267                 [enable_generic_umpc=$enableval], [enable_generic_umpc=no])
269 AC_ARG_ENABLE(compface,
270                 [  --disable-compface              Do not build compface support for X-Face],
271                 [enable_compface=$enableval], [enable_compface=yes])
273 AC_ARG_ENABLE(pthread,
274                 [  --disable-pthread               Do not build pthread support],
275                 [enable_pthread=$enableval], [enable_pthread=yes])
277 AC_ARG_ENABLE(startup-notification,
278                 [  --disable-startup-notification  Do not startup notification support],
279                 [enable_startup_notification=$enableval], [enable_startup_notification=yes])
281 AC_ARG_ENABLE(dbus,
282                 [  --disable-dbus                  Do not build DBUS support],
283                 [enable_dbus=$enableval], [enable_dbus=yes])
285 AC_ARG_ENABLE(ldap,
286                 [  --disable-ldap                  Do not build LDAP support],
287                 [enable_ldap=$enableval], [enable_ldap=yes])
289 AC_ARG_ENABLE(jpilot,
290                 [  --disable-jpilot                Do not build JPilot support],
291                 [enable_jpilot=$enableval], [enable_jpilot=yes])
293 AC_ARG_ENABLE(networkmanager,
294                 [  --disable-networkmanager        Do not build NetworkManager support],
295                 [enable_networkmanager=$enableval], [enable_networkmanager=yes])
297 AC_ARG_ENABLE(libetpan,
298                 [  --disable-libetpan              Do not build libetpan support for IMAP4/NNTP],
299                 [enable_libetpan=$enableval], [enable_libetpan=yes])
301 AC_ARG_ENABLE(valgrind,
302                 [  --disable-valgrind              Do not build valgrind support for debugging],
303                 [enable_valgrind=$enableval], [enable_valgrind=yes])
305 AC_ARG_ENABLE(alternate-addressbook,
306                 [  --enable-alternate-addressbook  Build alternate external address book support],
307                 [enable_alternate_addressbook=$enableval], [enable_alternate_addressbook=no])
309 AC_ARG_ENABLE(svg,
310         [  --disable-svg                   Do not build SVG support],
311         [enable_svg=$enableval], [enable_svg=yes])
313 AC_ARG_ENABLE(tests,
314                                 [  --enable-tests                   Build unit tests],
315                                 [enable_tests=$enableval], [enable_tests=no])
317 manualdir='${docdir}/manual'
318 AC_ARG_WITH(manualdir,
319         [  --with-manualdir=DIR    Manual directory],
320         [manualdir="$withval"])
321 AC_SUBST(manualdir)
323 dnl ******************************
324 dnl ** Check for required tools **
325 dnl ** to build manuals         **
326 dnl ******************************
328 AC_PATH_PROG(DOCBOOK2HTML, docbook2html)
329 AC_PATH_PROG(DOCBOOK2TXT, docbook2txt)
330 AC_PATH_PROG(DOCBOOK2PS, docbook2ps)
331 AC_PATH_PROG(DOCBOOK2PDF, docbook2pdf)
333 AM_CONDITIONAL(MANUAL_HTML, test -n "$DOCBOOK2HTML")
334 AM_CONDITIONAL(MANUAL_TXT, test -n "$DOCBOOK2TXT")
335 AM_CONDITIONAL(MANUAL_PDF, test -n "$DOCBOOK2PDF")
336 AM_CONDITIONAL(MANUAL_PS, test -n "$DOCBOOK2PS")
338 if test x"$enable_manual" = x"yes"; then
339     if test -n "$DOCBOOK2TXT" -o -n "$DOCBOOK2HTML" \
340         -o -n "$DOCBOOK2PS" -o -n "$DOCBOOK2PDF"; then
341             enable_manual=yes
342         else
343             enable_manual=no
344     fi
347 AM_CONDITIONAL(BUILD_MANUAL, test x"$enable_manual" = xyes)
349 dnl Set PACKAGE_DATA_DIR in config.h.
350 if test "x${datarootdir}" = 'x${prefix}/share'; then
351         if test "x${prefix}" = "xNONE"; then
352                 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${ac_default_prefix}/share/${PACKAGE}",[PACKAGE_DATA_DIR])
353         else
354                 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/share/${PACKAGE}",[PACKAGE_DATA_DIR])
355         fi
356 else
357         AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datarootdir}/${PACKAGE}",[PACKAGE_DATA_DIR])
360 AC_CHECK_LIB(xpg4, setlocale)
362 SM_LIBS=""
363 dnl Check for LibSM
364 AC_MSG_CHECKING([whether to use LibSM])
365 if test x"$enable_libsm" = xyes; then
366         AC_MSG_RESULT(yes)
367         AC_CHECK_LIB(SM, SmcSaveYourselfDone,
368                 [SM_LIBS="$X_LIBS -lSM -lICE"],enable_libsm=no,
369                 $X_LIBS -lICE)
370         AC_CHECK_HEADERS(X11/SM/SMlib.h,,enable_libsm=no)
371         if test x"$enable_libsm" = xyes; then
372                 AC_DEFINE(HAVE_LIBSM, 1, [Define to 1 if you have libSM installed])
373         else
374                 AC_MSG_RESULT(not found)
375                 AC_MSG_WARN([*** LibSM will not be supported ***])
376         fi
377 else
378         AC_MSG_RESULT(no)
380 AC_SUBST(SM_LIBS)
382 dnl Check for __VA_OPT__ macro
383 AC_CACHE_CHECK([for __VA_OPT__],
384         [ac_cv_va_opt],
385         [AC_TRY_COMPILE([#include <stdio.h>],
386                 [#define va_opt_printf(format, ...) fprintf(stderr, format __VA_OPT__(,) __VA_ARGS__)
387                 va_opt_printf("success\n");],
388                 [ac_cv_va_opt=yes],
389                 [ac_cv_va_opt=no])]
391 if test "$ac_cv_va_opt" = yes; then
392         AC_DEFINE([HAVE_VA_OPT], [1], [Define if __VA_OPT__ macro works])
395 dnl Check for d_type member in struct dirent
396 AC_MSG_CHECKING([whether struct dirent has d_type member])
397 AC_CACHE_VAL(ac_cv_dirent_d_type,[
398         AC_TRY_COMPILE([#include <dirent.h>],
399                        [struct dirent d; d.d_type = DT_REG;],
400                        ac_cv_dirent_d_type=yes, ac_cv_dirent_d_type=no)
402 AC_MSG_RESULT($ac_cv_dirent_d_type)
403 if test $ac_cv_dirent_d_type = yes; then
404         AC_DEFINE(HAVE_DIRENT_D_TYPE, 1,
405                   Define if `struct dirent' has `d_type' member.)
408 # Check whether mkdir does not take the permission argument.
409 GNUPG_FUNC_MKDIR_TAKES_ONE_ARG
411 dnl Checks for header files.
412 AC_HEADER_DIRENT
413 AC_HEADER_STDC
414 AC_HEADER_SYS_WAIT
415 AC_CHECK_HEADERS(fcntl.h sys/file.h unistd.h paths.h \
416                  sys/param.h sys/utsname.h sys/select.h \
417                  wchar.h wctype.h locale.h netdb.h)
418 AC_CHECK_HEADER([execinfo.h], [AC_DEFINE(HAVE_BACKTRACE,1,[Has backtrace*() needed for retrieving stack traces])])
419 AC_SEARCH_LIBS(backtrace_symbols, [execinfo])
421 dnl Checks for typedefs, structures, and compiler characteristics.
422 AC_C_CONST
423 AC_TYPE_OFF_T
424 AC_TYPE_PID_T
425 AC_TYPE_SIZE_T
426 AC_STRUCT_TM
428 dnl AC_CHECK_TYPE(wint_t, unsigned int) does not work because wint_t
429 dnl may be defined only in wchar.h (this happens with gcc-2.96).
430 dnl So we need to use this extended macro.
431 CLAWS_CHECK_TYPE(wint_t, unsigned int,
433 #if HAVE_WCHAR_H
434 #include <wchar.h>
435 #endif
436 ], Define to `unsigned int' if <stddef.h> or <wchar.h> doesn't define.)
438 GNUPG_CHECK_TYPEDEF(u32, HAVE_U32_TYPEDEF, Used to test for a u32 typedef)
439 AC_CHECK_SIZEOF(unsigned short, 2)
440 AC_CHECK_SIZEOF(unsigned int, 4)
441 AC_CHECK_SIZEOF(unsigned long, 4)
443 dnl Checks for library functions.
444 AC_FUNC_ALLOCA
445 AC_CHECK_FUNCS(gethostname mkdir mktime socket strstr strchr strcasestr \
446                uname flock lockf inet_aton inet_addr \
447                fchmod mkstemp truncate getuid regcomp)
449 AC_CHECK_FUNCS(fgets_unlocked fgetc_unlocked fputs_unlocked fputc_unlocked fread_unlocked fwrite_unlocked feof_unlocked ferror_unlocked fmemopen)
451 dnl *****************
452 dnl ** common code **
453 dnl *****************
455 dnl check for glib
456 PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.28 gmodule-2.0 >= 2.28 gobject-2.0 >= 2.28 gthread-2.0 >= 2.28])
458 GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
459 AC_SUBST(GLIB_GENMARSHAL)
461 AC_SUBST(GLIB_CFLAGS)
462 AC_SUBST(GLIB_LIBS)
464 PKG_CHECK_MODULES(GDK_PIXBUF, [gdk-pixbuf-2.0 >= 2.26])
466 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
467 syl_save_LIBS=$LIBS
468 LIBS="$LIBS $GTK_LIBS"
469 AC_CHECK_FUNCS(bind_textdomain_codeset)
470 LIBS=$syl_save_LIBS
472 dnl check for IPv6 option
473 dnl automated checks for IPv6 support.
474 AC_MSG_CHECKING([whether to use IPv6])
475 if test x"$enable_ipv6" = xyes; then
476         AC_MSG_RESULT(yes)
477         AC_MSG_CHECKING([for IPv6 support])
478         if test x"$platform_win32" = xyes; then
479                 AC_CACHE_VAL(ac_cv_ipv6,[
480                         AC_TRY_COMPILE([
481                                         #include <ws2tcpip.h>
482                                 ], [struct in6_addr a;],
483                                 ac_cv_ipv6=yes, ac_cv_ipv6=no)
484                 ])
485         else
486                 AC_CACHE_VAL(ac_cv_ipv6,[
487                         AC_TRY_COMPILE([
488                                         #define INET6
489                                         #include <sys/types.h>
490                                         #include <netinet/in.h>
491                                 ], [int x = IPPROTO_IPV6; struct in6_addr a;],
492                                 ac_cv_ipv6=yes, ac_cv_ipv6=no)
493                 ])
494         fi
495         AC_MSG_RESULT($ac_cv_ipv6)
496         if test $ac_cv_ipv6 = yes; then
497                 AC_DEFINE(INET6, 1, Define if you want IPv6 support.)
498         else
499                 AC_MSG_WARN(*** IPv6 will not be supported ***)
500                 enable_ipv6=no
501         fi
502 else
503         AC_MSG_RESULT(no)
506 dnl GNUTLS
507 AC_MSG_CHECKING([whether to use GnuTLS])
508 AC_MSG_RESULT($enable_gnutls)
509 if test "x$enable_gnutls" != "xno"; then
510         PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.2,
511         [
512                 AC_DEFINE(USE_GNUTLS, 1, gnutls)
513                 echo "Building with GnuTLS"
514                 PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.11,
515                 [
516                         dnl No linking against libgcrypt needed
517                 ],
518                 [
519                         dnl linking against libgcrypt *is* needed
520                         GNUTLS_LIBS="$GNUTLS_LIBS -lgcrypt"
521                 ])
522         ],
523         [
524                 echo "Building without GnuTLS"
525                 AC_MSG_RESULT([*** GnuTLS support is recommended ])
526                 AC_MSG_RESULT([*** You can use --disable-gnutls if you don't need it.])
527                 AC_MSG_ERROR([GnuTLS not found])
528         ])
529         AC_SUBST(GNUTLS_LIBS)
530         AC_SUBST(GNUTLS_CFLAGS)
533 PKG_CHECK_MODULES(NETTLE, nettle)
534 AC_SUBST(NETTLE_LIBS)
536 AC_ARG_WITH(passcrypt-key, [  --with-passcrypt-key=KEY     Key used to encode passwords (8 byte string)],
537             with_passcrypt_key="$withval", with_passcrypt_key="passkey0")
538 AC_SUBST(PASSCRYPT_KEY, $with_passcrypt_key)
540 dnl RC dir (will be default at a certain point in time)
541 AC_ARG_WITH(config-dir,    [  --with-config-dir=RCDIR      Local configuration dir (default: .claws-mail)],
542               ac_cv_with_config_dir="$withval", ac_cv_with_config_dir="")
544 dnl Set correct default value based on platform
545 if test x"$ac_cv_with_config_dir" = x""; then
546         if test x"$platform_win32" = xyes; then
547                 ac_cv_with_config_dir="Claws-mail"
548         else
549                 ac_cv_with_config_dir=".claws-mail"
550         fi
552 AC_DEFINE_UNQUOTED(CFG_RC_DIR, "$ac_cv_with_config_dir", Configuration directory)
554 AC_ARG_WITH(password-encryption, [  --with-password-encryption=PROVIDER    Which cryptographic library to use for encrypting stored passwords (gnutls, old, default)],
555                                                 pwd_crypto="$withval", pwd_crypto="default")
557 if test x"$pwd_crypto" = xdefault; then
558         if test x"$enable_gnutls" = xyes; then
559                 if `$PKG_CONFIG --atleast-version=3.0 gnutls`; then
560                         pwd_crypto="gnutls"
561                 fi
562         fi
564 if test x"$pwd_crypto" = xdefault; then
565         pwd_crypto="old"
568 case $pwd_crypto in
569         gnutls)
570                 if test x"$enable_gnutls" = xno; then
571                         AC_MSG_ERROR([GnuTLS password encryption requested but GnuTLS is not available.])
572                 fi
573                 if ! `$PKG_CONFIG --atleast-version=3.0 gnutls`; then
574                         AC_MSG_ERROR([GnuTLS version at least 3.0 is required for password encryption.])
575                 fi
576                 AC_DEFINE(PASSWORD_CRYPTO_GNUTLS, 1, Use GnuTLS for stored password encryption)
577                 ;;
578         old)
579                 AC_DEFINE(PASSWORD_CRYPTO_OLD, 1, Use old insecure method for stored password encryption)
580                 ;;
581         *)
582                 AC_MSG_ERROR([Unknown password encryption provider requested.])
583                 ;;
584 esac
587 dnl ************************
588 dnl ** GTK user interface **
589 dnl ************************
591 dnl Checks for GTK
592 PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.24)
594 AC_ARG_ENABLE(deprecated,
595                 [  --disable-deprecated            Disable deprecated GTK functions],
596                 gtkdeprecated=$enableval)
597 AC_MSG_CHECKING([whether to use deprecated GTK functions])
598 if test x"$gtkdeprecated" != xno; then
599         AC_MSG_RESULT(yes)
600 else
601         GTK_CFLAGS="$GTK_CFLAGS -DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"
602         AC_MSG_RESULT(no)
605 dnl Make sure the code does not regress to using deprecated GTK stuff...
606 GTK_CFLAGS="$GTK_CFLAGS -DGTK_DISABLE_SINGLE_INCLUDES -DGSEAL_ENABLE"
608 AC_SUBST(GTK_CFLAGS)
609 AC_SUBST(GTK_LIBS)
611 dnl enchant is used for spell checking
612 AC_MSG_CHECKING([whether to use enchant])
613 AC_MSG_RESULT($enable_enchant)
614 if test $enable_enchant = yes; then
615         PKG_CHECK_MODULES(ENCHANT, enchant >= 1.4.0,
616         [
617                 AC_DEFINE(USE_ENCHANT, 1, enchant)
618                 echo "Building with enchant"
619                 enable_enchant=yes
620         ],
621         [
622                 PKG_CHECK_MODULES(ENCHANT, enchant-2 >= 2.0.0,
623                 [
624                         AC_DEFINE(USE_ENCHANT, 1, enchant-2)
625                         echo "Building with enchant-2"
626                         enable_enchant=yes
627                 ],
628                 [
629                         echo "Building without enchant-notification"
630                         enable_enchant=no
631                 ])
632         ])
633         AC_SUBST(ENCHANT_CFLAGS)
634         AC_SUBST(ENCHANT_LIBS)
637 dnl want crash dialog
638 if test $enable_crash_dialog = yes; then
639 dnl check if GDB is somewhere
640         AC_CHECK_PROG(enable_crash_dialog, gdb, yes, no)
641         AC_MSG_CHECKING([whether to use crash dialog])
642         if test $enable_crash_dialog = yes; then
643                 AC_DEFINE(CRASH_DIALOG, 1, Pop up crash dialog)
644         fi
645         AC_MSG_RESULT($enable_crash_dialog)
648 dnl generic umpc
649 if test $enable_generic_umpc = yes; then
650         AC_DEFINE(GENERIC_UMPC, 1, Generic UMPC code)
651         AC_MSG_RESULT($enable_generic_umpc)
654 dnl Check for X-Face support
655 AC_MSG_CHECKING([whether to use compface])
656 if test x"$enable_compface" = xyes; then
657         AC_MSG_RESULT(yes)
658         AC_CHECK_LIB(compface, uncompface,
659                 [AC_DEFINE(HAVE_LIBCOMPFACE, 1, Define if you want compface support.)],
660                 [enable_compface=no])
661         if test x"$enable_compface" = xyes; then
662                 COMPFACE_LIBS="-lcompface"
663         else
664                 COMPFACE_LIBS=""
665         fi
666         AC_SUBST(COMPFACE_LIBS)
667 else
668         AC_MSG_RESULT(no)
671 dnl check for pthread support
672 AC_MSG_CHECKING([whether to use pthread])
673 if test x$enable_pthread = xno; then
674         AC_MSG_RESULT(no)
675 else
676         AC_MSG_RESULT(yes)
678         # For W32 we need to use a special ptrhead lib. In this case we can't
679         # use AC_CHECK_LIB because it has no means of checking for a
680         # library installed under a different name.  Checking for the
681         # header is okay.
682         if test -n "${pthread_name}" ; then
683            enable_pthread=yes
684         else
685         AC_CHECK_LIB(pthread, pthread_create, :, enable_pthread=no)
686         fi
687         AC_CHECK_HEADERS(pthread.h, :, enable_pthread=no)
689         if test x$enable_pthread = xyes; then
690                 AC_DEFINE(USE_PTHREAD, 1, Define if you have pthread)
691                 if test -z "${pthread_name}" ; then
692                 PTHREAD_LIBS="-lpthread"
693         fi
694         fi
697 AC_SUBST(PTHREAD_LIBS)
700 dnl Check whether we need to pass -lresolv
701 dnl We know that we don't need it for W32.
703 if test x$os_win32 = xno; then
704   t_oldLibs="$LIBS"
705   LIBS="$LIBS"
706   ac_cv_var__res_options=no
707   AC_TRY_LINK([#include <sys/types.h>
708              #include <sys/socket.h>
709              #include <netinet/in.h>
710              #include <arpa/nameser.h>
711              #include <resolv.h>],
712                 [_res.options = RES_INIT;],
713                 ac_cv_var__res_options=yes);
714   if test "$ac_cv_var__res_options" != "yes"; then
715         LIBRESOLV="-lresolv"
716   fi
717   LIBS="$t_oldLibs"
719   if test "x$LIBRESOLV" = "x"; then
720         AC_CHECK_LIB(resolv, res_query, [LIBRESOLV=-lresolv])
721         LIBS="$t_oldLibs"
722   fi
724 AC_SUBST(LIBRESOLV)
726 LIBS="$LIBS $LIBRESOLV"
728 dnl #######################################################################
729 dnl # Check for startup notification
730 dnl #######################################################################
731 if test "x$enable_startup_notification" = "xyes"; then
732         PKG_CHECK_MODULES(STARTUP_NOTIFICATION, libstartup-notification-1.0 >= 0.5,
733         [
734                 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, [Define if we're using libstartup-notification.])
735                 echo "Building with libstartup-notification"
736                 enable_startup_notification=yes
737         ],
738         [
739                 echo "Building without libstartup-notification"
740                 enable_startup_notification=no
741         ])
743         AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
744         AC_SUBST(STARTUP_NOTIFICATION_LIBS)
747 dnl #######################################################################
748 dnl # Check for D-Bus support
749 dnl #######################################################################
750 if test "x$enable_dbus" = "xyes"; then
751         PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.60, dbus-glib-1 >= 0.60],
752         [
753                 AC_DEFINE(HAVE_DBUS_GLIB, 1, [Define if glib bindings of D-Bus are available])
754                 enable_dbus=yes
755         ],
756         [
757                 echo "D-Bus requirements not met. D-Bus support not activated."
758                 enable_dbus=no
759         ])
760         AC_SUBST(DBUS_CFLAGS)
761         AC_SUBST(DBUS_LIBS)
764 dnl #######################################################################
765 dnl # Configure address book support
766 dnl #######################################################################
768 dnl #######################################################################
769 dnl # Check for alternate address book support
770 dnl #######################################################################
771 AC_MSG_CHECKING([whether DBUS support for alternate address book is present])
772 if test x"$enable_dbus" = xyes; then
773         AC_MSG_RESULT([yes])
774         AC_MSG_CHECKING([whether to enable alternate address book])
775         if test x"$enable_alternate_addressbook" = xyes; then
776                 AC_MSG_RESULT([yes])
777                 PKG_CHECK_MODULES(CONTACTS, [claws-contacts],
778                 [
779                         AC_DEFINE(USE_ALT_ADDRBOOK, 1, [Define if alternate address book is to be activated.])
780                         enable_alternate_addressbook=yes
781                         AC_SUBST(CONTACTS_CFLAGS)
782                         AC_SUBST(CONTACTS_LIBS)
783                 ],
784                 [
785                         enable_alternate_addressbook=no
786                 ])
787         else
788                 AC_MSG_RESULT([no])
789                 enable_alternate_addressbook=no
790         fi
791 else
792         AC_MSG_RESULT([no])
793         enable_alternate_addressbook=no
796 dnl #######################################################################
797 dnl # Check for old address book support
798 dnl #######################################################################
799 if test x"$enable_alternate_addressbook" = xno; then
800         dnl for LDAP support in addressbook
801         dnl no check for libraries; dynamically loaded
802         AC_MSG_CHECKING([whether to use LDAP])
803         if test x"$enable_ldap" = xno; then
804                 AC_MSG_RESULT(no)
805         elif test x"$enable_ldap" = xyes -a x"$enable_pthread" = xno; then
806                 AC_MSG_RESULT(no - LDAP support needs pthread support)
808                 enable_ldap=no
809         elif test x"$platform_win32" = xyes; then
810                 AC_MSG_RESULT(yes)
811                 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
812                 LDAP_LIBS="-lwldap32"
813                 AC_SUBST(LDAP_LIBS)
814         else
815                 AC_MSG_RESULT(yes)
817                 dnl check for available libraries, and pull them in
818                 AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="$LDAP_LIBS -lresolv")
819                 AC_CHECK_LIB(socket, bind, LDAP_LIBS="$LDAP_LIBS -lsocket")
820                 AC_CHECK_LIB(nsl, gethostbyaddr, LDAP_LIBS="$LDAP_LIBS -lnsl")
821                 AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="$LDAP_LIBS -llber",,
822                                  $LDAP_LIBS)
824                 AC_CHECK_HEADERS(ldap.h lber.h,
825                                  [ enable_ldap=yes ],
826                                  [ enable_ldap=no ])
828                 if test "$enable_ldap" = yes; then
829                         AC_CHECK_LIB(ldap, ldap_open,
830                                          [ enable_ldap=yes ],
831                                          [ enable_ldap=no ],
832                                          $LDAP_LIBS)
834                         AC_CHECK_LIB(ldap, ldap_start_tls_s,
835                                              [ ac_cv_have_tls=yes ],
836                                              [ ac_cv_have_tls=no ])
838                 fi
840                 AC_MSG_CHECKING([whether ldap library is available])
841                 AC_MSG_RESULT($enable_ldap)
843                 AC_MSG_CHECKING([whether TLS library is available])
844                 AC_MSG_RESULT($ac_cv_have_tls)
846                 if test "$enable_ldap" = yes; then
847                         AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
848                         LDAP_LIBS="$LDAP_LIBS -lldap"
849                         AC_SUBST(LDAP_LIBS)
850                         if test "$ac_cv_have_tls" = yes; then
851                                 AC_DEFINE(USE_LDAP_TLS, 1, Define if you want LDAP TLS support in addressbook.)
852                         fi
853                         dnl As of OpenLDAP API version 3000 a number of functions has
854                         dnl been deprecated. As Claws-mail compiles and runs on many
855                         dnl platforms and many versions of OpenLDAP we need to be able
856                         dnl to switch between the old and new API because new API has
857                         dnl added new functions replacing old ones and at the same time
858                         dnl old functions has been changed.
859                         dnl If cross-compiling defaults to enable deprecated features
860                         dnl for maximum portability
861                         AC_MSG_CHECKING([The API version of OpenLDAP])
862                         AC_RUN_IFELSE(
863                                 [AC_LANG_PROGRAM(
864                                  [#include <ldap.h>],
865                                  [if (LDAP_API_VERSION >= 3000)
866                                                 return 1
867                                 ])],
868                                 [AC_MSG_RESULT([version < 3000])
869                                  AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)],
870                                 [AC_MSG_RESULT([version >= 3000])
871                                  AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 1, Define if OpenLDAP API is at least version 3000.)],
872                                 [AC_MSG_RESULT([Enabling deprecated features in OpenLDAP])
873                                  AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)
874                                  AC_DEFINE(LDAP_DEPRECATED, 1, Define to activate deprecated features in OpenLDAP)]
875                         )
876                 fi
877         fi
879         dnl for JPilot support in addressbook
880         dnl no check for libraries; these are dynamically loaded
881         AC_MSG_CHECKING([whether to use JPilot])
882         if test "$enable_jpilot" = yes; then
883                 AC_MSG_RESULT(yes)
884                 AC_CHECK_HEADERS(pi-args.h pi-appinfo.h pi-address.h pi-version.h,
885                                  [ AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ],
886                                  [ enable_jpilot=no ])
887                 if test "$enable_jpilot" = no; then
888                         AC_CHECK_HEADERS(libpisock/pi-args.h libpisock/pi-appinfo.h libpisock/pi-address.h libpisock/pi-version.h,
889                                          [ enable_jpilot=yes
890                                            AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ])
891                 fi
893                 AC_CHECK_LIB(pisock, unpack_Address, [JPILOT_LIBS="-lpisock"], [JPILOT_LIBS="" enable_jpilot="no"])
894                 if test x"$enable_jpilot" = xyes; then
895                         AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.)
896                 else
897                         AC_MSG_NOTICE([JPilot support not available])
898                 fi
899                 AC_SUBST(JPILOT_LIBS)
900         else
901                 AC_MSG_RESULT(no)
902         fi
905 AM_CONDITIONAL(BUILD_ALTADDRBOOK, test x"$enable_alternate_addressbook" = x"yes")
907 dnl #######################################################################
908 dnl # Check for NetworkManager support
909 dnl #######################################################################
910 if test x"$enable_dbus" = xyes; then
911         if test x"$enable_networkmanager" = xyes; then
912                 PKG_CHECK_MODULES(NETWORKMANAGER_SUPPORT, libnm,
913                 [
914                         AC_DEFINE(HAVE_NETWORKMANAGER_SUPPORT, 1, [Define if NetworkManager support is to be included.])
915                         echo "Building with NetworkManager support"
916                         enable_networkmanager=yes
917                 ],
918                 [
919                         echo "NetworkManager not found."
920                         enable_networkmanager=no
921                 ])
922                 AC_SUBST(NETWORKMANAGER_SUPPORT_CFLAGS)
923         fi
924 else
925         echo "NetworkManager support deactivated as D-Bus requirements were not met."
926         enable_networkmanager=no
929 dnl Libetpan
930 AC_MSG_CHECKING([whether to use libetpan])
931 if test x"$enable_libetpan" = xyes; then
932     AC_MSG_RESULT(yes)
934     libetpan_config=no
935     libetpan_result=no
936     libetpan_versiontype=0
938     # since 1.9.4, libetpan uses pkg-config
939     PKG_CHECK_MODULES([LIBETPAN], [libetpan >= 1.9.4],
940     [
941         LIBETPAN_VERSION=`pkg-config --modversion libetpan | $AWK -F. '{printf "%d", ($1 * 10000) + ($2 * 100) + $3}'`
942         libetpan_config=yes
943     ],
944     [
945         # before 1.9.4, libetpan uses its own libetpan-config script
946         AC_PATH_PROG(libetpanconfig, [libetpan-config])
947         if test "x$libetpanconfig" != "x"; then
948             LIBETPAN_CPPFLAGS="`$libetpanconfig --cflags`"
949             LIBETPAN_LIBS="`$libetpanconfig --libs`"
950             # support libetpan version like x.x and x.x.x
951             libetpan_versiontype=`$libetpanconfig --version | tr -dc . | wc -c`
952             if test $libetpan_versiontype -eq 1; then
953                 LIBETPAN_VERSION=`$libetpanconfig --version | $AWK -F. '{printf "%d", ($1 * 100) + $2}'`
954             else
955                 LIBETPAN_VERSION=`$libetpanconfig --version | $AWK -F. '{printf "%d", ($1 * 10000) + ($2 * 100) + $3}'`
956             fi
957             libetpan_config=yes
958         fi
959     ])
960     if test "x$libetpan_config" = "xyes"; then
961         CPPFLAGS="$CPPFLAGS $LIBETPAN_FLAGS"
962         AC_CHECK_HEADER(libetpan/libetpan.h, [libetpan_result=yes])
963         if test "x$libetpan_result" = "xyes"; then
964             AC_MSG_CHECKING([whether libetpan-config hints compiles and links fine])
965             LIBS="$LIBS $LIBETPAN_LIBS"
966             AC_TRY_LINK([#include <libetpan/dbstorage.h>], [db_mailstorage_init(NULL, NULL);], [libetpan_result=yes], [libetpan_result=no])
967             AC_MSG_RESULT([$libetpan_result])
968         fi
969     fi
970     if test "x$libetpan_result" = "xyes"; then
971         if test $libetpan_versiontype -eq 1; then
972             if test "$LIBETPAN_VERSION" -lt "57"; then
973                 AC_MSG_RESULT([*** Claws Mail requires libetpan 0.57 or newer. See http://www.etpan.org/])
974                 AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 and/or NNTP support.])
975                 AC_MSG_ERROR([libetpan 0.57 not found])
976             fi
977         fi
978         AC_SUBST(LIBETPAN_FLAGS)
979         AC_SUBST(LIBETPAN_LIBS)
980         AC_DEFINE(HAVE_LIBETPAN, 1, Define if you want IMAP and/or NNTP support.)
981     else
982         AC_MSG_RESULT([*** Claws Mail requires libetpan 0.57 or newer. See http://www.etpan.org/ ])
983         AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 and/or NNTP support.])
984         AC_MSG_ERROR([libetpan 0.57 not found])
985     fi
986 else
987     AC_MSG_RESULT(no)
989 AM_CONDITIONAL(CLAWS_LIBETPAN, test "x$libetpan_result" = "xyes")
991 dnl librsvg
992 AC_MSG_CHECKING([whether to use librsvg])
993 if test x"$enable_svg" = xyes; then
994         AC_MSG_RESULT(yes)
995     PKG_CHECK_MODULES([SVG], [librsvg-2.0 >= 2.39.0 cairo >= 1.0.0],
996     [
997         AC_SUBST(SVG_CFLAGS)
998         AC_SUBST(SVG_LIBS)
999                 AC_DEFINE(HAVE_SVG, 1, [Define if librsvg2 is available for SVG support])
1000                 enable_svg=yes
1001         ],
1002         [
1003                 AC_MSG_NOTICE([SVG support deactivated as librsvg2 >= 2.39.0 was not found])
1004                 enable_svg=no
1005         ])
1006 else
1007         AC_MSG_RESULT(no)
1010 AC_MSG_CHECKING([whether to use valgrind])
1011 if test x$enable_valgrind = xyes; then
1012         AC_MSG_RESULT(yes)
1013         PKG_CHECK_MODULES(VALGRIND, valgrind >= 2.4.0,
1014                           enable_valgrind=yes, enable_valgrind=no)
1015         if test x"$enable_valgrind" = xyes; then
1016                 AC_DEFINE(HAVE_VALGRIND, 1, Define if you want valgrind support)
1017         else
1018                 AC_MSG_RESULT(not found)
1019         fi
1020 else
1021         AC_MSG_RESULT(no)
1023 AM_CONDITIONAL(CLAWS_VALGRIND, test x"$enable_valgrind" = x"yes")
1025 AC_MSG_CHECKING([whether to build unit tests])
1026 if test x$enable_tests = xyes; then
1027         AC_MSG_RESULT(yes)
1028 else
1029         AC_MSG_RESULT(no)
1031 AM_CONDITIONAL(BUILD_TESTS, test "x$enable_tests" = "xyes")
1033 dnl *************************
1034 dnl ** section for plugins **
1035 dnl *************************
1037 PLUGINS=""
1038 DISABLED_PLUGINS=""
1039 MISSING_DEPS_PLUGINS=""
1041 dnl First we set the enabled status - either enabled (yes), auto-enabled (auto)
1042 dnl or (auto-)disabled (no for both)
1044 dnl All plugins are auto-enabled except for Demo which is just there to help
1045 dnl potential plugins writers.
1047 AC_ARG_ENABLE(acpi_notifier-plugin,
1048                 [  --disable-acpi_notifier-plugin  Do not build acpi_notifier plugin],
1049                 [enable_acpi_notifier_plugin=$enableval], [enable_acpi_notifier_plugin=auto])
1051 AC_ARG_ENABLE(address_keeper-plugin,
1052                 [  --disable-address_keeper-plugin Do not build address_keeper plugin],
1053                 [enable_address_keeper_plugin=$enableval], [enable_address_keeper_plugin=auto])
1055 AC_ARG_ENABLE(archive-plugin,
1056                 [  --disable-archive-plugin        Do not build archive plugin],
1057                 [enable_archive_plugin=$enableval], [enable_archive_plugin=auto])
1059 AC_ARG_ENABLE(att_remover-plugin,
1060                 [  --disable-att_remover-plugin    Do not build att_remover plugin],
1061                 [enable_att_remover_plugin=$enableval], [enable_att_remover_plugin=auto])
1063 AC_ARG_ENABLE(attachwarner-plugin,
1064                 [  --disable-attachwarner-plugin   Do not build attachwarner plugin],
1065                 [enable_attachwarner_plugin=$enableval], [enable_attachwarner_plugin=auto])
1067 AC_ARG_ENABLE(bogofilter-plugin,
1068                 [  --disable-bogofilter-plugin     Do not build bogofilter plugin],
1069                 [enable_bogofilter_plugin=$enableval], [enable_bogofilter_plugin=auto])
1071 AC_ARG_ENABLE(bsfilter-plugin,
1072                 [  --disable-bsfilter-plugin       Do not build bsfilter plugin],
1073                 [enable_bsfilter_plugin=$enableval], [enable_bsfilter_plugin=auto])
1075 AC_ARG_ENABLE(clamd-plugin,
1076                 [  --disable-clamd-plugin          Do not build clamd plugin],
1077                 [enable_clamd_plugin=$enableval], [enable_clamd_plugin=auto])
1079 AC_ARG_ENABLE(dillo-plugin,
1080                 [  --disable-dillo-plugin          Do not build dillo plugin],
1081                 [enable_dillo_plugin=$enableval], [enable_dillo_plugin=auto])
1083 AC_ARG_ENABLE(fancy-plugin,
1084                 [  --disable-fancy-plugin          Do not build fancy plugin],
1085                 [enable_fancy_plugin=$enableval], [enable_fancy_plugin=auto])
1087 AC_ARG_ENABLE(fetchinfo-plugin,
1088                 [  --disable-fetchinfo-plugin      Do not build fetchinfo plugin],
1089                 [enable_fetchinfo_plugin=$enableval], [enable_fetchinfo_plugin=auto])
1091 AC_ARG_ENABLE(gdata-plugin,
1092                 [  --disable-gdata-plugin          Do not build gdata plugin],
1093                 [enable_gdata_plugin=$enableval], [enable_gdata_plugin=auto])
1095 AC_ARG_ENABLE(libravatar-plugin,
1096                 [  --disable-libravatar-plugin     Do not build libravatar  plugin],
1097                 [enable_libravatar_plugin=$enableval], [enable_libravatar_plugin=auto])
1099 AC_ARG_ENABLE(litehtml_viewer-plugin,
1100                 [  --disable-litehtml_viewer-plugin       Do not build litehtml_viewer plugin],
1101                 [enable_litehtml_viewer_plugin=$enableval], [enable_litehtml_viewer_plugin=auto])
1103 AC_ARG_ENABLE(mailmbox-plugin,
1104                 [  --disable-mailmbox-plugin       Do not build mailmbox plugin],
1105                 [enable_mailmbox_plugin=$enableval], [enable_mailmbox_plugin=auto])
1107 AC_ARG_ENABLE(managesieve-plugin,
1108                 [  --disable-managesieve-plugin    Do not build managesieve plugin],
1109                 [enable_managesieve_plugin=$enableval], [enable_managesieve_plugin=auto])
1111 AC_ARG_ENABLE(newmail-plugin,
1112                 [  --disable-newmail-plugin        Do not build newmail plugin],
1113                 [enable_newmail_plugin=$enableval], [enable_newmail_plugin=auto])
1115 AC_ARG_ENABLE(notification-plugin,
1116                 [  --disable-notification-plugin   Do not build notification plugin],
1117                 [enable_notification_plugin=$enableval], [enable_notification_plugin=auto])
1119 AC_ARG_ENABLE(pdf_viewer-plugin,
1120                 [  --disable-pdf_viewer-plugin     Do not build pdf_viewer plugin],
1121                 [enable_pdf_viewer_plugin=$enableval], [enable_pdf_viewer_plugin=auto])
1123 AC_ARG_ENABLE(perl-plugin,
1124                 [  --disable-perl-plugin           Do not build perl plugin],
1125                 [enable_perl_plugin=$enableval], [enable_perl_plugin=auto])
1127 AC_ARG_ENABLE(python-plugin,
1128                 [  --disable-python-plugin         Do not build python plugin],
1129                 [enable_python_plugin=$enableval], [enable_python_plugin=auto])
1131 AC_ARG_ENABLE(pgpcore-plugin,
1132                 [  --disable-pgpcore-plugin        Do not build pgpcore plugin],
1133                 [enable_pgpcore_plugin=$enableval], [enable_pgpcore_plugin=auto])
1135 AC_ARG_ENABLE(pgpmime-plugin,
1136                 [  --disable-pgpmime-plugin        Do not build pgpmime plugin],
1137                 [enable_pgpmime_plugin=$enableval], [enable_pgpmime_plugin=auto])
1139 AC_ARG_ENABLE(pgpinline-plugin,
1140                 [  --disable-pgpinline-plugin      Do not build pgpinline plugin],
1141                 [enable_pgpinline_plugin=$enableval], [enable_pgpinline_plugin=auto])
1143 AC_ARG_ENABLE(rssyl-plugin,
1144                 [  --disable-rssyl-plugin          Do not build rssyl plugin],
1145                 [enable_rssyl_plugin=$enableval], [enable_rssyl_plugin=auto])
1147 AC_ARG_ENABLE(smime-plugin,
1148                 [  --disable-smime-plugin          Do not build smime plugin],
1149                 [enable_smime_plugin=$enableval], [enable_smime_plugin=auto])
1151 AC_ARG_ENABLE(spamassassin-plugin,
1152                 [  --disable-spamassassin-plugin   Do not build spamassassin plugin],
1153                 [enable_spamassassin_plugin=$enableval], [enable_spamassassin_plugin=auto])
1155 AC_ARG_ENABLE(spam_report-plugin,
1156                 [  --disable-spam_report-plugin    Do not build spam_report plugin],
1157                 [enable_spam_report_plugin=$enableval], [enable_spam_report_plugin=auto])
1159 AC_ARG_ENABLE(tnef_parse-plugin,
1160                 [  --disable-tnef_parse-plugin     Do not build tnef_parse plugin],
1161                 [enable_tnef_parse_plugin=$enableval], [enable_tnef_parse_plugin=auto])
1163 AC_ARG_ENABLE(vcalendar-plugin,
1164                 [  --disable-vcalendar-plugin      Do not build vcalendar plugin],
1165                 [enable_vcalendar_plugin=$enableval], [enable_vcalendar_plugin=auto])
1167 dnl disabled by default
1168 AC_ARG_ENABLE(demo-plugin,
1169                 [  --enable-demo-plugin            Build demo plugin],
1170                 [enable_demo_plugin=$enableval], [enable_demo_plugin=no])
1173 dnl Then we check (unconditionnaly) for plugins dependencies
1174 dnl Some dependencies are optional, some mandatory. This is taken care of
1175 dnl later.
1177 dnl During this dependancy check we do the checks themselves, define HAVE_X to
1178 dnl either yes or no, and do the AC_SUBST calls.
1180 dnl Archive:            libarchive
1181 dnl Fancy:              Webkit, curl, optionally libsoup-gnome
1182 dnl Gdata:              libgdata
1183 dnl Litehtml            a C++ compiler, >=glib-2.36, cairo, fontconfig, gumbo, curl
1184 dnl Libravatar:         libcurl
1185 dnl Notification:       optionally libnotify  unity/messaging-menu
1186 dnl                                libcanberra_gtk hotkey
1187 dnl Pdf-Viewer:         libpoppler
1188 dnl Perl:               sed perl
1189 dnl PGP/Core:           libgpgme
1190 dnl PGP/Mime:           pgpcore libgpgme
1191 dnl PGP/Inline:         pgpcore libgpgme
1192 dnl S/Mime:             pgpcore libgpgme
1193 dnl Python:             Python
1194 dnl RSSyl:              expat libcurl
1195 dnl SpamReport:         libcurl
1196 dnl vCalendar:          libcurl, libical
1197 dnl tnef_parse:         libytnef
1199 dnl libcurl ********************************************************************
1200 PKG_CHECK_MODULES(CURL, libcurl, HAVE_CURL=yes, HAVE_CURL=no)
1201 AC_SUBST(CURL_LIBS)
1202 AC_SUBST(CURL_CFLAGS)
1204 dnl expat **********************************************************************
1205 PKG_CHECK_MODULES(EXPAT, expat, HAVE_EXPAT=yes, HAVE_EXPAT=no)
1207 if test x"$HAVE_EXPAT" = xno; then
1208         AC_CHECK_HEADER(expat.h, [expat_header=yes], [expat_header=no])
1209         AC_CHECK_LIB(expat, XML_ParserCreate, [expat_lib=yes], [expat_lib=no])
1210         if test x"$expat_header" = xyes -a x"$expat_lib"=xyes; then
1211                 HAVE_EXPAT=yes
1212                 EXPAT_CFLAGS=""
1213                 EXPAT_LIBS="-lexpat"
1214         fi
1217 AC_SUBST(EXPAT_CFLAGS)
1218 AC_SUBST(EXPAT_LIBS)
1220 dnl webkit *********************************************************************
1221 PKG_CHECK_MODULES(WEBKIT, webkit-1.0 >= 1.10.0, HAVE_WEBKIT=yes, HAVE_WEBKIT=no)
1222 AC_SUBST(WEBKIT_LIBS)
1223 AC_SUBST(WEBKIT_CFLAGS)
1225 dnl libsoup ********************************************************************
1226 PKG_CHECK_MODULES(LIBSOUP, libsoup-2.4, HAVE_LIBSOUP=yes, HAVE_LIBSOUP=no)
1227 if test x"$HAVE_LIBSOUP" = xyes; then
1228         AC_DEFINE(HAVE_LIBSOUP, 1, [Define if libsoup is available])
1230 AC_SUBST(LIBSOUP_CFLAGS)
1231 AC_SUBST(LIBSOUP_LIBS)
1233 dnl libsoup-gnome **************************************************************
1234 PKG_CHECK_MODULES(LIBSOUP_GNOME, libsoup-gnome-2.4 >= 2.26, HAVE_LIBSOUP_GNOME=yes, HAVE_LIBSOUP_GNOME=no)
1235 if test x"$HAVE_LIBSOUP_GNOME" = xyes; then
1236         AC_DEFINE(HAVE_LIBSOUP_GNOME, 1, [Define if libsoup_gnome is available])
1238 AC_SUBST(LIBSOUP_GNOME_CFLAGS)
1239 AC_SUBST(LIBSOUP_GNOME_LIBS)
1241 dnl libarchive *****************************************************************
1242 PKG_CHECK_MODULES(LIBARCHIVE, libarchive, HAVE_ARCHIVE=yes, HAVE_ARCHIVE=no)
1243 AC_SUBST(ARCHIVE_LIBS)
1244 AC_SUBST(ARCHIVE_CFLAGS)
1245 AC_CHECK_LIB([archive], [archive_read_new],
1246                        ARCHIVE_LIBS=-larchive
1247                        HAVE_ARCHIVE=yes
1248                        AC_SUBST(ARCHIVE_LIBS,$ARCHIVE_CFLAGS),
1249                        HAVE_ARCHIVE=no
1250                        )
1252 dnl libgdata *******************************************************************
1253 PKG_CHECK_MODULES(GDATA, libgdata >= 0.17.2, HAVE_GDATA=yes, HAVE_GDATA=no)
1254 AC_SUBST(GDATA_CFLAGS)
1255 AC_SUBST(GDATA_LIBS)
1257 dnl cairo **********************************************************************
1258 PKG_CHECK_MODULES(CAIRO, cairo >= 1.12.0, HAVE_CAIRO=yes, HAVE_CAIRO=no)
1259 AC_SUBST(CAIRO_CFLAGS)
1260 AC_SUBST(CAIRO_LIBS)
1262 dnl fontconfig *****************************************************************
1263 PKG_CHECK_MODULES(FONTCONFIG, fontconfig, HAVE_FONTCONFIG=yes, HAVE_FONTCONFIG=no)
1264 AC_SUBST(FONTCONFIG_CFLAGS)
1265 AC_SUBST(FONTCONFIG_LIBS)
1267 dnl gumbo **********************************************************************
1268 PKG_CHECK_MODULES(LIBGUMBO, gumbo >= 0.10, HAVE_LIBGUMBO=yes, HAVE_LIBGUMBO=no)
1269 AC_SUBST(LIBGUMBO_CFLAGS)
1270 AC_SUBST(LIBGUMBO_LIBS)
1272 dnl libical ********************************************************************
1273 PKG_CHECK_MODULES(LIBICAL, libical >= 2.0, HAVE_LIBICAL=yes, HAVE_LIBICAL=no)
1274 AC_SUBST(LIBICAL_CFLAGS)
1275 AC_SUBST(LIBICAL_LIBS)
1277 dnl Poppler ********************************************************************
1278 PKG_CHECK_MODULES(POPPLER, poppler-glib >= 0.12.0, HAVE_POPPLER=yes, HAVE_POPPLER=no)
1279 AC_SUBST(POPPLER_LIBS)
1280 AC_SUBST(POPPLER_CFLAGS)
1282 dnl check for Poppler extra features that we conditionally support
1283 if test x"$HAVE_POPPLER" = xyes; then
1284         OLD_CFLAGS=$CFLAGS
1285         CFLAGS="$POPPLER_CFLAGS $GTK_CFLAGS $GLIB_CFLAGS"
1286         AC_CHECK_DECL(POPPLER_DEST_NAMED,
1287                 [AC_DEFINE([HAVE_POPPLER_DEST_NAMED], [], [Description])],
1288                 ,[#include <poppler-action.h>])
1289         AC_CHECK_DECL(POPPLER_DEST_XYZ,
1290                 [AC_DEFINE([HAVE_POPPLER_DEST_XYZ], [], [Description])],
1291                 ,[#include <poppler-action.h>])
1292         CFLAGS=$OLD_CFLAGS
1295 dnl perl ***********************************************************************
1296 AC_CHECK_PROG(HAVE_PERL, perl, yes, no)
1297 if test x"$HAVE_PERL" = xyes; then
1298         AC_MSG_CHECKING(for perl >= 5.8.0)
1299         PERL_VER=`perl -e 'print $] > 5.0079999?"yes":"no"'`
1300         if test "$PERL_VER" = "yes"; then
1301                 AC_MSG_RESULT(yes)
1302         else
1303                 AC_MSG_RESULT(no)
1304                 HAVE_PERL=no
1305         fi
1307 if test x"$HAVE_PERL" = xyes; then
1308         AC_MSG_CHECKING(for Perl compile flags)
1309         PERL_CFLAGS=`perl -MExtUtils::Embed -e ccopts`
1310         PERL_CFLAGS=`echo $PERL_CFLAGS | sed 's/-D_FILE_OFFSET_BITS=[[0-9]]*//'`
1311         PERL_LDFLAGS=`perl -MExtUtils::Embed -e ldopts |sed 's/-lgdbm\>//'`
1312         PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-ldb\>//'`
1313         PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-lndbm\>//'`
1314         PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-lc\>//'`
1315         AC_MSG_RESULT(ok)
1316         AC_MSG_NOTICE([Adding perl LIBS ${PERL_CFLAGS}])
1317         
1318         if test x"$HAVE_PERL" = xyes; then
1319                 AC_CHECK_LIB(perl,perl_alloc,[AC_DEFINE(HAVE_LIBPERL, 1, Check for libperl.)], 
1320                                              [ HAVE_LIBPERL=no ])
1321         fi
1322         if test x"$HAVE_LIBPERL" = xno; then
1323                 LIBPERL_PREFIX=`perl -MExtUtils::Embed -e perl_inc`
1324                 LIBPERL_PREFIX=`echo $LIBPERL_PREFIX |sed 's/-I//'`
1325                 AC_MSG_CHECKING([for libperl.so])
1326                 if test -f "$LIBPERL_PREFIX/libperl.so"; then
1327                         AC_MSG_RESULT(yes)
1328                         HAVE_LIBPERL=yes
1329                 else
1330                         AC_MSG_RESULT(no)
1331                 fi      
1332         fi
1333         PERL="perl"
1334         AC_SUBST(PERL)
1335         AC_SUBST(PERL_CFLAGS)
1336         AC_SUBST(PERL_LDFLAGS)
1339 dnl Gpgme **********************************************************************
1340 AM_PATH_GPGME(1.0.0, HAVE_GPGME=yes, HAVE_GPGME=no)
1341 if test x"$HAVE_GPGME" = xyes; then
1342         AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.)
1343         AM_PATH_GPGME(1.1.1, AC_DEFINE(HAVE_GPGME_PKA_TRUST, 1, [Define if GPGME supports PKA.]))
1346 dnl Python *********************************************************************
1347 missing_python=""
1348 PKG_CHECK_MODULES(PYTHON, python2, HAVE_PYTHON=yes, HAVE_PYTHON=no)
1349 if test x"$HAVE_PYTHON" = xno; then
1350         missing_python="python2"
1352 if test x"$HAVE_PYTHON" = xyes; then
1353         PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= 2.10.3, [AC_DEFINE(ENABLE_PYTHON, [1], [Enable Python support])], HAVE_PYTHON=no)
1354         if test x"$HAVE_PYTHON" = xno; then
1355                 missing_python="pygtk-2.0 >= 2.10.3"
1356         fi
1358 AC_SUBST(PYTHON_SHARED_LIB)
1359 AC_SUBST(PYTHON_CFLAGS)
1360 AC_SUBST(PYTHON_LIBS)
1361 AC_SUBST(PYGTK_CFLAGS)
1362 AC_SUBST(PYGTK_LIBS)
1364 dnl libnotify ******************************************************************
1365 PKG_CHECK_MODULES(libnotify, libnotify >= 0.4.3, HAVE_LIBNOTIFY=yes, HAVE_LIBNOTIFY=no)
1366 if test x"$HAVE_LIBNOTIFY" = xyes; then
1367         AC_DEFINE(HAVE_LIBNOTIFY, 1, [Define if libnotify support is enabled])
1369 AC_SUBST(libnotify_CFLAGS)
1370 AC_SUBST(libnotify_LIBS)
1372 dnl libcanberra-gtk ************************************************************
1373 PKG_CHECK_MODULES(libcanberra_gtk, libcanberra-gtk >= 0.6, HAVE_LIBCANBERRA_GTK=yes, HAVE_LIBCANBERRA_GTK=no)
1374 if test x"$HAVE_LIBCANBERRA_GTK" = xyes; then
1375         AC_DEFINE(HAVE_LIBCANBERRA_GTK, 1, [Define if libcanberra-gtk support is enabled])
1377 AC_SUBST(libcanberra_gtk_CFLAGS)
1378 AC_SUBST(libcanberra_gtk_LIBS)
1380 dnl unity/messaging-menu *******************************************************
1381 PKG_CHECK_MODULES(unity, unity messaging-menu, HAVE_UNITY=yes, HAVE_UNITY=no)
1382 if test x"$HAVE_UNITY" = xyes; then
1383         AC_DEFINE(NOTIFICATION_INDICATOR, 1, [Activate support for unity and messaging-menu])
1385 AC_SUBST(unity_CFLAGS)
1386 AC_SUBST(unity_LIBS)
1388 dnl hotkeys ********************************************************************
1389 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)
1390 if test x"$HAVE_HOTKEYS" = xyes; then
1391         AC_DEFINE(NOTIFICATION_HOTKEYS, 1, Activate support for global hotkeys)
1393 AC_SUBST(CM_NP_HOTKEY_CFLAGS)
1394 AC_SUBST(CM_NP_HOTKEY_LIBS)
1396 dnl libytnef *******************************************************************
1397 YTNEF_CFLAGS=""
1398 YTNEF_LIBS=""
1399 have_ytnef=0
1400 # Check both ytnef.h and libytnef/ytnef.h, and adjust YTNEF_CFLAGS
1401 # accordingly
1402 AC_CHECK_HEADER(ytnef.h, [have_ytnef=1], [have_ytnef=0])
1403 if test $have_ytnef -eq 0; then
1404         AC_CHECK_HEADER(libytnef/ytnef.h,
1405                                                                         [have_ytnef=1;
1406                                                                          YTNEF_CFLAGS="${YTNEF_CFLAGS} -DYTNEF_H_SUBDIR"],
1407                                                                         [have_ytnef=0])
1409 if test $have_ytnef -eq 1; then
1410         AC_MSG_CHECKING([how libytnef's SwapDDWord() should be called])
1411         # Now we have to figure out which libytnef version we're using,
1412         # based on whether SwapDDWord takes one argument or two.
1413         if test "x${YTNEF_CFLAGS}" = "x"; then
1414                 ytnef_include="#include <ytnef.h>"
1415         else
1416                 ytnef_include="#include <libytnef/ytnef.h>"
1417         fi
1418         AC_TRY_COMPILE([#include <stdio.h>
1419                                                                         ${ytnef_include}],
1420                                                                         [SwapDDWord(0, 0);],
1421                                                                         [have_ytnef=1],
1422                                                                         [have_ytnef=0])
1423         if test $have_ytnef -eq 0; then
1424                 AC_TRY_COMPILE([#include <stdio.h>
1425                                                                                 ${ytnef_include}],
1426                                                                                 [SwapDDWord(0);],
1427                                                                                 [have_ytnef=1;
1428                                                                                  YTNEF_CFLAGS="${YTNEF_CFLAGS} -DYTNEF_OLD_SWAPDDWORD"],
1429                                                                                 [have_ytnef=0])
1430         fi
1431         if test $have_ytnef -eq 1; then
1432                 YTNEF_LIBS="-lytnef"
1433                 AC_MSG_RESULT(ok)
1434         else
1435                 AC_MSG_RESULT(no idea, unsupported libytnef version?)
1436         fi
1438 AC_SUBST(YTNEF_CFLAGS)
1439 AC_SUBST(YTNEF_LIBS)
1441 dnl Third, we now cross the requested plugins and the available dependencies
1442 dnl If some dependencies are missing and the plugin was explicitely enabled,
1443 dnl we error out, else we only inform.
1445 AC_MSG_CHECKING([whether to build acpi_notifier plugin])
1446 if test x"$enable_acpi_notifier_plugin" != xno; then
1447         PLUGINS="$PLUGINS acpi_notifier"
1448         AC_MSG_RESULT(yes)
1449 else
1450         DISABLED_PLUGINS="$DISABLED_PLUGINS acpi_notifier"
1451         AC_MSG_RESULT(no)
1454 AC_MSG_CHECKING([whether to build address_keeper plugin])
1455 if test x"$enable_address_keeper_plugin" != xno; then
1456         PLUGINS="$PLUGINS address_keeper"
1457         AC_MSG_RESULT(yes)
1458 else
1459         DISABLED_PLUGINS="$DISABLED_PLUGINS address_keeper"
1460         AC_MSG_RESULT(no)
1463 AC_MSG_CHECKING([whether to build archive plugin])
1464 if test x"$enable_archive_plugin" != xno; then
1465         dependencies_missing=""
1467         if test x"$HAVE_ARCHIVE" = xno; then
1468                 dependencies_missing="libarchive $dependencies_missing"
1469         fi
1471         if test x"$dependencies_missing" = x; then
1472                 PLUGINS="$PLUGINS archive"
1473                 AC_MSG_RESULT(yes)
1474         elif test x"$enable_archive_plugin" = xauto; then
1475                 AC_MSG_RESULT(no)
1476                 AC_MSG_WARN("Plugin archive will not be built; missing $dependencies_missing")
1477                 enable_archive_plugin=no
1478                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS archive"
1479         else
1480                 AC_MSG_RESULT(no)
1481                 AC_MSG_ERROR("Plugin archive cannot be built; missing $dependencies_missing")
1482         fi
1483 else
1484         DISABLED_PLUGINS="$DISABLED_PLUGINS archive"
1485         AC_MSG_RESULT(no)
1488 AC_MSG_CHECKING([whether to build att_remover plugin])
1489 if test x"$enable_att_remover_plugin" != xno; then
1490         PLUGINS="$PLUGINS att_remover"
1491         AC_MSG_RESULT(yes)
1492 else
1493         DISABLED_PLUGINS="$DISABLED_PLUGINS att_remover"
1494         AC_MSG_RESULT(no)
1497 AC_MSG_CHECKING([whether to build attachwarner plugin])
1498 if test x"$enable_attachwarner_plugin" != xno; then
1499         PLUGINS="$PLUGINS attachwarner"
1500         AC_MSG_RESULT(yes)
1501 else
1502         DISABLED_PLUGINS="$DISABLED_PLUGINS attachwarner"
1503         AC_MSG_RESULT(no)
1506 AC_MSG_CHECKING([whether to build bogofilter plugin])
1507 if test x"$enable_bogofilter_plugin" != xno; then
1508         PLUGINS="$PLUGINS bogofilter"
1509         AC_MSG_RESULT(yes)
1510 else
1511         DISABLED_PLUGINS="$DISABLED_PLUGINS bogofilter"
1512         AC_MSG_RESULT(no)
1515 AC_MSG_CHECKING([whether to build bsfilter plugin])
1516 if test x"$enable_bsfilter_plugin" != xno; then
1517         PLUGINS="$PLUGINS bsfilter"
1518         AC_MSG_RESULT(yes)
1519 else
1520         DISABLED_PLUGINS="$DISABLED_PLUGINS bsfilter"
1521         AC_MSG_RESULT(no)
1524 AC_MSG_CHECKING([whether to build clamd plugin])
1525 if test x"$enable_clamd_plugin" != xno; then
1526         PLUGINS="$PLUGINS clamd"
1527         AC_MSG_RESULT(yes)
1528 else
1529         DISABLED_PLUGINS="$DISABLED_PLUGINS clamd"
1530         AC_MSG_RESULT(no)
1533 AC_MSG_CHECKING([whether to build demo plugin])
1534 if test x"$enable_demo_plugin" != xno; then
1535         PLUGINS="$PLUGINS demo"
1536         AC_MSG_RESULT(yes)
1537 else
1538         DISABLED_PLUGINS="$DISABLED_PLUGINS demo"
1539         AC_MSG_RESULT(no)
1542 AC_MSG_CHECKING([whether to build Dillo plugin])
1543 if test x"$enable_dillo_plugin" != xno; then
1544         PLUGINS="$PLUGINS dillo"
1545         AC_MSG_RESULT(yes)
1546 else
1547         DISABLED_PLUGINS="$DISABLED_PLUGINS dillo"
1548         AC_MSG_RESULT(no)
1551 AC_MSG_CHECKING([whether to build fancy plugin])
1552 if test x"$enable_fancy_plugin" != xno; then
1553         dependencies_missing=""
1555         if test x"$HAVE_WEBKIT" = xno; then
1556                 dependencies_missing="libwebkit-1.0 $dependencies_missing"
1557         fi
1558         if test x"$HAVE_CURL" = xno; then
1559                 dependencies_missing="libcurl $dependencies_missing"
1560         fi
1562         if test x"$dependencies_missing" = x; then
1563                 PLUGINS="$PLUGINS fancy"
1564                 AC_MSG_RESULT(yes)
1565         elif test x"$enable_fancy_plugin" = xauto; then
1566                 AC_MSG_RESULT(no)
1567                 AC_MSG_WARN("Plugin fancy will not be built; missing $dependencies_missing")
1568                 enable_fancy_plugin=no
1569                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS fancy"
1570         else
1571                 AC_MSG_RESULT(no)
1572                 AC_MSG_ERROR("Plugin fancy cannot be built; missing $dependencies_missing")
1573         fi
1574 else
1575         DISABLED_PLUGINS="$DISABLED_PLUGINS fancy"
1576         AC_MSG_RESULT(no)
1579 AC_MSG_CHECKING([whether to build fetchinfo plugin])
1580 if test x"$enable_fetchinfo_plugin" != xno; then
1581         PLUGINS="$PLUGINS fetchinfo"
1582         AC_MSG_RESULT(yes)
1583 else
1584         DISABLED_PLUGINS="$DISABLED_PLUGINS fetchinfo"
1585         AC_MSG_RESULT(no)
1588 AC_MSG_CHECKING([whether to build gdata plugin])
1589 if test x"$enable_gdata_plugin" != xno; then
1590         dependencies_missing=""
1592         if test x"$HAVE_GDATA" = xno; then
1593                 dependencies_missing="libgdata $dependencies_missing"
1594         fi
1596         if test x"$dependencies_missing" = x; then
1597                 PLUGINS="$PLUGINS gdata"
1598                 AC_MSG_RESULT(yes)
1599         elif test x"$enable_gdata_plugin" = xauto; then
1600                 AC_MSG_RESULT(no)
1601                 AC_MSG_WARN("Plugin gdata will not be built; missing $dependencies_missing")
1602                 enable_gdata_plugin=no
1603                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS gdata"
1604         else
1605                 AC_MSG_RESULT(no)
1606                 AC_MSG_ERROR("Plugin gdata cannot be built; missing $dependencies_missing")
1607         fi
1608 else
1609         DISABLED_PLUGINS="$DISABLED_PLUGINS gdata"
1610         AC_MSG_RESULT(no)
1613 AC_MSG_CHECKING([whether to build libravatar plugin])
1614 if test x"$enable_libravatar_plugin" != xno; then
1615         dependencies_missing=""
1617         if test x"$HAVE_CURL" = xno; then
1618                 dependencies_missing="libcurl $dependencies_missing"
1619         fi
1621         if test x"$dependencies_missing" = x; then
1622                 PLUGINS="$PLUGINS libravatar"
1623                 AC_MSG_RESULT(yes)
1624         elif test x"$enable_libravatar_plugin" = xauto; then
1625                 AC_MSG_RESULT(no)
1626                 AC_MSG_WARN("Plugin libravatar will not be built; missing $dependencies_missing")
1627                 enable_libravatar_plugin=no
1628                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS libravatar"
1629         else
1630                 AC_MSG_RESULT(no)
1631                 AC_MSG_ERROR("Plugin libravatar cannot be built; missing $dependencies_missing")
1632         fi
1633 else
1634         DISABLED_PLUGINS="$DISABLED_PLUGINS libravatar"
1635         AC_MSG_RESULT(no)
1638 AC_MSG_CHECKING([whether to build litehtml_viewer plugin])
1639 if test x"$enable_litehtml_viewer_plugin" != xno; then
1640         dependencies_missing=""
1642         if test x"$HAVE_CXX" = xno; then
1643                 dependencies_missing="C++ compiler $dependencies_missing"
1644         fi
1645         PKG_CHECK_EXISTS([glib-2.0 >= 2.36], [],
1646                 [dependencies_missing="glib-2.0 >= 2.36 $dependencies_missing"])
1647         if test x"$HAVE_CAIRO" = xno; then
1648                 dependencies_missing="cairo $dependencies_missing"
1649         fi
1650         if test x"$HAVE_FONTCONFIG" = xno; then
1651                 dependencies_missing="fontconfig $dependencies_missing"
1652         fi
1653         if test x"$HAVE_LIBGUMBO" = xno; then
1654                 dependencies_missing="libgumbo $dependencies_missing"
1655         fi
1656         if test x"$HAVE_CURL" = xno; then
1657                 dependencies_missing="libcurl $dependencies_missing"
1658         fi
1661         if test x"$dependencies_missing" = x; then
1662                 PLUGINS="$PLUGINS litehtml_viewer"
1663                 AC_MSG_RESULT(yes)
1664         elif test x"$enable_litehtml_viewer_plugin" = xauto; then
1665                 AC_MSG_RESULT(no)
1666                 AC_MSG_WARN("Plugin litehtml_viewer will not be built; missing $dependencies_missing")
1667                 enable_litehtml_viewer_plugin=no
1668                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS litehtml_viewer"
1669         else
1670                 AC_MSG_RESULT(no)
1671                 AC_MSG_ERROR("Plugin litehtml_viewer cannot be built; missing $dependencies_missing")
1672         fi
1673 else
1674         DISABLED_PLUGINS="$DISABLED_PLUGINS litehtml_viewer"
1675         AC_MSG_RESULT(no)
1678 AC_MSG_CHECKING([whether to build mailmbox plugin])
1679 if test x"$enable_mailmbox_plugin" != xno; then
1680         PLUGINS="$PLUGINS mailmbox"
1681         AC_MSG_RESULT(yes)
1682 else
1683         DISABLED_PLUGINS="$DISABLED_PLUGINS mailmbox"
1684         AC_MSG_RESULT(no)
1687 AC_MSG_CHECKING([whether to build managesieve plugin])
1688 if test x"$enable_managesieve_plugin" != xno; then
1689         PLUGINS="$PLUGINS managesieve"
1690         AC_MSG_RESULT(yes)
1691 else
1692         DISABLED_PLUGINS="$DISABLED_PLUGINS managesieve"
1693         AC_MSG_RESULT(no)
1696 AC_MSG_CHECKING([whether to build newmail plugin])
1697 if test x"$enable_newmail_plugin" != xno; then
1698         PLUGINS="$PLUGINS newmail"
1699         AC_MSG_RESULT(yes)
1700 else
1701         DISABLED_PLUGINS="$DISABLED_PLUGINS newmail"
1702         AC_MSG_RESULT(no)
1705 AC_MSG_CHECKING([whether to build notification plugin])
1706 if test x"$enable_notification_plugin" != xno; then
1707         PLUGINS="$PLUGINS notification"
1708         AC_MSG_RESULT(yes)
1710         AC_DEFINE(NOTIFICATION_POPUP, 1, Activate notification popup)
1711         AC_DEFINE(NOTIFICATION_BANNER, 1, Activate notification banner)
1712         AC_DEFINE(NOTIFICATION_COMMAND, 1, Activate notification shell command)
1713         AC_DEFINE(NOTIFICATION_TRAYICON, 1, Activate notification trayicon)
1714         if test x"$platform_win32" = xno; then
1715                 AC_DEFINE(NOTIFICATION_LCDPROC, 1, Activate lcdproc support)
1716         fi
1718         notification_features="banner command"
1719         notification_missing_dependencies=""
1720         if test x"$HAVE_HOTKEYS" = xyes; then
1721                 notification_features="$notification_features hotkeys"
1722         else
1723                 notification_missing_dependencies="$notification_missing_dependencies hotkeys"
1724         fi
1725         notification_features="$notification_features lcdproc"
1726         if test x"$HAVE_UNITY" = xyes; then
1727                 notification_features="$notification_features unity/messaging-menu"
1728         else
1729                 notification_missing_dependencies="$notification_missing_dependencies unity/messaging-menu"
1730         fi
1731         if test x"$HAVE_LIBNOTIFY" = xyes; then
1732                 notification_features="$notification_features libnotify"
1733         else
1734                 notification_missing_dependencies="$notification_missing_dependencies libnotify"
1735         fi
1736         if test x"$HAVE_LIBCANBERRA_GTK" = xyes; then
1737                 notification_features="$notification_features libcanberra-gtk"
1738         else
1739                 notification_missing_dependencies="$notification_missing_dependencies libcanberra-gtk"
1740         fi
1741         notification_features="$notification_features popup trayicon"
1742 else
1743         DISABLED_PLUGINS="$DISABLED_PLUGINS notification"
1744         AC_MSG_RESULT(no)
1747 AC_MSG_CHECKING([whether to build pdf_viewer plugin])
1748 if test x"$enable_pdf_viewer_plugin" != xno; then
1749         dependencies_missing=""
1751         if test x"$HAVE_POPPLER" = xno; then
1752                 dependencies_missing="libpoppler-glib $dependencies_missing"
1753         fi
1755         if test x"$dependencies_missing" = x; then
1756                 PLUGINS="$PLUGINS pdf_viewer"
1757                 AC_MSG_RESULT(yes)
1758         elif test x"$enable_pdf_viewer_plugin" = xauto; then
1759                 AC_MSG_RESULT(no)
1760                 AC_MSG_WARN("Plugin pdf_viewer will not be built; missing $dependencies_missing")
1761                 enable_pdf_viewer_plugin=no
1762                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pdf_viewer"
1763         else
1764                 AC_MSG_RESULT(no)
1765                 AC_MSG_ERROR("Plugin pdf_viewer cannot be built; missing $dependencies_missing")
1766         fi
1767 else
1768         DISABLED_PLUGINS="$DISABLED_PLUGINS pdf_viewer"
1769         AC_MSG_RESULT(no)
1772 AC_MSG_CHECKING([whether to build perl plugin])
1773 if test x"$enable_perl_plugin" != xno; then
1774         dependencies_missing=""
1776         if test x"$HAVE_LIBPERL" = xno; then
1777                 dependencies_missing="libperl $dependencies_missing"
1778         fi
1780         if test x"$dependencies_missing" = x; then
1781                 PLUGINS="$PLUGINS perl"
1782                 AC_MSG_RESULT(yes)
1783         elif test x"$enable_perl_plugin" = xauto; then
1784                 AC_MSG_RESULT(no)
1785                 AC_MSG_WARN("Plugin perl will not be built; missing $dependencies_missing")
1786                 enable_perl_plugin=no
1787                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS perl"
1788         else
1789                 AC_MSG_RESULT(no)
1790                 AC_MSG_ERROR("Plugin perl cannot be built; missing $dependencies_missing")
1791         fi
1792 else
1793         DISABLED_PLUGINS="$DISABLED_PLUGINS perl"
1794         AC_MSG_RESULT(no)
1797 AC_MSG_CHECKING([whether to build python plugin])
1798 if test x"$enable_python_plugin" != xno; then
1799         dependencies_missing=""
1801         if test x"$HAVE_PYTHON" = xno; then
1802                 dependencies_missing="$missing_python $dependencies_missing"
1803         fi
1805         if test x"$dependencies_missing" = x; then
1806                 PLUGINS="$PLUGINS python"
1807                 AC_MSG_RESULT(yes)
1808         elif test x"$enable_python_plugin" = xauto; then
1809                 AC_MSG_RESULT(no)
1810                 AC_MSG_WARN("Plugin python will not be built; missing $dependencies_missing")
1811                 enable_python_plugin=no
1812                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS python"
1813         else
1814                 AC_MSG_RESULT(no)
1815                 AC_MSG_ERROR("Plugin python cannot be built; missing $dependencies_missing")
1816         fi
1817 else
1818         DISABLED_PLUGINS="$DISABLED_PLUGINS python"
1819         AC_MSG_RESULT(no)
1822 AC_MSG_CHECKING([whether to build pgpcore plugin])
1823 if test x"$enable_pgpcore_plugin" != xno; then
1824         dependencies_missing=""
1826         if test x"$HAVE_GPGME" = xno; then
1827                 dependencies_missing="libgpgme $dependencies_missing"
1828         fi
1830         if test x"$dependencies_missing" = x; then
1831                 PLUGINS="$PLUGINS pgpcore"
1832                 AC_MSG_RESULT(yes)
1833         elif test x"$enable_pgpcore_plugin" = xauto; then
1834                 AC_MSG_RESULT(no)
1835                 AC_MSG_WARN("Plugin pgpcore will not be built; missing $dependencies_missing")
1836                 enable_pgpcore_plugin=no
1837                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpcore"
1838         else
1839                 AC_MSG_RESULT(no)
1840                 AC_MSG_ERROR("Plugin pgpcore cannot be built; missing $dependencies_missing")
1841         fi
1842 else
1843         DISABLED_PLUGINS="$DISABLED_PLUGINS pgpcore"
1844         AC_MSG_RESULT(no)
1847 AC_MSG_CHECKING([whether to build pgpmime plugin])
1848 if test x"$enable_pgpmime_plugin" != xno; then
1849         dependencies_missing=""
1851         if test x"$HAVE_GPGME" = xno; then
1852                 dependencies_missing="libgpgme $dependencies_missing"
1853         fi
1854         if test x"$enable_pgpcore_plugin" = xno; then
1855                 dependencies_missing="pgpcore plugin $dependencies_missing"
1856         fi
1858         if test x"$dependencies_missing" = x; then
1859                 PLUGINS="$PLUGINS pgpmime"
1860                 AC_MSG_RESULT(yes)
1861         elif test x"$enable_pgpmime_plugin" = xauto; then
1862                 AC_MSG_RESULT(no)
1863                 AC_MSG_WARN("Plugin pgpmime will not be built; missing $dependencies_missing")
1864                 enable_pgpmime_plugin=no
1865                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpmime"
1866         else
1867                 AC_MSG_RESULT(no)
1868                 AC_MSG_ERROR("Plugin pgpmime cannot be built; missing $dependencies_missing")
1869         fi
1870 else
1871         DISABLED_PLUGINS="$DISABLED_PLUGINS pgpmime"
1872         AC_MSG_RESULT(no)
1875 AC_MSG_CHECKING([whether to build pgpinline plugin])
1876 if test x"$enable_pgpinline_plugin" != xno; then
1877         dependencies_missing=""
1879         if test x"$HAVE_GPGME" = xno; then
1880                 dependencies_missing="libgpgme $dependencies_missing"
1881         fi
1882         if test x"$enable_pgpcore_plugin" = xno; then
1883                 dependencies_missing="pgpcore plugin $dependencies_missing"
1884         fi
1886         if test x"$dependencies_missing" = x; then
1887                 PLUGINS="$PLUGINS pgpinline"
1888                 AC_MSG_RESULT(yes)
1889         elif test x"$enable_pgpinline_plugin" = xauto; then
1890                 AC_MSG_RESULT(no)
1891                 AC_MSG_WARN("Plugin pgpinline will not be built; missing $dependencies_missing")
1892                 enable_pgpinline_plugin=no
1893                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpinline"
1894         else
1895                 AC_MSG_RESULT(no)
1896                 AC_MSG_ERROR("Plugin pgpinline cannot be built; missing $dependencies_missing")
1897         fi
1898 else
1899         DISABLED_PLUGINS="$DISABLED_PLUGINS pgpinline"
1900         AC_MSG_RESULT(no)
1903 AC_MSG_CHECKING([whether to build rssyl plugin])
1904 if test x"$enable_rssyl_plugin" != xno; then
1905         dependencies_missing=""
1907         if test x"$HAVE_EXPAT" = xno; then
1908                 dependencies_missing="expat $dependencies_missing"
1909         fi
1910         if test x"$HAVE_CURL" = xno; then
1911                 dependencies_missing="libcurl $dependencies_missing"
1912         fi
1914         if test x"$dependencies_missing" = x; then
1915                 PLUGINS="$PLUGINS rssyl"
1916                 AC_MSG_RESULT(yes)
1917         elif test x"$enable_rssyl_plugin" = xauto; then
1918                 AC_MSG_RESULT(no)
1919                 AC_MSG_WARN("Plugin rssyl will not be built; missing $dependencies_missing")
1920                 enable_rssyl_plugin=no
1921                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS rssyl"
1922         else
1923                 AC_MSG_RESULT(no)
1924                 AC_MSG_ERROR("Plugin rssyl cannot be built; missing $dependencies_missing")
1925         fi
1926 else
1927         DISABLED_PLUGINS="$DISABLED_PLUGINS rssyl"
1928         AC_MSG_RESULT(no)
1931 AC_MSG_CHECKING([whether to build spamassassin plugin])
1932 if test x"$enable_spamassassin_plugin" != xno; then
1933         PLUGINS="$PLUGINS spamassassin"
1934         AC_MSG_RESULT(yes)
1935         AC_SPAMASSASSIN
1937         dnl check for zlib (optional)
1938         spamassassin_zlib=0
1939         SPAMASSASSIN_CFLAGS=""
1940         SPAMASSASSIN_LIBS=""
1941         AC_CHECK_HEADER([zlib.h],
1942                         [AC_DEFINE(HAVE_ZLIB_H,1,[optional zlib support for spamassassin plugin])]
1943                         [spamassassin_zlib=1],
1944                         [spamassassin_zlib=0])
1945         if test $spamassassin_zlib -eq 1; then
1946                 AC_CHECK_LIB(z, deflate, [spamassassin_zlib=1], [spamassassin_zlib=0])
1947                 AC_MSG_CHECKING([whether to build spamassassin plugin with zlib support])
1948                 if test $spamassassin_zlib -eq 1; then
1949                         AC_MSG_RESULT(yes)
1950                         SPAMASSASSIN_CFLAGS="-DHAVE_LIBZ"
1951                         SPAMASSASSIN_LIBS="-lz"
1952                 else
1953                         AC_MSG_RESULT(no)
1954                 fi
1955         fi
1956         AC_SUBST(SPAMASSASSIN_CFLAGS)
1957         AC_SUBST(SPAMASSASSIN_LIBS)
1958 else
1959         DISABLED_PLUGINS="$DISABLED_PLUGINS spamassassin"
1960         AC_MSG_RESULT(no)
1963 AC_MSG_CHECKING([whether to build smime plugin])
1964 if test x"$enable_smime_plugin" != xno; then
1965         dependencies_missing=""
1967         if test x"$HAVE_GPGME" = xno; then
1968                 dependencies_missing="libgpgme $dependencies_missing"
1969         fi
1970         if test x"$enable_pgpcore_plugin" = xno; then
1971                 dependencies_missing="pgpcore plugin $dependencies_missing"
1972         fi
1974         if test x"$dependencies_missing" = x; then
1975                 PLUGINS="$PLUGINS smime"
1976                 AC_MSG_RESULT(yes)
1977         elif test x"$enable_smime_plugin" = xauto; then
1978                 AC_MSG_RESULT(no)
1979                 AC_MSG_WARN("Plugin smime will not be built; missing $dependencies_missing")
1980                 enable_smime_plugin=no
1981                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS smime"
1982         else
1983                 AC_MSG_RESULT(no)
1984                 AC_MSG_ERROR("Plugin smime cannot be built; missing $dependencies_missing")
1985         fi
1986 else
1987         DISABLED_PLUGINS="$DISABLED_PLUGINS smime"
1988         AC_MSG_RESULT(no)
1991 AC_MSG_CHECKING([whether to build spam_report plugin])
1992 if test x"$enable_spam_report_plugin" != xno; then
1993         dependencies_missing=""
1995         if test x"$HAVE_CURL" = xno; then
1996                 dependencies_missing="libcurl $dependencies_missing"
1997         fi
1999         if test x"$dependencies_missing" = x; then
2000                 PLUGINS="$PLUGINS spam_report"
2001                 AC_MSG_RESULT(yes)
2002         elif test x"$enable_spam_report_plugin" = xauto; then
2003                 AC_MSG_RESULT(no)
2004                 AC_MSG_WARN("Plugin spam_report will not be built; missing $dependencies_missing")
2005                 enable_spam_report_plugin=no
2006                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS spam_report"
2007         else
2008                 AC_MSG_RESULT(no)
2009                 AC_MSG_ERROR("Plugin spam_report cannot be built; missing $dependencies_missing")
2010         fi
2011 else
2012         DISABLED_PLUGINS="$DISABLED_PLUGINS spam_report"
2013         AC_MSG_RESULT(no)
2016 AC_MSG_CHECKING([whether to build tnef_parse plugin])
2017 if test x"$enable_tnef_parse_plugin" != xno; then
2018         dependencies_missing=""
2020         if test $have_ytnef -eq 0; then
2021                 dependencies_missing="libytnef"
2022         fi
2024         if test x"$dependencies_missing" = x; then
2025                 PLUGINS="$PLUGINS tnef_parse"
2026                 AC_MSG_RESULT(yes)
2027         elif test x"$enable_tnef_parse_plugin" = xauto; then
2028                 AC_MSG_RESULT(no)
2029                 AC_MSG_WARN(Plugin tnef_parse will not be built; missing $dependencies_missing")
2030                 enable_tnef_parse_plugin=no
2031                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS tnef_parse"
2032         else
2033                 AC_MSG_RESULT(no)
2034                 AC_MSG_ERROR(Plugin tnef_parse will not be built; missing $dependencies_missing")
2035         fi
2036 else
2037         DISABLED_PLUGINS="$DISABLED_PLUGINS tnef_parse"
2038         AC_MSG_RESULT(no)
2042 AC_MSG_CHECKING([whether to build vcalendar plugin])
2043 if test x"$enable_vcalendar_plugin" != xno; then
2044         dependencies_missing=""
2046         if test x"$HAVE_CURL" = xno; then
2047                 dependencies_missing="libcurl $dependencies_missing"
2048         fi
2050   if test x"$HAVE_LIBICAL" = xno; then
2051     dependencies_missing="libical $dependencies_missing"
2052   fi
2054         if test x"$HAVE_PERL" = xno; then
2055                 dependencies_missing="perl $dependencies_missing"
2056         fi
2058         if test x"$dependencies_missing" = x; then
2059                 PLUGINS="$PLUGINS vcalendar"
2060                 AC_MSG_RESULT(yes)
2061         elif test x"$enable_vcalendar_plugin" = xauto; then
2062                 AC_MSG_RESULT(no)
2063                 AC_MSG_WARN("Plugin vcalendar will not be built; missing $dependencies_missing")
2064                 enable_vcalendar_plugin=no
2065                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS vcalendar"
2066         else
2067                 AC_MSG_RESULT(no)
2068                 AC_MSG_ERROR("Plugin vcalendar cannot be built; missing $dependencies_missing")
2069         fi
2070 else
2071         DISABLED_PLUGINS="$DISABLED_PLUGINS vcalendar"
2072         AC_MSG_RESULT(no)
2075 dnl And finally the automake conditionals.
2077 AM_CONDITIONAL(BUILD_ACPI_NOTIFIER_PLUGIN,      test x"$enable_acpi_notifier_plugin" != xno)
2078 AM_CONDITIONAL(BUILD_ADDRESS_KEEPER_PLUGIN,     test x"$enable_address_keeper_plugin" != xno)
2079 AM_CONDITIONAL(BUILD_ARCHIVE_PLUGIN,            test x"$enable_archive_plugin" != xno)
2080 AM_CONDITIONAL(BUILD_ATT_REMOVER_PLUGIN,        test x"$enable_att_remover_plugin" != xno)
2081 AM_CONDITIONAL(BUILD_ATTACHWARNER_PLUGIN,       test x"$enable_attachwarner_plugin" != xno)
2082 AM_CONDITIONAL(BUILD_BOGOFILTER_PLUGIN,         test x"$enable_bogofilter_plugin" != xno)
2083 AM_CONDITIONAL(BUILD_BSFILTER_PLUGIN,           test x"$enable_bsfilter_plugin" != xno)
2084 AM_CONDITIONAL(BUILD_CLAMD_PLUGIN,              test x"$enable_clamd_plugin" != xno)
2085 AM_CONDITIONAL(BUILD_DEMO_PLUGIN,               test x"$enable_demo_plugin" != xno)
2086 AM_CONDITIONAL(BUILD_DILLO_PLUGIN,              test x"$enable_dillo_plugin" != xno)
2087 AM_CONDITIONAL(BUILD_FANCY_PLUGIN,              test x"$enable_fancy_plugin" != xno)
2088 AM_CONDITIONAL(BUILD_FETCHINFO_PLUGIN,          test x"$enable_fetchinfo_plugin" != xno)
2089 AM_CONDITIONAL(BUILD_GDATA_PLUGIN,              test x"$enable_gdata_plugin" != xno)
2090 AM_CONDITIONAL(BUILD_LIBRAVATAR_PLUGIN,         test x"$enable_libravatar_plugin" != xno)
2091 AM_CONDITIONAL(BUILD_LITEHTML_VIEWER_PLUGIN,    test x"$enable_litehtml_viewer_plugin" != xno)
2092 AM_CONDITIONAL(BUILD_MAILMBOX_PLUGIN,           test x"$enable_mailmbox_plugin" != xno)
2093 AM_CONDITIONAL(BUILD_MANAGESIEVE_PLUGIN,        test x"$enable_managesieve_plugin" != xno)
2094 AM_CONDITIONAL(BUILD_NEWMAIL_PLUGIN,            test x"$enable_newmail_plugin" != xno)
2095 AM_CONDITIONAL(BUILD_NOTIFICATION_PLUGIN,       test x"$enable_notification_plugin" != xno)
2096 AM_CONDITIONAL(BUILD_HOTKEYS,                   test x"$enable_notification_plugin" != xno -a x"$HAVE_HOTKEYS" = xyes)
2097 AM_CONDITIONAL(BUILD_PDF_VIEWER_PLUGIN,         test x"$enable_pdf_viewer_plugin" != xno)
2098 AM_CONDITIONAL(BUILD_PERL_PLUGIN,               test x"$enable_perl_plugin" != xno)
2099 AM_CONDITIONAL(BUILD_PYTHON_PLUGIN,             test x"$enable_python_plugin" != xno)
2100 AM_CONDITIONAL(BUILD_PGPCORE_PLUGIN,            test x"$enable_pgpcore_plugin" != xno)
2101 AM_CONDITIONAL(BUILD_PGPMIME_PLUGIN,            test x"$enable_pgpmime_plugin" != xno)
2102 AM_CONDITIONAL(BUILD_PGPINLINE_PLUGIN,          test x"$enable_pgpinline_plugin" != xno)
2103 AM_CONDITIONAL(BUILD_RSSYL_PLUGIN,              test x"$enable_rssyl_plugin" != xno)
2104 AM_CONDITIONAL(BUILD_SMIME_PLUGIN,              test x"$enable_smime_plugin" != xno)
2105 AM_CONDITIONAL(BUILD_SPAMASSASSIN_PLUGIN,       test x"$enable_spamassassin_plugin" != xno)
2106 AM_CONDITIONAL(BUILD_SPAM_REPORT_PLUGIN,        test x"$enable_spam_report_plugin" != xno)
2107 AM_CONDITIONAL(BUILD_TNEF_PARSE_PLUGIN,         test x"$enable_tnef_parse_plugin" != xno)
2108 AM_CONDITIONAL(BUILD_VCALENDAR_PLUGIN,          test x"$enable_vcalendar_plugin" != xno)
2111 dnl ****************************
2112 dnl ** Final configure output **
2113 dnl ****************************
2115 AC_OUTPUT([
2116 Makefile
2117 m4/Makefile
2118 po/Makefile.in
2119 src/common/version.h
2120 src/Makefile
2121 src/w32-resource.rc
2122 src/common/Makefile
2123 src/common/passcrypt.h
2124 src/common/tests/Makefile
2125 src/gtk/Makefile
2126 src/etpan/Makefile
2127 src/plugins/Makefile
2128 src/plugins/acpi_notifier/Makefile
2129 src/plugins/address_keeper/Makefile
2130 src/plugins/address_keeper/version.rc
2131 src/plugins/archive/Makefile
2132 src/plugins/att_remover/Makefile
2133 src/plugins/att_remover/version.rc
2134 src/plugins/attachwarner/Makefile
2135 src/plugins/attachwarner/version.rc
2136 src/plugins/bogofilter/Makefile
2137 src/plugins/bsfilter/Makefile
2138 src/plugins/bsfilter/version.rc
2139 src/plugins/clamd/Makefile
2140 src/plugins/clamd/libclamd/Makefile
2141 src/plugins/demo/Makefile
2142 src/plugins/dillo/Makefile
2143 src/plugins/fancy/Makefile
2144 src/plugins/fancy/version.rc
2145 src/plugins/fetchinfo/Makefile
2146 src/plugins/fetchinfo/version.rc
2147 src/plugins/gdata/Makefile
2148 src/plugins/litehtml_viewer/Makefile
2149 src/plugins/litehtml_viewer/version.rc
2150 src/plugins/litehtml_viewer/litehtml/Makefile
2151 src/plugins/libravatar/Makefile
2152 src/plugins/libravatar/version.rc
2153 src/plugins/mailmbox/Makefile
2154 src/plugins/mailmbox/version.rc
2155 src/plugins/managesieve/Makefile
2156 src/plugins/managesieve/version.rc
2157 src/plugins/newmail/Makefile
2158 src/plugins/notification/Makefile
2159 src/plugins/notification/version.rc
2160 src/plugins/notification/gtkhotkey/Makefile
2161 src/plugins/pdf_viewer/Makefile
2162 src/plugins/perl/Makefile
2163 src/plugins/perl/tools/Makefile
2164 src/plugins/python/Makefile
2165 src/plugins/python/examples/Makefile
2166 src/plugins/pgpcore/Makefile
2167 src/plugins/pgpcore/version.rc
2168 src/plugins/pgpcore/tests/Makefile
2169 src/plugins/pgpmime/Makefile
2170 src/plugins/pgpmime/version.rc
2171 src/plugins/pgpinline/Makefile
2172 src/plugins/pgpinline/version.rc
2173 src/plugins/rssyl/Makefile
2174 src/plugins/rssyl/version.rc
2175 src/plugins/rssyl/tests/Makefile
2176 src/plugins/rssyl/libfeed/Makefile
2177 src/plugins/rssyl/libfeed/tests/Makefile
2178 src/plugins/smime/Makefile
2179 src/plugins/smime/version.rc
2180 src/plugins/spamassassin/Makefile
2181 src/plugins/spam_report/Makefile
2182 src/plugins/spam_report/version.rc
2183 src/plugins/tnef_parse/Makefile
2184 src/plugins/tnef_parse/version.rc
2185 src/plugins/vcalendar/Makefile
2186 src/plugins/vcalendar/version.rc
2187 src/tests/Makefile
2188 doc/Makefile
2189 doc/man/Makefile
2190 tools/Makefile
2191 config/Makefile
2192 manual/Makefile
2193 manual/dtd/Makefile
2194 manual/dist/Makefile
2195 manual/dist/pdf/Makefile
2196 manual/dist/ps/Makefile
2197 manual/dist/html/Makefile
2198 manual/dist/txt/Makefile
2199 manual/fr/Makefile
2200 manual/fr/dist/Makefile
2201 manual/fr/dist/pdf/Makefile
2202 manual/fr/dist/ps/Makefile
2203 manual/fr/dist/html/Makefile
2204 manual/fr/dist/txt/Makefile
2205 manual/es/Makefile
2206 manual/es/dist/Makefile
2207 manual/es/dist/pdf/Makefile
2208 manual/es/dist/ps/Makefile
2209 manual/es/dist/html/Makefile
2210 manual/es/dist/txt/Makefile
2211 claws-mail.pc
2214 dnl Output the configuration summary
2215 echo ""
2216 echo "$PACKAGE $VERSION"
2217 echo ""
2218 if test x"$enable_alternate_addressbook" = xyes; then
2219         echo "Using Address Book : Alternate experimental interface"
2220 else
2221         echo "Using Address Book : Original stable interface"
2222         echo "JPilot             : $enable_jpilot"
2223         echo "LDAP               : $enable_ldap"
2225 echo "gnuTLS             : $enable_gnutls"
2226 echo "iconv              : $am_cv_func_iconv"
2227 echo "compface           : $enable_compface"
2228 echo "IPv6               : $enable_ipv6"
2229 echo "enchant            : $enable_enchant"
2230 echo "IMAP4              : $enable_libetpan"
2231 echo "NNTP               : $enable_libetpan"
2232 echo "Crash dialog       : $enable_crash_dialog"
2233 echo "LibSM              : $enable_libsm"
2234 echo "DBUS               : $enable_dbus"
2235 echo "NetworkManager     : $enable_networkmanager"
2236 echo "Manual             : $enable_manual"
2237 echo "Generic UMPC code  : $enable_generic_umpc"
2238 echo "SVG support        : $enable_svg"
2239 echo "Config dir         : $ac_cv_with_config_dir"
2240 echo "Password crypto    : $pwd_crypto"
2241 echo "Unit tests         : $enable_tests"
2243 echo "Plugins"
2244 echo "   Built:"
2245 for plugin in $PLUGINS; do
2246 echo "            - $plugin"
2247 if test x"$plugin" = xnotification; then
2248         echo "                Features:"
2249         for notif_feature in $notification_features; do
2250                 echo "                    $notif_feature"
2251         done;
2252         if test "x$notification_missing_dependencies" != x; then
2253                 echo "                Disabled due to missing dependencies:"
2254                 for notif_miss_dep in $notification_missing_dependencies; do
2255                         echo "                    $notif_miss_dep"
2256                 done;
2257         fi
2259 done;
2260 if test "x$DISABLED_PLUGINS" != x; then
2261 echo "   Disabled:"
2262 for plugin in $DISABLED_PLUGINS; do
2263 echo "            - $plugin"
2264 done;
2267 if test "x$MISSING_DEPS_PLUGINS" != x; then
2268 echo "   Disabled due to missing dependencies:"
2269 for plugin in $MISSING_DEPS_PLUGINS; do
2270 echo "            - $plugin"
2271 done;
2273 echo ""
2274 echo "The binary will be installed in $prefix/bin"
2275 echo ""
2276 echo "Configure finished, type 'make' to build."