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