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