Clean-up in comments (The Commit Of The Year).
[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 hu id_ID it ja nb nl pl pt_BR ro 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.28 gmodule-2.0 >= 2.28 gobject-2.0 >= 2.28 gthread-2.0 >= 2.28)
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.24)
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
582 dnl Make sure the code does not regress to using deprecated GTK stuff...
583 GTK_CFLAGS="$GTK_CFLAGS -DGTK_DISABLE_SINGLE_INCLUDES -DGSEAL_ENABLE"
584
585 AC_SUBST(GTK_CFLAGS)
586 AC_SUBST(GTK_LIBS)
587
588 dnl enchant is used for spell checking
589 AC_MSG_CHECKING([whether to use enchant])
590 AC_MSG_RESULT($enable_enchant)
591 if test $enable_enchant = yes; then
592         PKG_CHECK_MODULES(ENCHANT, enchant >= 1.4.0,
593         [
594                 AC_DEFINE(USE_ENCHANT, 1, enchant)
595                 echo "Building with enchant"
596                 enable_enchant=yes
597         ],
598         [
599                 PKG_CHECK_MODULES(ENCHANT, enchant-2 >= 2.0.0,
600                 [
601                         AC_DEFINE(USE_ENCHANT, 1, enchant-2)
602                         echo "Building with enchant-2"
603                         enable_enchant=yes
604                 ],
605                 [
606                         echo "Building without enchant-notification"
607                         enable_enchant=no
608                 ])
609         ])
610         AC_SUBST(ENCHANT_CFLAGS)
611         AC_SUBST(ENCHANT_LIBS)
612 fi
613
614 dnl want crash dialog
615 if test $enable_crash_dialog = yes; then
616 dnl check if GDB is somewhere
617         AC_CHECK_PROG(enable_crash_dialog, gdb, yes, no)
618         AC_MSG_CHECKING([whether to use crash dialog])
619         if test $enable_crash_dialog = yes; then
620                 AC_DEFINE(CRASH_DIALOG, 1, Pop up crash dialog)
621         fi
622         AC_MSG_RESULT($enable_crash_dialog)
623 fi
624
625 dnl generic umpc
626 if test $enable_generic_umpc = yes; then
627         AC_DEFINE(GENERIC_UMPC, 1, Generic UMPC code)
628         AC_MSG_RESULT($enable_generic_umpc)
629 fi
630
631 dnl Check for X-Face support
632 AC_MSG_CHECKING([whether to use compface])
633 if test x"$enable_compface" = xyes; then
634         AC_MSG_RESULT(yes)
635         AC_CHECK_LIB(compface, uncompface,
636                 [AC_DEFINE(HAVE_LIBCOMPFACE, 1, Define if you want compface support.)],
637                 [enable_compface=no])
638         if test x"$enable_compface" = xyes; then
639                 COMPFACE_LIBS="-lcompface"
640         else
641                 COMPFACE_LIBS=""
642         fi
643         AC_SUBST(COMPFACE_LIBS)
644 else
645         AC_MSG_RESULT(no)
646 fi
647
648 dnl check for pthread support
649 AC_MSG_CHECKING([whether to use pthread])
650 if test x$enable_pthread = xno; then
651         AC_MSG_RESULT(no)
652 else
653         AC_MSG_RESULT(yes)
654
655         # For W32 we need to use a special ptrhead lib. In this case we can't
656         # use AC_CHECK_LIB because it has no means of checking for a
657         # library installed under a different name.  Checking for the
658         # header is okay.
659         if test -n "${pthread_name}" ; then
660            enable_pthread=yes
661         else
662         AC_CHECK_LIB(pthread, pthread_create, :, enable_pthread=no)
663         fi
664         AC_CHECK_HEADERS(pthread.h, :, enable_pthread=no)
665
666         if test x$enable_pthread = xyes; then
667                 AC_DEFINE(USE_PTHREAD, 1, Define if you have pthread)
668                 if test -z "${pthread_name}" ; then
669                 PTHREAD_LIBS="-lpthread"
670         fi
671         fi
672
673 fi
674 AC_SUBST(PTHREAD_LIBS)
675
676 dnl
677 dnl Check whether we need to pass -lresolv
678 dnl We know that we don't need it for W32.
679 dnl
680 if test x$os_win32 = xno; then
681   t_oldLibs="$LIBS"
682   LIBS="$LIBS"
683   ac_cv_var__res_options=no
684   AC_TRY_LINK([#include <sys/types.h>
685              #include <sys/socket.h>
686              #include <netinet/in.h>
687              #include <arpa/nameser.h>
688              #include <resolv.h>],
689                 [_res.options = RES_INIT;],
690                 ac_cv_var__res_options=yes);
691   if test "$ac_cv_var__res_options" != "yes"; then
692         LIBRESOLV="-lresolv"
693   fi
694   LIBS="$t_oldLibs"
695
696   if test "x$LIBRESOLV" = "x"; then
697         AC_CHECK_LIB(resolv, res_query, [LIBRESOLV=-lresolv])
698         LIBS="$t_oldLibs"
699   fi
700 fi
701 AC_SUBST(LIBRESOLV)
702
703 LIBS="$LIBS $LIBRESOLV"
704
705 dnl #######################################################################
706 dnl # Check for startup notification
707 dnl #######################################################################
708 if test "x$enable_startup_notification" = "xyes"; then
709         PKG_CHECK_MODULES(STARTUP_NOTIFICATION, libstartup-notification-1.0 >= 0.5,
710         [
711                 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, [Define if we're using libstartup-notification.])
712                 echo "Building with libstartup-notification"
713                 enable_startup_notification=yes
714         ],
715         [
716                 echo "Building without libstartup-notification"
717                 enable_startup_notification=no
718         ])
719
720         AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
721         AC_SUBST(STARTUP_NOTIFICATION_LIBS)
722 fi
723
724 dnl #######################################################################
725 dnl # Check for D-Bus support
726 dnl #######################################################################
727 if test "x$enable_dbus" = "xyes"; then
728         PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.60, dbus-glib-1 >= 0.60],
729         [
730                 AC_DEFINE(HAVE_DBUS_GLIB, 1, [Define if glib bindings of D-Bus are available])
731                 enable_dbus=yes
732         ],
733         [
734                 echo "D-Bus requirements not met. D-Bus support not activated."
735                 enable_dbus=no
736         ])
737         AC_SUBST(DBUS_CFLAGS)
738         AC_SUBST(DBUS_LIBS)
739 fi
740
741 dnl #######################################################################
742 dnl # Configure address book support
743 dnl #######################################################################
744
745 dnl #######################################################################
746 dnl # Check for alternate address book support
747 dnl #######################################################################
748 AC_MSG_CHECKING([whether DBUS support for alternate address book is present])
749 if test x"$enable_dbus" = xyes; then
750         AC_MSG_RESULT([yes])
751         AC_MSG_CHECKING([whether to enable alternate address book])
752         if test x"$enable_alternate_addressbook" = xyes; then
753                 AC_MSG_RESULT([yes])
754                 PKG_CHECK_MODULES(CONTACTS, [claws-contacts],
755                 [
756                         AC_DEFINE(USE_ALT_ADDRBOOK, 1, [Define if alternate address book is to be activated.])
757                         enable_alternate_addressbook=yes
758                         AC_SUBST(CONTACTS_CFLAGS)
759                         AC_SUBST(CONTACTS_LIBS)
760                 ],
761                 [
762                         enable_alternate_addressbook=no
763                 ])
764         else
765                 AC_MSG_RESULT([no])
766                 enable_alternate_addressbook=no
767         fi
768 else
769         AC_MSG_RESULT([no])
770         enable_alternate_addressbook=no
771 fi
772
773 dnl #######################################################################
774 dnl # Check for old address book support
775 dnl #######################################################################
776 if test x"$enable_alternate_addressbook" = xno; then
777         dnl for LDAP support in addressbook
778         dnl no check for libraries; dynamically loaded
779         AC_MSG_CHECKING([whether to use LDAP])
780         if test x"$enable_ldap" = xno; then
781                 AC_MSG_RESULT(no)
782         elif test x"$enable_ldap" = xyes -a x"$enable_pthread" = xno; then
783                 AC_MSG_RESULT(no - LDAP support needs pthread support)
784
785                 enable_ldap=no
786         elif test x"$platform_win32" = xyes; then
787                 AC_MSG_RESULT(yes)
788                 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
789                 LDAP_LIBS="-lwldap32"
790                 AC_SUBST(LDAP_LIBS)
791         else
792                 AC_MSG_RESULT(yes)
793
794                 dnl check for available libraries, and pull them in
795                 AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="$LDAP_LIBS -lresolv")
796                 AC_CHECK_LIB(socket, bind, LDAP_LIBS="$LDAP_LIBS -lsocket")
797                 AC_CHECK_LIB(nsl, gethostbyaddr, LDAP_LIBS="$LDAP_LIBS -lnsl")
798                 AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="$LDAP_LIBS -llber",,
799                                  $LDAP_LIBS)
800
801                 AC_CHECK_HEADERS(ldap.h lber.h,
802                                  [ enable_ldap=yes ],
803                                  [ enable_ldap=no ])
804
805                 if test "$enable_ldap" = yes; then
806                         AC_CHECK_LIB(ldap, ldap_open,
807                                          [ enable_ldap=yes ],
808                                          [ enable_ldap=no ],
809                                          $LDAP_LIBS)
810
811                         AC_CHECK_LIB(ldap, ldap_start_tls_s,
812                                              [ ac_cv_have_tls=yes ],
813                                              [ ac_cv_have_tls=no ])
814
815                 fi
816
817                 AC_MSG_CHECKING([whether ldap library is available])
818                 AC_MSG_RESULT($enable_ldap)
819
820                 AC_MSG_CHECKING([whether TLS library is available])
821                 AC_MSG_RESULT($ac_cv_have_tls)
822
823                 if test "$enable_ldap" = yes; then
824                         AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
825                         LDAP_LIBS="$LDAP_LIBS -lldap"
826                         AC_SUBST(LDAP_LIBS)
827                         if test "$ac_cv_have_tls" = yes; then
828                                 AC_DEFINE(USE_LDAP_TLS, 1, Define if you want LDAP TLS support in addressbook.)
829                         fi
830                         dnl As of OpenLDAP API version 3000 a number of functions has
831                         dnl been deprecated. As Claws-mail compiles and runs on many
832                         dnl platforms and many versions of OpenLDAP we need to be able
833                         dnl to switch between the old and new API because new API has
834                         dnl added new functions replacing old ones and at the same time
835                         dnl old functions has been changed.
836                         dnl If cross-compiling defaults to enable deprecated features
837                         dnl for maximum portability
838                         AC_MSG_CHECKING([The API version of OpenLDAP])
839                         AC_RUN_IFELSE(
840                                 [AC_LANG_PROGRAM(
841                                  [#include <ldap.h>],
842                                  [if (LDAP_API_VERSION >= 3000)
843                                                 return 1
844                                 ])],
845                                 [AC_MSG_RESULT([version < 3000])
846                                  AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)],
847                                 [AC_MSG_RESULT([version >= 3000])
848                                  AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 1, Define if OpenLDAP API is at least version 3000.)],
849                                 [AC_MSG_RESULT([Enabling deprecated features in OpenLDAP])
850                                  AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)
851                                  AC_DEFINE(LDAP_DEPRECATED, 1, Define to activate deprecated features in OpenLDAP)]
852                         )
853                 fi
854         fi
855
856         dnl for JPilot support in addressbook
857         dnl no check for libraries; these are dynamically loaded
858         AC_MSG_CHECKING([whether to use JPilot])
859         if test "$enable_jpilot" = yes; then
860                 AC_MSG_RESULT(yes)
861                 AC_CHECK_HEADERS(pi-args.h pi-appinfo.h pi-address.h pi-version.h,
862                                  [ AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ],
863                                  [ enable_jpilot=no ])
864                 if test "$enable_jpilot" = no; then
865                         AC_CHECK_HEADERS(libpisock/pi-args.h libpisock/pi-appinfo.h libpisock/pi-address.h libpisock/pi-version.h,
866                                          [ enable_jpilot=yes
867                                            AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ])
868                 fi
869
870                 AC_CHECK_LIB(pisock, unpack_Address, [JPILOT_LIBS="-lpisock"], [JPILOT_LIBS="" enable_jpilot="no"])
871                 if test x"$enable_jpilot" = xyes; then
872                         AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.)
873                 else
874                         AC_MSG_NOTICE([JPilot support not available])
875                 fi
876                 AC_SUBST(JPILOT_LIBS)
877         else
878                 AC_MSG_RESULT(no)
879         fi
880 fi
881
882 AM_CONDITIONAL(BUILD_ALTADDRBOOK, test x"$enable_alternate_addressbook" = x"yes")
883
884 dnl #######################################################################
885 dnl # Check for NetworkManager support
886 dnl #######################################################################
887 if test x"$enable_dbus" = xyes; then
888         if test x"$enable_networkmanager" = xyes; then
889                 PKG_CHECK_MODULES(NETWORKMANAGER_SUPPORT, NetworkManager >= 0.6.2,
890                 [
891                         AC_DEFINE(HAVE_NETWORKMANAGER_SUPPORT, 1, [Define if NetworkManager support is to be included.])
892                         echo "Building with NetworkManager support"
893                         enable_networkmanager=yes
894                 ],
895                 [
896                         echo "NetworkManager not found."
897                         enable_networkmanager=no
898                 ])
899                 AC_SUBST(NETWORKMANAGER_SUPPORT_CFLAGS)
900         fi
901 else
902         echo "NetworkManager support deactivated as D-Bus requirements were not met."
903         enable_networkmanager=no
904 fi
905
906 dnl Libetpan
907 AC_MSG_CHECKING([whether to use libetpan])
908 if test x"$enable_libetpan" = xyes; then
909         AC_MSG_RESULT(yes)
910         libetpan_result=no
911         AC_PATH_PROG(libetpanconfig, [libetpan-config])
912         if test "x$libetpanconfig" != "x"; then
913           CPPFLAGS="$CPPFLAGS `$libetpanconfig --cflags 2>/dev/null`"
914           AC_CHECK_HEADER(libetpan/libetpan.h, [libetpan_result=yes])
915           if test "x$libetpan_result" = "xyes"; then
916             AC_MSG_CHECKING([whether libetpan-config hints compiles and links fine])
917             LIBS="$LIBS `$libetpanconfig --libs 2>/dev/null`"
918             AC_TRY_LINK([#include <libetpan/dbstorage.h>], [db_mailstorage_init(NULL, NULL);], [libetpan_result=yes], [libetpan_result=no])
919             AC_MSG_RESULT([$libetpan_result])
920           fi
921         fi
922         if test "x$libetpan_result" = "xyes"; then
923            LIBETPAN_CPPFLAGS="`$libetpanconfig --cflags`"
924            LIBETPAN_LIBS="`$libetpanconfig --libs`"
925            LIBETPAN_VERSION=`$libetpanconfig --version | $AWK -F. '{printf "%d", ($1 * 100) + $2}'`
926            if test "$LIBETPAN_VERSION" -lt "57"; then
927                 AC_MSG_RESULT([*** Claws Mail requires libetpan 0.57 or newer. See http://www.etpan.org/])
928                 AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 and/or NNTP support.])
929                 AC_MSG_ERROR([libetpan 0.57 not found])
930            fi
931            AC_SUBST(LIBETPAN_FLAGS)
932            AC_SUBST(LIBETPAN_LIBS)
933            AC_DEFINE(HAVE_LIBETPAN, 1, Define if you want IMAP and/or NNTP support.)
934         else
935            AC_MSG_RESULT([*** Claws Mail requires libetpan 0.57 or newer. See http://www.etpan.org/ ])
936            AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 and/or NNTP support.])
937            AC_MSG_ERROR([libetpan 0.57 not found])
938         fi
939 else
940         AC_MSG_RESULT(no)
941 fi
942 AM_CONDITIONAL(CLAWS_LIBETPAN, test "x$libetpan_result" = "xyes")
943
944 dnl librsvg
945 AC_MSG_CHECKING([whether to use librsvg])
946 if test x"$enable_svg" = xyes; then
947         AC_MSG_RESULT(yes)
948     PKG_CHECK_MODULES([SVG], [librsvg-2.0 >= 2.39.0 cairo >= 1.0.0],
949     [
950         AC_SUBST(SVG_CFLAGS)
951         AC_SUBST(SVG_LIBS)
952                 AC_DEFINE(HAVE_SVG, 1, [Define if librsvg2 is available for SVG support])
953                 enable_svg=yes
954         ],
955         [
956                 AC_MSG_NOTICE([SVG support deactivated as librsvg2 >= 2.39.0 was not found])
957                 enable_svg=no
958         ])
959 else
960         AC_MSG_RESULT(no)
961 fi
962
963 AC_MSG_CHECKING([whether to use valgrind])
964 if test x$enable_valgrind = xyes; then
965         AC_MSG_RESULT(yes)
966         PKG_CHECK_MODULES(VALGRIND, valgrind >= 2.4.0,
967                           enable_valgrind=yes, enable_valgrind=no)
968         if test x"$enable_valgrind" = xyes; then
969                 AC_DEFINE(HAVE_VALGRIND, 1, Define if you want valgrind support)
970         else
971                 AC_MSG_RESULT(not found)
972         fi
973 else
974         AC_MSG_RESULT(no)
975 fi
976 AM_CONDITIONAL(CLAWS_VALGRIND, test x"$enable_valgrind" = x"yes")
977
978 dnl *************************
979 dnl ** section for plugins **
980 dnl *************************
981
982 PLUGINS=""
983 DISABLED_PLUGINS=""
984 MISSING_DEPS_PLUGINS=""
985
986 dnl First we set the enabled status - either enabled (yes), auto-enabled (auto)
987 dnl or (auto-)disabled (no for both)
988 dnl
989 dnl All plugins are auto-enabled except for Demo which is just there to help
990 dnl potential plugins writers.
991
992 AC_ARG_ENABLE(acpi_notifier-plugin,
993                 [  --disable-acpi_notifier-plugin  Do not build acpi_notifier plugin],
994                 [enable_acpi_notifier_plugin=$enableval], [enable_acpi_notifier_plugin=auto])
995
996 AC_ARG_ENABLE(address_keeper-plugin,
997                 [  --disable-address_keeper-plugin Do not build address_keeper plugin],
998                 [enable_address_keeper_plugin=$enableval], [enable_address_keeper_plugin=auto])
999
1000 AC_ARG_ENABLE(archive-plugin,
1001                 [  --disable-archive-plugin        Do not build archive plugin],
1002                 [enable_archive_plugin=$enableval], [enable_archive_plugin=auto])
1003
1004 AC_ARG_ENABLE(att_remover-plugin,
1005                 [  --disable-att_remover-plugin    Do not build att_remover plugin],
1006                 [enable_att_remover_plugin=$enableval], [enable_att_remover_plugin=auto])
1007
1008 AC_ARG_ENABLE(attachwarner-plugin,
1009                 [  --disable-attachwarner-plugin   Do not build attachwarner plugin],
1010                 [enable_attachwarner_plugin=$enableval], [enable_attachwarner_plugin=auto])
1011
1012 AC_ARG_ENABLE(bogofilter-plugin,
1013                 [  --disable-bogofilter-plugin     Do not build bogofilter plugin],
1014                 [enable_bogofilter_plugin=$enableval], [enable_bogofilter_plugin=auto])
1015
1016 AC_ARG_ENABLE(bsfilter-plugin,
1017                 [  --disable-bsfilter-plugin       Do not build bsfilter plugin],
1018                 [enable_bsfilter_plugin=$enableval], [enable_bsfilter_plugin=auto])
1019
1020 AC_ARG_ENABLE(clamd-plugin,
1021                 [  --disable-clamd-plugin          Do not build clamd plugin],
1022                 [enable_clamd_plugin=$enableval], [enable_clamd_plugin=auto])
1023
1024 AC_ARG_ENABLE(dillo-plugin,
1025                 [  --disable-dillo-plugin          Do not build dillo plugin],
1026                 [enable_dillo_plugin=$enableval], [enable_dillo_plugin=auto])
1027
1028 AC_ARG_ENABLE(fancy-plugin,
1029                 [  --disable-fancy-plugin          Do not build fancy plugin],
1030                 [enable_fancy_plugin=$enableval], [enable_fancy_plugin=auto])
1031
1032 AC_ARG_ENABLE(fetchinfo-plugin,
1033                 [  --disable-fetchinfo-plugin      Do not build fetchinfo plugin],
1034                 [enable_fetchinfo_plugin=$enableval], [enable_fetchinfo_plugin=auto])
1035
1036 AC_ARG_ENABLE(gdata-plugin,
1037                 [  --disable-gdata-plugin          Do not build gdata plugin],
1038                 [enable_gdata_plugin=$enableval], [enable_gdata_plugin=auto])
1039
1040 AC_ARG_ENABLE(libravatar-plugin,
1041                 [  --disable-libravatar-plugin     Do not build libravatar  plugin],
1042                 [enable_libravatar_plugin=$enableval], [enable_libravatar_plugin=auto])
1043
1044 AC_ARG_ENABLE(mailmbox-plugin,
1045                 [  --disable-mailmbox-plugin       Do not build mailmbox plugin],
1046                 [enable_mailmbox_plugin=$enableval], [enable_mailmbox_plugin=auto])
1047
1048 AC_ARG_ENABLE(managesieve-plugin,
1049                 [  --disable-managesieve-plugin    Do not build managesieve plugin],
1050                 [enable_managesieve_plugin=$enableval], [enable_managesieve_plugin=auto])
1051
1052 AC_ARG_ENABLE(newmail-plugin,
1053                 [  --disable-newmail-plugin        Do not build newmail plugin],
1054                 [enable_newmail_plugin=$enableval], [enable_newmail_plugin=auto])
1055
1056 AC_ARG_ENABLE(notification-plugin,
1057                 [  --disable-notification-plugin   Do not build notification plugin],
1058                 [enable_notification_plugin=$enableval], [enable_notification_plugin=auto])
1059
1060 AC_ARG_ENABLE(pdf_viewer-plugin,
1061                 [  --disable-pdf_viewer-plugin     Do not build pdf_viewer plugin],
1062                 [enable_pdf_viewer_plugin=$enableval], [enable_pdf_viewer_plugin=auto])
1063
1064 AC_ARG_ENABLE(perl-plugin,
1065                 [  --disable-perl-plugin           Do not build perl plugin],
1066                 [enable_perl_plugin=$enableval], [enable_perl_plugin=auto])
1067
1068 AC_ARG_ENABLE(python-plugin,
1069                 [  --disable-python-plugin         Do not build python plugin],
1070                 [enable_python_plugin=$enableval], [enable_python_plugin=auto])
1071
1072 AC_ARG_ENABLE(pgpcore-plugin,
1073                 [  --disable-pgpcore-plugin        Do not build pgpcore plugin],
1074                 [enable_pgpcore_plugin=$enableval], [enable_pgpcore_plugin=auto])
1075
1076 AC_ARG_ENABLE(pgpmime-plugin,
1077                 [  --disable-pgpmime-plugin        Do not build pgpmime plugin],
1078                 [enable_pgpmime_plugin=$enableval], [enable_pgpmime_plugin=auto])
1079
1080 AC_ARG_ENABLE(pgpinline-plugin,
1081                 [  --disable-pgpinline-plugin      Do not build pgpinline plugin],
1082                 [enable_pgpinline_plugin=$enableval], [enable_pgpinline_plugin=auto])
1083
1084 AC_ARG_ENABLE(rssyl-plugin,
1085                 [  --disable-rssyl-plugin          Do not build rssyl plugin],
1086                 [enable_rssyl_plugin=$enableval], [enable_rssyl_plugin=auto])
1087
1088 AC_ARG_ENABLE(smime-plugin,
1089                 [  --disable-smime-plugin          Do not build smime plugin],
1090                 [enable_smime_plugin=$enableval], [enable_smime_plugin=auto])
1091
1092 AC_ARG_ENABLE(spamassassin-plugin,
1093                 [  --disable-spamassassin-plugin   Do not build spamassassin plugin],
1094                 [enable_spamassassin_plugin=$enableval], [enable_spamassassin_plugin=auto])
1095
1096 AC_ARG_ENABLE(spam_report-plugin,
1097                 [  --disable-spam_report-plugin    Do not build spam_report plugin],
1098                 [enable_spam_report_plugin=$enableval], [enable_spam_report_plugin=auto])
1099
1100 AC_ARG_ENABLE(tnef_parse-plugin,
1101                 [  --disable-tnef_parse-plugin     Do not build tnef_parse plugin],
1102                 [enable_tnef_parse_plugin=$enableval], [enable_tnef_parse_plugin=auto])
1103
1104 AC_ARG_ENABLE(vcalendar-plugin,
1105                 [  --disable-vcalendar-plugin      Do not build vcalendar plugin],
1106                 [enable_vcalendar_plugin=$enableval], [enable_vcalendar_plugin=auto])
1107
1108 dnl disabled by default
1109 AC_ARG_ENABLE(demo-plugin,
1110                 [  --enable-demo-plugin         Build demo plugin],
1111                 [enable_demo_plugin=$enableval], [enable_demo_plugin=no])
1112
1113
1114 dnl Then we check (unconditionnaly) for plugins dependencies
1115 dnl Some dependencies are optional, some mandatory. This is taken care of
1116 dnl later.
1117 dnl
1118 dnl During this dependancy check we do the checks themselves, define HAVE_X to
1119 dnl either yes or no, and do the AC_SUBST calls.
1120
1121 dnl Archive:            libarchive
1122 dnl Fancy:              Webkit, curl, optionally libsoup-gnome
1123 dnl Gdata:              libgdata
1124 dnl Libravatar:         libcurl
1125 dnl Notification:       optionally libnotify  unity/messaging-menu
1126 dnl                                libcanberra_gtk hotkey
1127 dnl Pdf-Viewer:         libpoppler
1128 dnl Perl:               sed perl
1129 dnl PGP/Core:           libgpgme
1130 dnl PGP/Mime:           pgpcore libgpgme
1131 dnl PGP/Inline:         pgpcore libgpgme
1132 dnl S/Mime:             pgpcore libgpgme
1133 dnl Python:             Python
1134 dnl RSSyl:              expat libcurl
1135 dnl SpamReport:         libcurl
1136 dnl vCalendar:          libcurl, libical
1137 dnl tnef_parse:         libytnef
1138
1139 dnl libcurl ********************************************************************
1140 PKG_CHECK_MODULES(CURL, libcurl, HAVE_CURL=yes, HAVE_CURL=no)
1141 AC_SUBST(CURL_LIBS)
1142 AC_SUBST(CURL_CFLAGS)
1143
1144 dnl expat **********************************************************************
1145 PKG_CHECK_MODULES(EXPAT, expat, HAVE_EXPAT=yes, HAVE_EXPAT=no)
1146
1147 if test x"$HAVE_EXPAT" = xno; then
1148         AC_CHECK_HEADER(expat.h, [expat_header=yes], [expat_header=no])
1149         AC_CHECK_LIB(expat, XML_ParserCreate, [expat_lib=yes], [expat_lib=no])
1150         if test x"$expat_header" = xyes -a x"$expat_lib"=xyes; then
1151                 HAVE_EXPAT=yes
1152                 EXPAT_CFLAGS=""
1153                 EXPAT_LIBS="-lexpat"
1154         fi
1155 fi
1156
1157 AC_SUBST(EXPAT_CFLAGS)
1158 AC_SUBST(EXPAT_LIBS)
1159
1160 dnl webkit *********************************************************************
1161 PKG_CHECK_MODULES(WEBKIT, webkit-1.0 >= 1.1.14, HAVE_WEBKIT=yes, HAVE_WEBKIT=no)
1162 AC_SUBST(WEBKIT_LIBS)
1163 AC_SUBST(WEBKIT_CFLAGS)
1164
1165 dnl libsoup ********************************************************************
1166 PKG_CHECK_MODULES(LIBSOUP, libsoup-2.4, HAVE_LIBSOUP=yes, HAVE_LIBSOUP=no)
1167 if test x"$HAVE_LIBSOUP" = xyes; then
1168         AC_DEFINE(HAVE_LIBSOUP, 1, [Define if libsoup is available])
1169 fi
1170 AC_SUBST(LIBSOUP_CFLAGS)
1171 AC_SUBST(LIBSOUP_LIBS)
1172
1173 dnl libsoup-gnome **************************************************************
1174 PKG_CHECK_MODULES(LIBSOUP_GNOME, libsoup-gnome-2.4 >= 2.26, HAVE_LIBSOUP_GNOME=yes, HAVE_LIBSOUP_GNOME=no)
1175 if test x"$HAVE_LIBSOUP_GNOME" = xyes; then
1176         AC_DEFINE(HAVE_LIBSOUP_GNOME, 1, [Define if libsoup_gnome is available])
1177 fi
1178 AC_SUBST(LIBSOUP_GNOME_CFLAGS)
1179 AC_SUBST(LIBSOUP_GNOME_LIBS)
1180
1181 dnl libarchive *****************************************************************
1182 PKG_CHECK_MODULES(LIBARCHIVE, libarchive, HAVE_ARCHIVE=yes, HAVE_ARCHIVE=no)
1183 AC_SUBST(ARCHIVE_LIBS)
1184 AC_SUBST(ARCHIVE_CFLAGS)
1185 AC_CHECK_LIB([archive], [archive_read_new],
1186                        ARCHIVE_LIBS=-larchive
1187                        HAVE_ARCHIVE=yes
1188                        AC_SUBST(ARCHIVE_LIBS,$ARCHIVE_CFLAGS),
1189                        HAVE_ARCHIVE=no
1190                        )
1191
1192 dnl libgdata *******************************************************************
1193 PKG_CHECK_MODULES(GDATA, libgdata >= 0.17.2, HAVE_GDATA=yes, HAVE_GDATA=no)
1194 AC_SUBST(GDATA_CFLAGS)
1195 AC_SUBST(GDATA_LIBS)
1196
1197 dnl libical ********************************************************************
1198 PKG_CHECK_MODULES(LIBICAL, libical >= 2.0, HAVE_LIBICAL=yes, HAVE_LIBICAL=no)
1199 AC_SUBST(LIBICAL_CFLAGS)
1200 AC_SUBST(LIBICAL_LIBS)
1201
1202 dnl Poppler ********************************************************************
1203 PKG_CHECK_MODULES(POPPLER, poppler-glib >= 0.12.0, HAVE_POPPLER=yes, HAVE_POPPLER=no)
1204 AC_SUBST(POPPLER_LIBS)
1205 AC_SUBST(POPPLER_CFLAGS)
1206
1207 dnl check for Poppler extra features that we conditionally support
1208 if test x"$HAVE_POPPLER" = xyes; then
1209         OLD_CFLAGS=$CFLAGS
1210         CFLAGS="$POPPLER_CFLAGS $GTK_CFLAGS $GLIB_CFLAGS"
1211         AC_CHECK_DECL(POPPLER_DEST_NAMED,
1212                 [AC_DEFINE([HAVE_POPPLER_DEST_NAMED], [], [Description])],
1213                 ,[#include <poppler-action.h>])
1214         AC_CHECK_DECL(POPPLER_DEST_XYZ,
1215                 [AC_DEFINE([HAVE_POPPLER_DEST_XYZ], [], [Description])],
1216                 ,[#include <poppler-action.h>])
1217         CFLAGS=$OLD_CFLAGS
1218 fi
1219
1220 dnl perl ***********************************************************************
1221 AC_CHECK_PROG(HAVE_PERL, perl, yes, no)
1222 if test x"$HAVE_PERL" = xyes; then
1223         AC_MSG_CHECKING(for perl >= 5.8.0)
1224         PERL_VER=`perl -e 'print $] > 5.0079999?"yes":"no"'`
1225         if test "$PERL_VER" = "yes"; then
1226                 AC_MSG_RESULT(yes)
1227         else
1228                 AC_MSG_RESULT(no)
1229                 HAVE_PERL=no
1230         fi
1231 fi
1232 if test x"$HAVE_PERL" = xyes; then
1233         AC_MSG_CHECKING(for Perl compile flags)
1234         PERL_CFLAGS=`perl -MExtUtils::Embed -e ccopts`
1235         PERL_CFLAGS=`echo $PERL_CFLAGS | sed 's/-D_FILE_OFFSET_BITS=[[0-9]]*//'`
1236         PERL_LDFLAGS=`perl -MExtUtils::Embed -e ldopts |sed 's/-lgdbm\>//'`
1237         PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-ldb\>//'`
1238         PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-lndbm\>//'`
1239         PERL_LDFLAGS=`echo $PERL_LDFLAGS |sed 's/-lc\>//'`
1240         AC_MSG_RESULT(ok)
1241         AC_MSG_NOTICE([Adding perl LIBS ${PERL_CFLAGS}])
1242         
1243         if test x"$HAVE_PERL" = xyes; then
1244                 AC_CHECK_LIB(perl,perl_alloc,[AC_DEFINE(HAVE_LIBPERL, 1, Check for libperl.)], 
1245                                              [ HAVE_LIBPERL=no ])
1246         fi
1247         if test x"$HAVE_LIBPERL" = xno; then
1248                 LIBPERL_PREFIX=`perl -MExtUtils::Embed -e perl_inc`
1249                 LIBPERL_PREFIX=`echo $LIBPERL_PREFIX |sed 's/-I//'`
1250                 AC_MSG_CHECKING([for libperl.so])
1251                 if test -f "$LIBPERL_PREFIX/libperl.so"; then
1252                         AC_MSG_RESULT(yes)
1253                         HAVE_LIBPERL=yes
1254                 else
1255                         AC_MSG_RESULT(no)
1256                 fi      
1257         fi
1258         PERL="perl"
1259         AC_SUBST(PERL)
1260         AC_SUBST(PERL_CFLAGS)
1261         AC_SUBST(PERL_LDFLAGS)
1262 fi
1263
1264 dnl Gpgme **********************************************************************
1265 AM_PATH_GPGME(1.0.0, HAVE_GPGME=yes, HAVE_GPGME=no)
1266 if test x"$HAVE_GPGME" = xyes; then
1267         AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.)
1268         AM_PATH_GPGME(1.1.1, AC_DEFINE(HAVE_GPGME_PKA_TRUST, 1, [Define if GPGME supports PKA.]))
1269 fi
1270
1271 dnl Python *********************************************************************
1272 AM_PATH_PYTHON([2.5], [
1273         AC_PATH_PROG(PYTHON_CONFIG, python$PYTHON_VERSION-config)
1274         if test x"$PYTHON_CONFIG" = x"" ; then
1275                 AC_PATH_PROG(PYTHON_CONFIG, python-config)
1276         fi
1277         if test x"$PYTHON_CONFIG" != x""; then
1278                 PYTHON_CFLAGS=`$PYTHON_CONFIG --includes`
1279                 PYTHON_LIBS=`$PYTHON_CONFIG --libs`
1280                 PYTHON_PREFIX=`$PYTHON_CONFIG --prefix`
1281                 HAVE_PYTHON=yes
1282         else
1283                 AC_MSG_WARN(python-config not found. Maybe you need to install development packages for Python.)
1284                 HAVE_PYTHON=no
1285         fi
1286
1287         if test x"$HAVE_PYTHON" = xyes; then
1288                 _save_libs="$LIBS"
1289                 if test x"$platform_win32" = xno; then
1290                         # libpython.so
1291                         PYTHON_SHARED_LIB="libpython${PYTHON_VERSION}.so"
1292                         AC_CHECK_LIB(dl, dlopen, [LIBS="-ldl"])
1293                         AC_MSG_CHECKING([whether to dlopen $PYTHON_SHARED_LIB works])
1294                         AC_RUN_IFELSE(
1295                                 [AC_LANG_PROGRAM(
1296                                         [#include <dlfcn.h>
1297                                          #define PYTHON_SO_FILE "${PYTHON_SHARED_LIB}"
1298                                         ],
1299                                         [if (!dlopen(PYTHON_SO_FILE, RTLD_NOW | RTLD_GLOBAL)) return 1; return 0;])
1300                                 ],
1301                                 [found_libpython_so="yes"],
1302                                 [found_libpython_so="no"],
1303                                 [AC_MSG_FAILURE([cross-compiling not supported])])
1304                 fi
1305                 if test x"$found_libpython_so" != x"yes"; then
1306                         AC_MSG_RESULT(no)
1307                         AC_MSG_WARN(Could not find Python shared libary: ${PYTHON_SHARED_LIB}. Maybe you need to install development packages for Python.)
1308                         HAVE_PYTHON=no
1309                 else
1310                         AC_MSG_RESULT(yes)
1311                 fi
1312                 LIBS="$_save_libs";
1313         fi
1314         if test x"$HAVE_PYTHON" = xyes; then
1315                 PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= 2.10.3, [AC_DEFINE(ENABLE_PYTHON, [1], [Enable Python support])], HAVE_PYTHON=no)
1316         fi
1317 ])
1318 AC_SUBST(PYTHON_SHARED_LIB)
1319 AC_SUBST(PYTHON_CFLAGS)
1320 AC_SUBST(PYTHON_LIBS)
1321 AC_SUBST(PYGTK_CFLAGS)
1322 AC_SUBST(PYGTK_LIBS)
1323
1324 dnl libnotify ******************************************************************
1325 PKG_CHECK_MODULES(libnotify, libnotify >= 0.4.3, HAVE_LIBNOTIFY=yes, HAVE_LIBNOTIFY=no)
1326 if test x"$HAVE_LIBNOTIFY" = xyes; then
1327         AC_DEFINE(HAVE_LIBNOTIFY, 1, [Define if libnotify support is enabled])
1328 fi
1329 AC_SUBST(libnotify_CFLAGS)
1330 AC_SUBST(libnotify_LIBS)
1331
1332 dnl libcanberra-gtk ************************************************************
1333 PKG_CHECK_MODULES(libcanberra_gtk, libcanberra-gtk >= 0.6, HAVE_LIBCANBERRA_GTK=yes, HAVE_LIBCANBERRA_GTK=no)
1334 if test x"$HAVE_LIBCANBERRA_GTK" = xyes; then
1335         AC_DEFINE(HAVE_LIBCANBERRA_GTK, 1, [Define if libcanberra-gtk support is enabled])
1336 fi
1337 AC_SUBST(libcanberra_gtk_CFLAGS)
1338 AC_SUBST(libcanberra_gtk_LIBS)
1339
1340 dnl unity/messaging-menu *******************************************************
1341 PKG_CHECK_MODULES(unity, unity messaging-menu, HAVE_UNITY=yes, HAVE_UNITY=no)
1342 if test x"$HAVE_UNITY" = xyes; then
1343         AC_DEFINE(NOTIFICATION_INDICATOR, 1, [Activate support for unity and messaging-menu])
1344 fi
1345 AC_SUBST(unity_CFLAGS)
1346 AC_SUBST(unity_LIBS)
1347
1348 dnl hotkeys ********************************************************************
1349 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)
1350 if test x"$HAVE_HOTKEYS" = xyes; then
1351         AC_DEFINE(NOTIFICATION_HOTKEYS, 1, Activate support for global hotkeys)
1352 fi
1353 AC_SUBST(CM_NP_HOTKEY_CFLAGS)
1354 AC_SUBST(CM_NP_HOTKEY_LIBS)
1355
1356 dnl libytnef *******************************************************************
1357 YTNEF_CFLAGS=""
1358 YTNEF_LIBS=""
1359 have_ytnef=0
1360 # Check both ytnef.h and libytnef/ytnef.h, and adjust YTNEF_CFLAGS
1361 # accordingly
1362 AC_CHECK_HEADER(ytnef.h, [have_ytnef=1], [have_ytnef=0])
1363 if test $have_ytnef -eq 0; then
1364         AC_CHECK_HEADER(libytnef/ytnef.h,
1365                                                                         [have_ytnef=1;
1366                                                                          YTNEF_CFLAGS="${YTNEF_CFLAGS} -DYTNEF_H_SUBDIR"],
1367                                                                         [have_ytnef=0])
1368 fi
1369 if test $have_ytnef -eq 1; then
1370         AC_MSG_CHECKING([how libytnef's SwapDDWord() should be called])
1371         # Now we have to figure out which libytnef version we're using,
1372         # based on whether SwapDDWord takes one argument or two.
1373         if test "x${YTNEF_CFLAGS}" = "x"; then
1374                 ytnef_include="#include <ytnef.h>"
1375         else
1376                 ytnef_include="#include <libytnef/ytnef.h>"
1377         fi
1378         AC_TRY_COMPILE([#include <stdio.h>
1379                                                                         ${ytnef_include}],
1380                                                                         [SwapDDWord(0, 0);],
1381                                                                         [have_ytnef=1],
1382                                                                         [have_ytnef=0])
1383         if test $have_ytnef -eq 0; then
1384                 AC_TRY_COMPILE([#include <stdio.h>
1385                                                                                 ${ytnef_include}],
1386                                                                                 [SwapDDWord(0);],
1387                                                                                 [have_ytnef=1;
1388                                                                                  YTNEF_CFLAGS="${YTNEF_CFLAGS} -DYTNEF_OLD_SWAPDDWORD"],
1389                                                                                 [have_ytnef=0])
1390         fi
1391         if test $have_ytnef -eq 1; then
1392                 YTNEF_LIBS="-lytnef"
1393                 AC_MSG_RESULT(ok)
1394         else
1395                 AC_MSG_RESULT(no idea, unsupported libytnef version?)
1396         fi
1397 fi
1398 AC_SUBST(YTNEF_CFLAGS)
1399 AC_SUBST(YTNEF_LIBS)
1400
1401 dnl Third, we now cross the requested plugins and the available dependencies
1402 dnl If some dependencies are missing and the plugin was explicitely enabled,
1403 dnl we error out, else we only inform.
1404
1405 AC_MSG_CHECKING([whether to build acpi_notifier plugin])
1406 if test x"$enable_acpi_notifier_plugin" != xno; then
1407         PLUGINS="$PLUGINS acpi_notifier"
1408         AC_MSG_RESULT(yes)
1409 else
1410         DISABLED_PLUGINS="$DISABLED_PLUGINS acpi_notifier"
1411         AC_MSG_RESULT(no)
1412 fi
1413
1414 AC_MSG_CHECKING([whether to build address_keeper plugin])
1415 if test x"$enable_address_keeper_plugin" != xno; then
1416         PLUGINS="$PLUGINS address_keeper"
1417         AC_MSG_RESULT(yes)
1418 else
1419         DISABLED_PLUGINS="$DISABLED_PLUGINS address_keeper"
1420         AC_MSG_RESULT(no)
1421 fi
1422
1423 AC_MSG_CHECKING([whether to build archive plugin])
1424 if test x"$enable_archive_plugin" != xno; then
1425         dependencies_missing=""
1426
1427         if test x"$HAVE_ARCHIVE" = xno; then
1428                 dependencies_missing="libarchive $dependencies_missing"
1429         fi
1430
1431         if test x"$dependencies_missing" = x; then
1432                 PLUGINS="$PLUGINS archive"
1433                 AC_MSG_RESULT(yes)
1434         elif test x"$enable_archive_plugin" = xauto; then
1435                 AC_MSG_RESULT(no)
1436                 AC_MSG_WARN("Plugin archive will not be built; missing $dependencies_missing")
1437                 enable_archive_plugin=no
1438                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS archive"
1439         else
1440                 AC_MSG_RESULT(no)
1441                 AC_MSG_ERROR("Plugin archive cannot be built; missing $dependencies_missing")
1442         fi
1443 else
1444         DISABLED_PLUGINS="$DISABLED_PLUGINS archive"
1445         AC_MSG_RESULT(no)
1446 fi
1447
1448 AC_MSG_CHECKING([whether to build att_remover plugin])
1449 if test x"$enable_att_remover_plugin" != xno; then
1450         PLUGINS="$PLUGINS att_remover"
1451         AC_MSG_RESULT(yes)
1452 else
1453         DISABLED_PLUGINS="$DISABLED_PLUGINS att_remover"
1454         AC_MSG_RESULT(no)
1455 fi
1456
1457 AC_MSG_CHECKING([whether to build attachwarner plugin])
1458 if test x"$enable_attachwarner_plugin" != xno; then
1459         PLUGINS="$PLUGINS attachwarner"
1460         AC_MSG_RESULT(yes)
1461 else
1462         DISABLED_PLUGINS="$DISABLED_PLUGINS attachwarner"
1463         AC_MSG_RESULT(no)
1464 fi
1465
1466 AC_MSG_CHECKING([whether to build bogofilter plugin])
1467 if test x"$enable_bogofilter_plugin" != xno; then
1468         PLUGINS="$PLUGINS bogofilter"
1469         AC_MSG_RESULT(yes)
1470 else
1471         DISABLED_PLUGINS="$DISABLED_PLUGINS bogofilter"
1472         AC_MSG_RESULT(no)
1473 fi
1474
1475 AC_MSG_CHECKING([whether to build bsfilter plugin])
1476 if test x"$enable_bsfilter_plugin" != xno; then
1477         PLUGINS="$PLUGINS bsfilter"
1478         AC_MSG_RESULT(yes)
1479 else
1480         DISABLED_PLUGINS="$DISABLED_PLUGINS bsfilter"
1481         AC_MSG_RESULT(no)
1482 fi
1483
1484 AC_MSG_CHECKING([whether to build clamd plugin])
1485 if test x"$enable_clamd_plugin" != xno; then
1486         PLUGINS="$PLUGINS clamd"
1487         AC_MSG_RESULT(yes)
1488 else
1489         DISABLED_PLUGINS="$DISABLED_PLUGINS clamd"
1490         AC_MSG_RESULT(no)
1491 fi
1492
1493 AC_MSG_CHECKING([whether to build demo plugin])
1494 if test x"$enable_demo_plugin" != xno; then
1495         PLUGINS="$PLUGINS demo"
1496         AC_MSG_RESULT(yes)
1497 else
1498         DISABLED_PLUGINS="$DISABLED_PLUGINS demo"
1499         AC_MSG_RESULT(no)
1500 fi
1501
1502 AC_MSG_CHECKING([whether to build Dillo plugin])
1503 if test x"$enable_dillo_plugin" != xno; then
1504         PLUGINS="$PLUGINS dillo"
1505         AC_MSG_RESULT(yes)
1506 else
1507         DISABLED_PLUGINS="$DISABLED_PLUGINS dillo"
1508         AC_MSG_RESULT(no)
1509 fi
1510
1511 AC_MSG_CHECKING([whether to build fancy plugin])
1512 if test x"$enable_fancy_plugin" != xno; then
1513         dependencies_missing=""
1514
1515         if test x"$HAVE_WEBKIT" = xno; then
1516                 dependencies_missing="libwebkit-1.0 $dependencies_missing"
1517         fi
1518         if test x"$HAVE_CURL" = xno; then
1519                 dependencies_missing="libcurl $dependencies_missing"
1520         fi
1521
1522         if test x"$dependencies_missing" = x; then
1523                 PLUGINS="$PLUGINS fancy"
1524                 AC_MSG_RESULT(yes)
1525         elif test x"$enable_fancy_plugin" = xauto; then
1526                 AC_MSG_RESULT(no)
1527                 AC_MSG_WARN("Plugin fancy will not be built; missing $dependencies_missing")
1528                 enable_fancy_plugin=no
1529                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS fancy"
1530         else
1531                 AC_MSG_RESULT(no)
1532                 AC_MSG_ERROR("Plugin fancy cannot be built; missing $dependencies_missing")
1533         fi
1534 else
1535         DISABLED_PLUGINS="$DISABLED_PLUGINS fancy"
1536         AC_MSG_RESULT(no)
1537 fi
1538
1539 AC_MSG_CHECKING([whether to build fetchinfo plugin])
1540 if test x"$enable_fetchinfo_plugin" != xno; then
1541         PLUGINS="$PLUGINS fetchinfo"
1542         AC_MSG_RESULT(yes)
1543 else
1544         DISABLED_PLUGINS="$DISABLED_PLUGINS fetchinfo"
1545         AC_MSG_RESULT(no)
1546 fi
1547
1548 AC_MSG_CHECKING([whether to build gdata plugin])
1549 if test x"$enable_gdata_plugin" != xno; then
1550         dependencies_missing=""
1551
1552         if test x"$HAVE_GDATA" = xno; then
1553                 dependencies_missing="libgdata $dependencies_missing"
1554         fi
1555
1556         if test x"$dependencies_missing" = x; then
1557                 PLUGINS="$PLUGINS gdata"
1558                 AC_MSG_RESULT(yes)
1559         elif test x"$enable_gdata_plugin" = xauto; then
1560                 AC_MSG_RESULT(no)
1561                 AC_MSG_WARN("Plugin gdata will not be built; missing $dependencies_missing")
1562                 enable_gdata_plugin=no
1563                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS gdata"
1564         else
1565                 AC_MSG_RESULT(no)
1566                 AC_MSG_ERROR("Plugin gdata cannot be built; missing $dependencies_missing")
1567         fi
1568 else
1569         DISABLED_PLUGINS="$DISABLED_PLUGINS gdata"
1570         AC_MSG_RESULT(no)
1571 fi
1572
1573 AC_MSG_CHECKING([whether to build libravatar plugin])
1574 if test x"$enable_libravatar_plugin" != xno; then
1575         dependencies_missing=""
1576
1577         if test x"$HAVE_CURL" = xno; then
1578                 dependencies_missing="libcurl $dependencies_missing"
1579         fi
1580
1581         if test x"$dependencies_missing" = x; then
1582                 PLUGINS="$PLUGINS libravatar"
1583                 AC_MSG_RESULT(yes)
1584         elif test x"$enable_libravatar_plugin" = xauto; then
1585                 AC_MSG_RESULT(no)
1586                 AC_MSG_WARN("Plugin libravatar will not be built; missing $dependencies_missing")
1587                 enable_libravatar_plugin=no
1588                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS libravatar"
1589         else
1590                 AC_MSG_RESULT(no)
1591                 AC_MSG_ERROR("Plugin libravatar cannot be built; missing $dependencies_missing")
1592         fi
1593 else
1594         DISABLED_PLUGINS="$DISABLED_PLUGINS libravatar"
1595         AC_MSG_RESULT(no)
1596 fi
1597
1598 AC_MSG_CHECKING([whether to build mailmbox plugin])
1599 if test x"$enable_mailmbox_plugin" != xno; then
1600         PLUGINS="$PLUGINS mailmbox"
1601         AC_MSG_RESULT(yes)
1602 else
1603         DISABLED_PLUGINS="$DISABLED_PLUGINS mailmbox"
1604         AC_MSG_RESULT(no)
1605 fi
1606
1607 AC_MSG_CHECKING([whether to build managesieve plugin])
1608 if test x"$enable_managesieve_plugin" != xno; then
1609         PLUGINS="$PLUGINS managesieve"
1610         AC_MSG_RESULT(yes)
1611 else
1612         DISABLED_PLUGINS="$DISABLED_PLUGINS managesieve"
1613         AC_MSG_RESULT(no)
1614 fi
1615
1616 AC_MSG_CHECKING([whether to build newmail plugin])
1617 if test x"$enable_newmail_plugin" != xno; then
1618         PLUGINS="$PLUGINS newmail"
1619         AC_MSG_RESULT(yes)
1620 else
1621         DISABLED_PLUGINS="$DISABLED_PLUGINS newmail"
1622         AC_MSG_RESULT(no)
1623 fi
1624
1625 AC_MSG_CHECKING([whether to build notification plugin])
1626 if test x"$enable_notification_plugin" != xno; then
1627         PLUGINS="$PLUGINS notification"
1628         AC_MSG_RESULT(yes)
1629
1630         AC_DEFINE(NOTIFICATION_POPUP, 1, Activate notification popup)
1631         AC_DEFINE(NOTIFICATION_BANNER, 1, Activate notification banner)
1632         AC_DEFINE(NOTIFICATION_COMMAND, 1, Activate notification shell command)
1633         AC_DEFINE(NOTIFICATION_TRAYICON, 1, Activate notification trayicon)
1634         if test x"$platform_win32" = xno; then
1635                 AC_DEFINE(NOTIFICATION_LCDPROC, 1, Activate lcdproc support)
1636         fi
1637
1638         notification_features="banner command"
1639         notification_missing_dependencies=""
1640         if test x"$HAVE_HOTKEYS" = xyes; then
1641                 notification_features="$notification_features hotkeys"
1642         else
1643                 notification_missing_dependencies="$notification_missing_dependencies hotkeys"
1644         fi
1645         notification_features="$notification_features lcdproc"
1646         if test x"$HAVE_UNITY" = xyes; then
1647                 notification_features="$notification_features unity/messaging-menu"
1648         else
1649                 notification_missing_dependencies="$notification_missing_dependencies unity/messaging-menu"
1650         fi
1651         if test x"$HAVE_LIBNOTIFY" = xyes; then
1652                 notification_features="$notification_features libnotify"
1653         else
1654                 notification_missing_dependencies="$notification_missing_dependencies libnotify"
1655         fi
1656         if test x"$HAVE_LIBCANBERRA_GTK" = xyes; then
1657                 notification_features="$notification_features libcanberra-gtk"
1658         else
1659                 notification_missing_dependencies="$notification_missing_dependencies libcanberra-gtk"
1660         fi
1661         notification_features="$notification_features popup trayicon"
1662 else
1663         DISABLED_PLUGINS="$DISABLED_PLUGINS notification"
1664         AC_MSG_RESULT(no)
1665 fi
1666
1667 AC_MSG_CHECKING([whether to build pdf_viewer plugin])
1668 if test x"$enable_pdf_viewer_plugin" != xno; then
1669         dependencies_missing=""
1670
1671         if test x"$HAVE_POPPLER" = xno; then
1672                 dependencies_missing="libpoppler-glib $dependencies_missing"
1673         fi
1674
1675         if test x"$dependencies_missing" = x; then
1676                 PLUGINS="$PLUGINS pdf_viewer"
1677                 AC_MSG_RESULT(yes)
1678         elif test x"$enable_pdf_viewer_plugin" = xauto; then
1679                 AC_MSG_RESULT(no)
1680                 AC_MSG_WARN("Plugin pdf_viewer will not be built; missing $dependencies_missing")
1681                 enable_pdf_viewer_plugin=no
1682                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pdf_viewer"
1683         else
1684                 AC_MSG_RESULT(no)
1685                 AC_MSG_ERROR("Plugin pdf_viewer cannot be built; missing $dependencies_missing")
1686         fi
1687 else
1688         DISABLED_PLUGINS="$DISABLED_PLUGINS pdf_viewer"
1689         AC_MSG_RESULT(no)
1690 fi
1691
1692 AC_MSG_CHECKING([whether to build perl plugin])
1693 if test x"$enable_perl_plugin" != xno; then
1694         dependencies_missing=""
1695
1696         if test x"$HAVE_LIBPERL" = xno; then
1697                 dependencies_missing="libperl $dependencies_missing"
1698         fi
1699
1700         if test x"$dependencies_missing" = x; then
1701                 PLUGINS="$PLUGINS perl"
1702                 AC_MSG_RESULT(yes)
1703         elif test x"$enable_perl_plugin" = xauto; then
1704                 AC_MSG_RESULT(no)
1705                 AC_MSG_WARN("Plugin perl will not be built; missing $dependencies_missing")
1706                 enable_perl_plugin=no
1707                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS perl"
1708         else
1709                 AC_MSG_RESULT(no)
1710                 AC_MSG_ERROR("Plugin perl cannot be built; missing $dependencies_missing")
1711         fi
1712 else
1713         DISABLED_PLUGINS="$DISABLED_PLUGINS perl"
1714         AC_MSG_RESULT(no)
1715 fi
1716
1717 AC_MSG_CHECKING([whether to build python plugin])
1718 if test x"$enable_python_plugin" != xno; then
1719         dependencies_missing=""
1720
1721         if test x"$HAVE_PYTHON" = xno; then
1722                 dependencies_missing="python $dependencies_missing"
1723         fi
1724
1725         if test x"$dependencies_missing" = x; then
1726                 PLUGINS="$PLUGINS python"
1727                 AC_MSG_RESULT(yes)
1728         elif test x"$enable_python_plugin" = xauto; then
1729                 AC_MSG_RESULT(no)
1730                 AC_MSG_WARN("Plugin python will not be built; missing $dependencies_missing")
1731                 enable_python_plugin=no
1732                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS python"
1733         else
1734                 AC_MSG_RESULT(no)
1735                 AC_MSG_ERROR("Plugin python cannot be built; missing $dependencies_missing")
1736         fi
1737 else
1738         DISABLED_PLUGINS="$DISABLED_PLUGINS python"
1739         AC_MSG_RESULT(no)
1740 fi
1741
1742 AC_MSG_CHECKING([whether to build pgpcore plugin])
1743 if test x"$enable_pgpcore_plugin" != xno; then
1744         dependencies_missing=""
1745
1746         if test x"$HAVE_GPGME" = xno; then
1747                 dependencies_missing="libgpgme $dependencies_missing"
1748         fi
1749
1750         if test x"$dependencies_missing" = x; then
1751                 PLUGINS="$PLUGINS pgpcore"
1752                 AC_MSG_RESULT(yes)
1753         elif test x"$enable_pgpcore_plugin" = xauto; then
1754                 AC_MSG_RESULT(no)
1755                 AC_MSG_WARN("Plugin pgpcore will not be built; missing $dependencies_missing")
1756                 enable_pgpcore_plugin=no
1757                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpcore"
1758         else
1759                 AC_MSG_RESULT(no)
1760                 AC_MSG_ERROR("Plugin pgpcore cannot be built; missing $dependencies_missing")
1761         fi
1762 else
1763         DISABLED_PLUGINS="$DISABLED_PLUGINS pgpcore"
1764         AC_MSG_RESULT(no)
1765 fi
1766
1767 AC_MSG_CHECKING([whether to build pgpmime plugin])
1768 if test x"$enable_pgpmime_plugin" != xno; then
1769         dependencies_missing=""
1770
1771         if test x"$HAVE_GPGME" = xno; then
1772                 dependencies_missing="libgpgme $dependencies_missing"
1773         fi
1774         if test x"$enable_pgpcore_plugin" = xno; then
1775                 dependencies_missing="pgpcore plugin $dependencies_missing"
1776         fi
1777
1778         if test x"$dependencies_missing" = x; then
1779                 PLUGINS="$PLUGINS pgpmime"
1780                 AC_MSG_RESULT(yes)
1781         elif test x"$enable_pgpmime_plugin" = xauto; then
1782                 AC_MSG_RESULT(no)
1783                 AC_MSG_WARN("Plugin pgpmime will not be built; missing $dependencies_missing")
1784                 enable_pgpmime_plugin=no
1785                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpmime"
1786         else
1787                 AC_MSG_RESULT(no)
1788                 AC_MSG_ERROR("Plugin pgpmime cannot be built; missing $dependencies_missing")
1789         fi
1790 else
1791         DISABLED_PLUGINS="$DISABLED_PLUGINS pgpmime"
1792         AC_MSG_RESULT(no)
1793 fi
1794
1795 AC_MSG_CHECKING([whether to build pgpinline plugin])
1796 if test x"$enable_pgpinline_plugin" != xno; then
1797         dependencies_missing=""
1798
1799         if test x"$HAVE_GPGME" = xno; then
1800                 dependencies_missing="libgpgme $dependencies_missing"
1801         fi
1802         if test x"$enable_pgpcore_plugin" = xno; then
1803                 dependencies_missing="pgpcore plugin $dependencies_missing"
1804         fi
1805
1806         if test x"$dependencies_missing" = x; then
1807                 PLUGINS="$PLUGINS pgpinline"
1808                 AC_MSG_RESULT(yes)
1809         elif test x"$enable_pgpinline_plugin" = xauto; then
1810                 AC_MSG_RESULT(no)
1811                 AC_MSG_WARN("Plugin pgpinline will not be built; missing $dependencies_missing")
1812                 enable_pgpinline_plugin=no
1813                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS pgpinline"
1814         else
1815                 AC_MSG_RESULT(no)
1816                 AC_MSG_ERROR("Plugin pgpinline cannot be built; missing $dependencies_missing")
1817         fi
1818 else
1819         DISABLED_PLUGINS="$DISABLED_PLUGINS pgpinline"
1820         AC_MSG_RESULT(no)
1821 fi
1822
1823 AC_MSG_CHECKING([whether to build rssyl plugin])
1824 if test x"$enable_rssyl_plugin" != xno; then
1825         dependencies_missing=""
1826
1827         if test x"$HAVE_EXPAT" = xno; then
1828                 dependencies_missing="expat $dependencies_missing"
1829         fi
1830         if test x"$HAVE_CURL" = xno; then
1831                 dependencies_missing="libcurl $dependencies_missing"
1832         fi
1833
1834         if test x"$dependencies_missing" = x; then
1835                 PLUGINS="$PLUGINS rssyl"
1836                 AC_MSG_RESULT(yes)
1837         elif test x"$enable_rssyl_plugin" = xauto; then
1838                 AC_MSG_RESULT(no)
1839                 AC_MSG_WARN("Plugin rssyl will not be built; missing $dependencies_missing")
1840                 enable_rssyl_plugin=no
1841                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS rssyl"
1842         else
1843                 AC_MSG_RESULT(no)
1844                 AC_MSG_ERROR("Plugin rssyl cannot be built; missing $dependencies_missing")
1845         fi
1846 else
1847         DISABLED_PLUGINS="$DISABLED_PLUGINS rssyl"
1848         AC_MSG_RESULT(no)
1849 fi
1850
1851 AC_MSG_CHECKING([whether to build spamassassin plugin])
1852 if test x"$enable_spamassassin_plugin" != xno; then
1853         PLUGINS="$PLUGINS spamassassin"
1854         AC_MSG_RESULT(yes)
1855         AC_SPAMASSASSIN
1856
1857         dnl check for zlib (optional)
1858         spamassassin_zlib=0
1859         SPAMASSASSIN_CFLAGS=""
1860         SPAMASSASSIN_LIBS=""
1861         AC_CHECK_HEADER([zlib.h],
1862                         [AC_DEFINE(HAVE_ZLIB_H,1,[optional zlib support for spamassassin plugin])]
1863                         [spamassassin_zlib=1],
1864                         [spamassassin_zlib=0])
1865         if test $spamassassin_zlib -eq 1; then
1866                 AC_CHECK_LIB(z, deflate, [spamassassin_zlib=1], [spamassassin_zlib=0])
1867                 AC_MSG_CHECKING([whether to build spamassassin plugin with zlib support])
1868                 if test $spamassassin_zlib -eq 1; then
1869                         AC_MSG_RESULT(yes)
1870                         SPAMASSASSIN_CFLAGS="-DHAVE_LIBZ"
1871                         SPAMASSASSIN_LIBS="-lz"
1872                 else
1873                         AC_MSG_RESULT(no)
1874                 fi
1875         fi
1876         AC_SUBST(SPAMASSASSIN_CFLAGS)
1877         AC_SUBST(SPAMASSASSIN_LIBS)
1878 else
1879         DISABLED_PLUGINS="$DISABLED_PLUGINS spamassassin"
1880         AC_MSG_RESULT(no)
1881 fi
1882
1883 AC_MSG_CHECKING([whether to build smime plugin])
1884 if test x"$enable_smime_plugin" != xno; then
1885         dependencies_missing=""
1886
1887         if test x"$HAVE_GPGME" = xno; then
1888                 dependencies_missing="libgpgme $dependencies_missing"
1889         fi
1890         if test x"$enable_pgpcore_plugin" = xno; then
1891                 dependencies_missing="pgpcore plugin $dependencies_missing"
1892         fi
1893
1894         if test x"$dependencies_missing" = x; then
1895                 PLUGINS="$PLUGINS smime"
1896                 AC_MSG_RESULT(yes)
1897         elif test x"$enable_smime_plugin" = xauto; then
1898                 AC_MSG_RESULT(no)
1899                 AC_MSG_WARN("Plugin smime will not be built; missing $dependencies_missing")
1900                 enable_smime_plugin=no
1901                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS smime"
1902         else
1903                 AC_MSG_RESULT(no)
1904                 AC_MSG_ERROR("Plugin smime cannot be built; missing $dependencies_missing")
1905         fi
1906 else
1907         DISABLED_PLUGINS="$DISABLED_PLUGINS smime"
1908         AC_MSG_RESULT(no)
1909 fi
1910
1911 AC_MSG_CHECKING([whether to build spam_report plugin])
1912 if test x"$enable_spam_report_plugin" != xno; then
1913         dependencies_missing=""
1914
1915         if test x"$HAVE_CURL" = xno; then
1916                 dependencies_missing="libcurl $dependencies_missing"
1917         fi
1918
1919         if test x"$dependencies_missing" = x; then
1920                 PLUGINS="$PLUGINS spam_report"
1921                 AC_MSG_RESULT(yes)
1922         elif test x"$enable_spam_report_plugin" = xauto; then
1923                 AC_MSG_RESULT(no)
1924                 AC_MSG_WARN("Plugin spam_report will not be built; missing $dependencies_missing")
1925                 enable_spam_report_plugin=no
1926                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS spam_report"
1927         else
1928                 AC_MSG_RESULT(no)
1929                 AC_MSG_ERROR("Plugin spam_report cannot be built; missing $dependencies_missing")
1930         fi
1931 else
1932         DISABLED_PLUGINS="$DISABLED_PLUGINS spam_report"
1933         AC_MSG_RESULT(no)
1934 fi
1935
1936 AC_MSG_CHECKING([whether to build tnef_parse plugin])
1937 if test x"$enable_tnef_parse_plugin" != xno; then
1938         dependencies_missing=""
1939
1940         if test $have_ytnef -eq 0; then
1941                 dependencies_missing="libytnef"
1942         fi
1943
1944         if test x"$dependencies_missing" = x; then
1945                 PLUGINS="$PLUGINS tnef_parse"
1946                 AC_MSG_RESULT(yes)
1947         elif test x"$enable_tnef_parse_plugin" = xauto; then
1948                 AC_MSG_RESULT(no)
1949                 AC_MSG_WARN(Plugin tnef_parse will not be built; missing $dependencies_missing")
1950                 enable_tnef_parse_plugin=no
1951                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS tnef_parse"
1952         else
1953                 AC_MSG_RESULT(no)
1954                 AC_MSG_ERROR(Plugin tnef_parse will not be built; missing $dependencies_missing")
1955         fi
1956 else
1957         DISABLED_PLUGINS="$DISABLED_PLUGINS tnef_parse"
1958         AC_MSG_RESULT(no)
1959 fi
1960
1961
1962 AC_MSG_CHECKING([whether to build vcalendar plugin])
1963 if test x"$enable_vcalendar_plugin" != xno; then
1964         dependencies_missing=""
1965
1966         if test x"$HAVE_CURL" = xno; then
1967                 dependencies_missing="libcurl $dependencies_missing"
1968         fi
1969
1970   if test x"$HAVE_LIBICAL" = xno; then
1971     dependencies_missing="libical $dependencies_missing"
1972   fi
1973
1974         if test x"$HAVE_PERL" = xno; then
1975                 dependencies_missing="perl $dependencies_missing"
1976         fi
1977
1978         if test x"$dependencies_missing" = x; then
1979                 PLUGINS="$PLUGINS vcalendar"
1980                 AC_MSG_RESULT(yes)
1981         elif test x"$enable_vcalendar_plugin" = xauto; then
1982                 AC_MSG_RESULT(no)
1983                 AC_MSG_WARN("Plugin vcalendar will not be built; missing $dependencies_missing")
1984                 enable_vcalendar_plugin=no
1985                 MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS vcalendar"
1986         else
1987                 AC_MSG_RESULT(no)
1988                 AC_MSG_ERROR("Plugin vcalendar cannot be built; missing $dependencies_missing")
1989         fi
1990 else
1991         DISABLED_PLUGINS="$DISABLED_PLUGINS vcalendar"
1992         AC_MSG_RESULT(no)
1993 fi
1994
1995 dnl And finally the automake conditionals.
1996
1997 AM_CONDITIONAL(BUILD_ACPI_NOTIFIER_PLUGIN,      test x"$enable_acpi_notifier_plugin" != xno)
1998 AM_CONDITIONAL(BUILD_ADDRESS_KEEPER_PLUGIN,     test x"$enable_address_keeper_plugin" != xno)
1999 AM_CONDITIONAL(BUILD_ARCHIVE_PLUGIN,            test x"$enable_archive_plugin" != xno)
2000 AM_CONDITIONAL(BUILD_ATT_REMOVER_PLUGIN,        test x"$enable_att_remover_plugin" != xno)
2001 AM_CONDITIONAL(BUILD_ATTACHWARNER_PLUGIN,       test x"$enable_attachwarner_plugin" != xno)
2002 AM_CONDITIONAL(BUILD_BOGOFILTER_PLUGIN,         test x"$enable_bogofilter_plugin" != xno)
2003 AM_CONDITIONAL(BUILD_BSFILTER_PLUGIN,           test x"$enable_bsfilter_plugin" != xno)
2004 AM_CONDITIONAL(BUILD_CLAMD_PLUGIN,              test x"$enable_clamd_plugin" != xno)
2005 AM_CONDITIONAL(BUILD_DEMO_PLUGIN,               test x"$enable_demo_plugin" != xno)
2006 AM_CONDITIONAL(BUILD_DILLO_PLUGIN,              test x"$enable_dillo_plugin" != xno)
2007 AM_CONDITIONAL(BUILD_FANCY_PLUGIN,              test x"$enable_fancy_plugin" != xno)
2008 AM_CONDITIONAL(BUILD_FETCHINFO_PLUGIN,          test x"$enable_fetchinfo_plugin" != xno)
2009 AM_CONDITIONAL(BUILD_GDATA_PLUGIN,              test x"$enable_gdata_plugin" != xno)
2010 AM_CONDITIONAL(BUILD_LIBRAVATAR_PLUGIN,         test x"$enable_libravatar_plugin" != xno)
2011 AM_CONDITIONAL(BUILD_MAILMBOX_PLUGIN,           test x"$enable_mailmbox_plugin" != xno)
2012 AM_CONDITIONAL(BUILD_MANAGESIEVE_PLUGIN,                test x"$enable_managesieve_plugin" != xno)
2013 AM_CONDITIONAL(BUILD_NEWMAIL_PLUGIN,            test x"$enable_newmail_plugin" != xno)
2014 AM_CONDITIONAL(BUILD_NOTIFICATION_PLUGIN,       test x"$enable_notification_plugin" != xno)
2015 AM_CONDITIONAL(BUILD_HOTKEYS,                   test x"$enable_notification_plugin" != xno -a x"$HAVE_HOTKEYS" = xyes)
2016 AM_CONDITIONAL(BUILD_PDF_VIEWER_PLUGIN,         test x"$enable_pdf_viewer_plugin" != xno)
2017 AM_CONDITIONAL(BUILD_PERL_PLUGIN,               test x"$enable_perl_plugin" != xno)
2018 AM_CONDITIONAL(BUILD_PYTHON_PLUGIN,             test x"$enable_python_plugin" != xno)
2019 AM_CONDITIONAL(BUILD_PGPCORE_PLUGIN,            test x"$enable_pgpcore_plugin" != xno)
2020 AM_CONDITIONAL(BUILD_PGPMIME_PLUGIN,            test x"$enable_pgpmime_plugin" != xno)
2021 AM_CONDITIONAL(BUILD_PGPINLINE_PLUGIN,          test x"$enable_pgpinline_plugin" != xno)
2022 AM_CONDITIONAL(BUILD_RSSYL_PLUGIN,              test x"$enable_rssyl_plugin" != xno)
2023 AM_CONDITIONAL(BUILD_SMIME_PLUGIN,              test x"$enable_smime_plugin" != xno)
2024 AM_CONDITIONAL(BUILD_SPAMASSASSIN_PLUGIN,       test x"$enable_spamassassin_plugin" != xno)
2025 AM_CONDITIONAL(BUILD_SPAM_REPORT_PLUGIN,        test x"$enable_spam_report_plugin" != xno)
2026 AM_CONDITIONAL(BUILD_TNEF_PARSE_PLUGIN,         test x"$enable_tnef_parse_plugin" != xno)
2027 AM_CONDITIONAL(BUILD_VCALENDAR_PLUGIN,          test x"$enable_vcalendar_plugin" != xno)
2028
2029
2030 dnl ****************************
2031 dnl ** Final configure output **
2032 dnl ****************************
2033
2034 AC_OUTPUT([
2035 Makefile
2036 m4/Makefile
2037 po/Makefile.in
2038 src/common/version.h
2039 src/Makefile
2040 src/common/Makefile
2041 src/common/passcrypt.h
2042 src/gtk/Makefile
2043 src/etpan/Makefile
2044 src/plugins/Makefile
2045 src/plugins/acpi_notifier/Makefile
2046 src/plugins/address_keeper/Makefile
2047 src/plugins/archive/Makefile
2048 src/plugins/att_remover/Makefile
2049 src/plugins/attachwarner/Makefile
2050 src/plugins/bogofilter/Makefile
2051 src/plugins/bsfilter/Makefile
2052 src/plugins/clamd/Makefile
2053 src/plugins/clamd/libclamd/Makefile
2054 src/plugins/demo/Makefile
2055 src/plugins/dillo/Makefile
2056 src/plugins/fancy/Makefile
2057 src/plugins/fetchinfo/Makefile
2058 src/plugins/gdata/Makefile
2059 src/plugins/libravatar/Makefile
2060 src/plugins/mailmbox/Makefile
2061 src/plugins/managesieve/Makefile
2062 src/plugins/newmail/Makefile
2063 src/plugins/notification/Makefile
2064 src/plugins/notification/gtkhotkey/Makefile
2065 src/plugins/pdf_viewer/Makefile
2066 src/plugins/perl/Makefile
2067 src/plugins/perl/tools/Makefile
2068 src/plugins/python/Makefile
2069 src/plugins/python/examples/Makefile
2070 src/plugins/pgpcore/Makefile
2071 src/plugins/pgpmime/Makefile
2072 src/plugins/pgpinline/Makefile
2073 src/plugins/rssyl/Makefile
2074 src/plugins/rssyl/libfeed/Makefile
2075 src/plugins/smime/Makefile
2076 src/plugins/spamassassin/Makefile
2077 src/plugins/spam_report/Makefile
2078 src/plugins/tnef_parse/Makefile
2079 src/plugins/vcalendar/Makefile
2080 doc/Makefile
2081 doc/man/Makefile
2082 tools/Makefile
2083 config/Makefile
2084 manual/Makefile
2085 manual/dtd/Makefile
2086 manual/dist/Makefile
2087 manual/dist/pdf/Makefile
2088 manual/dist/ps/Makefile
2089 manual/dist/html/Makefile
2090 manual/dist/txt/Makefile
2091 manual/fr/Makefile
2092 manual/fr/dist/Makefile
2093 manual/fr/dist/pdf/Makefile
2094 manual/fr/dist/ps/Makefile
2095 manual/fr/dist/html/Makefile
2096 manual/fr/dist/txt/Makefile
2097 manual/es/Makefile
2098 manual/es/dist/Makefile
2099 manual/es/dist/pdf/Makefile
2100 manual/es/dist/ps/Makefile
2101 manual/es/dist/html/Makefile
2102 manual/es/dist/txt/Makefile
2103 claws-mail.pc
2104 ])
2105
2106 dnl Output the configuration summary
2107 echo ""
2108 echo "$PACKAGE $VERSION"
2109 echo ""
2110 if test x"$enable_alternate_addressbook" = xyes; then
2111         echo "Using Address Book : Alternate experimental interface"
2112 else
2113         echo "Using Address Book : Original stable interface"
2114         echo "JPilot             : $enable_jpilot"
2115         echo "LDAP               : $enable_ldap"
2116 fi
2117 echo "gnuTLS             : $enable_gnutls"
2118 echo "iconv              : $am_cv_func_iconv"
2119 echo "compface           : $enable_compface"
2120 echo "IPv6               : $enable_ipv6"
2121 echo "enchant            : $enable_enchant"
2122 echo "IMAP4              : $enable_libetpan"
2123 echo "NNTP               : $enable_libetpan"
2124 echo "Crash dialog       : $enable_crash_dialog"
2125 echo "LibSM              : $enable_libsm"
2126 echo "DBUS               : $enable_dbus"
2127 echo "NetworkManager     : $enable_networkmanager"
2128 echo "Manual             : $enable_manual"
2129 echo "Generic UMPC code  : $enable_generic_umpc"
2130 echo "SVG support        : $enable_svg"
2131 echo "Config dir         : $ac_cv_with_config_dir"
2132 echo "Password crypto    : $pwd_crypto"
2133
2134 echo "Plugins"
2135 echo "   Built:"
2136 for plugin in $PLUGINS; do
2137 echo "            - $plugin"
2138 if test x"$plugin" = xnotification; then
2139         echo "                Features:"
2140         for notif_feature in $notification_features; do
2141                 echo "                    $notif_feature"
2142         done;
2143         if test "x$notification_missing_dependencies" != x; then
2144                 echo "                Disabled due to missing dependencies:"
2145                 for notif_miss_dep in $notification_missing_dependencies; do
2146                         echo "                    $notif_miss_dep"
2147                 done;
2148         fi
2149 fi
2150 done;
2151 if test "x$DISABLED_PLUGINS" != x; then
2152 echo "   Disabled:"
2153 for plugin in $DISABLED_PLUGINS; do
2154 echo "            - $plugin"
2155 done;
2156 fi
2157
2158 if test "x$MISSING_DEPS_PLUGINS" != x; then
2159 echo "   Disabled due to missing dependencies:"
2160 for plugin in $MISSING_DEPS_PLUGINS; do
2161 echo "            - $plugin"
2162 done;
2163 fi
2164 echo ""
2165 echo "The binary will be installed in $prefix/bin"
2166 echo ""
2167 echo "Configure finished, type 'make' to build."