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