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