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