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