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