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