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