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