792f780148e07438d5743e67190cdc44d7d0ee08
[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 MAJOR_VERSION=3
11 MINOR_VERSION=9
12 MICRO_VERSION=0
13 INTERFACE_AGE=0
14 BINARY_AGE=0
15 EXTRA_VERSION=66
16 EXTRA_RELEASE=
17 EXTRA_GTK2_VERSION=
18
19 if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then
20     VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}${EXTRA_RELEASE}${EXTRA_GTK2_VERSION}
21 else
22     VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}cvs${EXTRA_VERSION}${EXTRA_GTK2_VERSION}
23 fi
24
25 dnl set $target
26 AC_CANONICAL_SYSTEM
27
28 dnl
29 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
30 dnl AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
31 dnl AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
32 AC_SUBST(PACKAGE)
33 AC_SUBST(VERSION)
34 AC_SUBST(MAJOR_VERSION)
35 AC_SUBST(MINOR_VERSION)
36 AC_SUBST(MICRO_VERSION)
37 AC_SUBST(EXTRA_VERSION)
38
39 dnl GNOME installed?
40 AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
41 if test "$GNOME_CONFIG" != no; then
42         gnomedatadir="`gnome-config --datadir`"
43         gnomeprefix="`gnome-config --prefix`"
44         if test "${prefix}" = "NONE"; then
45                 gnomedatadir="${ac_default_prefix}/${gnomedatadir#${gnomeprefix}}"
46         else
47                 gnomedatadir="${prefix}/${gnomedatadir#${gnomeprefix}}"
48         fi
49         AC_SUBST(gnomedatadir)
50 fi
51 AM_CONDITIONAL(CLAWS_GNOME, test -n "$gnomedatadir")
52
53 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
54 if test x$PKG_CONFIG = xno ; then
55   AC_MSG_ERROR([*** pkg-config not found. See http://www.freedesktop.org/software/pkgconfig/])
56 fi
57
58 dnl GNOME 2.x installed?
59 PKG_CHECK_MODULES(GNOME2, libgnome-2.0 >= 2.0, ac_enable_gnome2=yes, ac_enable_gnome2=no)
60 AM_CONDITIONAL(CLAWS_GNOME2, test x"$ac_enable_gnome2" = x"yes")
61
62 dnl libtool versioning
63 LT_RELEASE=$MAJOR_VERSION.$MINOR_VERSION
64 LT_CURRENT=`expr $MICRO_VERSION - $INTERFACE_AGE`
65 LT_REVISION=$INTERFACE_AGE
66 LT_AGE=`expr $BINARY_AGE - $INTERFACE_AGE`
67 AC_SUBST(LT_RELEASE)
68 AC_SUBST(LT_CURRENT)
69 AC_SUBST(LT_REVISION)
70 AC_SUBST(LT_AGE)
71
72 dnl Specify a header configuration file
73 AC_CONFIG_HEADERS(config.h)
74 AC_CONFIG_HEADERS(claws-features.h)
75
76 AM_MAINTAINER_MODE
77
78 dnl Checks for programs.
79 dnl AC_ARG_PROGRAM
80 AC_PROG_CC
81 AC_ISC_POSIX
82 AC_PROG_INSTALL
83 AC_PROG_LN_S
84 AC_PROG_MAKE_SET
85 AC_PROG_CPP
86 dnl AC_PROG_RANLIB
87 AM_PROG_LEX
88 AC_PROG_YACC
89 AC_LIB_PREFIX
90 AC_LIBTOOL_WIN32_DLL
91 LT_INIT
92 LT_AC_PROG_RC
93 AC_LIBTOOL_RC
94 AC_PROG_LIBTOOL
95
96 AC_SYS_LARGEFILE
97
98 dnl ******************************
99 dnl Checks for host
100 dnl Not needed anymore because we 
101 dnl do AC_CANONICAL_SYSTEM above
102 dnl ******************************
103 dnl AC_CANONICAL_HOST
104
105 dnl Copied from the official gtk+-2 configure.in
106 AC_MSG_CHECKING([for some Win32 platform])
107 case "$host" in
108   *-*-mingw*|*-*-cygwin*)
109     platform_win32=yes
110     LDFLAGS="$LDFLAGS -mwindows"
111     ;;
112   *)
113     platform_win32=no
114     ;;
115 esac
116 AC_MSG_RESULT([$platform_win32])
117 AM_CONDITIONAL(PLATFORM_WIN32, test x"$platform_win32" = x"yes")
118
119 AC_MSG_CHECKING([for native Win32])
120 case "$host" in
121   *-*-mingw*)
122     os_win32=yes
123     ;;
124   *)
125     os_win32=no
126     ;;
127 esac
128 AC_MSG_RESULT([$os_win32])
129 AM_CONDITIONAL(OS_WIN32, test x"$os_win32" = x"yes")
130
131 AC_MSG_CHECKING([for Cygwin])
132 case "$host" in
133   *-*-cygwin*)
134     env_cygwin=yes
135     ;;
136   *)
137     env_cygwin=no
138     ;;
139 esac
140 AC_MSG_RESULT([$env_cygwin])
141 AM_CONDITIONAL(CYGWIN, test x"$env_cygwin" = x"yes")
142
143 if test "$GCC" = "yes"
144 then
145         CFLAGS="$CFLAGS -Wno-unused-function"
146         #CFLAGS="-g -Wall -Wno-unused-function"
147 fi
148
149 AC_MSG_CHECKING([if gcc supports -Wno-pointer-sign])
150 _gcc_cflags_save=$CFLAGS
151 CFLAGS="-Wno-pointer-sign"
152 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],_gcc_psign=yes,_gcc_psign=no)
153 AC_MSG_RESULT($_gcc_psign)
154 CFLAGS=$_gcc_cflags_save;
155 if test x"$_gcc_psign" = xyes ; then
156         CFLAGS="$CFLAGS -Wno-pointer-sign"
157 fi
158
159 CFLAGS="$CFLAGS -Wall"
160
161 if test $USE_MAINTAINER_MODE = yes; then
162         CFLAGS="-g -Wall -Wno-pointer-sign"
163 fi
164
165 pthread_name=
166 case "$target" in
167 *-darwin*)
168         CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
169         ;;
170 *-*-mingw*)
171         # Note that we need to link to pthreadGC2 in all cases. This
172         # is because some locking is used even when pthread support is
173         # disabled.
174         pthread_name=pthreadGC2
175         CFLAGS="$CFLAGS -mms-bitfields"
176         LIBS="$LIBS -l${pthread_name} -lws2_32 -lregex"
177         ;;
178 *-*-solaris*)
179         CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
180         CFLAGS="$CFLAGS -std=gnu99 -DSOLARIS"
181         ;;
182 esac
183   
184 dnl Checks for iconv
185 AM_ICONV
186
187 dnl floor and ceil are  in -lm
188 LIBS="$LIBS -lm"
189
190 dnl
191 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
192 dnl
193 syl_save_LIBS=$LIBS
194 LIBS="$LIBS $GTK_LIBS"
195 AC_CHECK_FUNCS(bind_textdomain_codeset)
196 LIBS=$syl_save_LIBS
197
198 dnl for gettext
199 ALL_LINGUAS="bg ca cs de en_GB es fi fr hu id_ID it ja lt nl pl pt_BR pt_PT ru sk sv uk zh_CN zh_TW"
200 GETTEXT_PACKAGE=claws-mail
201 AC_SUBST(GETTEXT_PACKAGE)
202 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define text domain.])
203
204 AM_GNU_GETTEXT_VERSION([0.15])
205 AM_GNU_GETTEXT([external])
206
207 manualdir='${docdir}/manual'
208 AC_ARG_WITH(manualdir,
209         [  --with-manualdir=DIR    Manual directory],
210         [manualdir="$withval"])
211 AC_SUBST(manualdir)
212
213 AC_ARG_ENABLE(manual,
214         [  --disable-manual           do not build manual],
215         [ac_cv_enable_manual=$enableval], [ac_cv_enable_manual=yes])
216
217 dnl ******************************
218 dnl ** Check for required tools **
219 dnl ** to build manuals         **
220 dnl ******************************
221
222 AC_PATH_PROG(DOCBOOK2HTML, docbook2html)
223 AC_PATH_PROG(DOCBOOK2TXT, docbook2txt)
224 AC_PATH_PROG(DOCBOOK2PS, docbook2ps)
225 AC_PATH_PROG(DOCBOOK2PDF, docbook2pdf)
226
227 AM_CONDITIONAL(MANUAL_HTML, test -n "$DOCBOOK2HTML")
228 AM_CONDITIONAL(MANUAL_TXT, test -n "$DOCBOOK2TXT")
229 AM_CONDITIONAL(MANUAL_PDF, test -n "$DOCBOOK2PDF")
230 AM_CONDITIONAL(MANUAL_PS, test -n "$DOCBOOK2PS")
231
232 if test x"$ac_cv_enable_manual" = x"yes"; then
233     if test -n "$DOCBOOK2TXT" -o -n "$DOCBOOK2HTML" \
234         -o -n "$DOCBOOK2PS" -o -n "$DOCBOOK2PDF"; then
235             ac_cv_enable_manual=yes
236         else
237             ac_cv_enable_manual=no
238     fi
239 fi
240
241 AM_CONDITIONAL(BUILD_MANUAL, test x"$ac_cv_enable_manual" = xyes)
242
243 dnl Set PACKAGE_DATA_DIR in config.h.
244 if test "x${datarootdir}" = 'x${prefix}/share'; then
245         if test "x${prefix}" = "xNONE"; then
246                 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${ac_default_prefix}/share/${PACKAGE}",[PACKAGE_DATA_DIR])
247         else
248                 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/share/${PACKAGE}",[PACKAGE_DATA_DIR])
249         fi
250 else
251         AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datarootdir}/${PACKAGE}",[PACKAGE_DATA_DIR])
252 fi
253
254 AC_CHECK_LIB(xpg4, setlocale)
255
256 SM_LIBS=""
257 dnl Check for LibSM
258 AC_ARG_ENABLE(libsm,
259         [  --disable-libsm    disable libSM support for session management.],
260         [ac_cv_enable_libsm=$enableval], [ac_cv_enable_libsm=yes])
261 AC_MSG_CHECKING([whether to use LibSM])
262 if test x"$ac_cv_enable_libsm" = xyes; then
263         AC_MSG_RESULT(yes)
264         AC_CHECK_LIB(SM, SmcSaveYourselfDone,
265                 [SM_LIBS="$X_LIBS -lSM -lICE"],ac_cv_enable_libsm=no,
266                 $X_LIBS -lICE)
267         AC_CHECK_HEADERS(X11/SM/SMlib.h,,ac_cv_enable_libsm=no)
268         if test x"$ac_cv_enable_libsm" = xyes; then
269                 AC_DEFINE(HAVE_LIBSM, 1, [Define to 1 if you have libSM installed])
270         else
271                 AC_MSG_RESULT(not found)
272                 AC_MSG_WARN([*** LibSM will not be supported ***])
273         fi
274 else
275         AC_MSG_RESULT(no)
276 fi
277 AC_SUBST(SM_LIBS)
278
279 dnl Check for d_type member in struct dirent
280 AC_MSG_CHECKING([whether struct dirent has d_type member])
281 AC_CACHE_VAL(ac_cv_dirent_d_type,[
282         AC_TRY_COMPILE([#include <dirent.h>],
283                        [struct dirent d; d.d_type = DT_REG;],
284                        ac_cv_dirent_d_type=yes, ac_cv_dirent_d_type=no)
285 ])
286 AC_MSG_RESULT($ac_cv_dirent_d_type)
287 if test $ac_cv_dirent_d_type = yes; then
288         AC_DEFINE(HAVE_DIRENT_D_TYPE, 1,
289                   Define if `struct dirent' has `d_type' member.)
290 fi
291
292 # Check whether mkdir does not take the permission argument.
293 GNUPG_FUNC_MKDIR_TAKES_ONE_ARG
294
295 dnl Checks for header files.
296 AC_HEADER_DIRENT
297 AC_HEADER_STDC
298 AC_HEADER_SYS_WAIT
299 AC_CHECK_HEADERS(fcntl.h sys/file.h unistd.h paths.h \
300                  sys/param.h sys/utsname.h sys/select.h \
301                  wchar.h wctype.h locale.h netdb.h)
302 AC_CHECK_HEADER([execinfo.h], [AC_DEFINE(HAVE_BACKTRACE,1,[Has backtrace*() needed for retrieving stack traces])])
303 AC_SEARCH_LIBS(backtrace_symbols, [execinfo])
304
305 dnl alf - Check for apache installation f*ck up. apache may also install an 
306 dnl fnmatch, which includes their own regex stuff if USE_HSREGEX is defined
307 AC_TRY_COMPILE([#include <stdlib.h>
308                 #include <fnmatch.h>],
309         [int x = USE_HSREGEX;],
310         ac_cv_have_apache_fnmatch=yes, ac_cv_have_apache_fnmatch=no)
311 if test $ac_cv_have_apache_fnmatch = yes; then
312         AC_DEFINE(HAVE_APACHE_FNMATCH, 1, Define if you need to work around apache regex/fnmatch !KLUDGE!)
313 fi
314 AC_MSG_CHECKING([whether to use Apache regex header kludge])
315 AC_MSG_RESULT($ac_cv_have_apache_fnmatch)
316
317 dnl Checks for typedefs, structures, and compiler characteristics.
318 AC_C_CONST
319 AC_TYPE_OFF_T
320 AC_TYPE_PID_T
321 AC_TYPE_SIZE_T
322 AC_STRUCT_TM
323
324 dnl AC_CHECK_TYPE(wint_t, unsigned int) does not work because wint_t
325 dnl may be defined only in wchar.h (this happens with gcc-2.96).
326 dnl So we need to use this extended macro.
327 CLAWS_CHECK_TYPE(wint_t, unsigned int,
328 [
329 #if HAVE_WCHAR_H
330 #include <wchar.h>
331 #endif
332 ], Define to `unsigned int' if <stddef.h> or <wchar.h> doesn't define.)
333
334 GNUPG_CHECK_TYPEDEF(u32, HAVE_U32_TYPEDEF, Used to test for a u32 typedef)
335 AC_CHECK_SIZEOF(unsigned short, 2)
336 AC_CHECK_SIZEOF(unsigned int, 4)
337 AC_CHECK_SIZEOF(unsigned long, 4)
338
339 dnl Checks for library functions.
340 AC_FUNC_ALLOCA
341 AC_CHECK_FUNCS(gethostname mkdir mktime socket strstr strchr \
342                uname flock lockf inet_aton inet_addr \
343                fchmod mkstemp truncate getuid regcomp)
344
345 AC_CHECK_FUNCS(fgets_unlocked fwrite_unlocked)
346
347 dnl *****************
348 dnl ** common code **
349 dnl *****************
350
351 dnl check for glib
352 PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.6 gmodule-2.0 >= 2.6 gobject-2.0 >= 2.6 gthread-2.0 >= 2.6)
353       
354 GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0`
355 AC_SUBST(GLIB_GENMARSHAL)
356
357 AC_SUBST(GLIB_CFLAGS)
358 AC_SUBST(GLIB_LIBS)
359
360 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
361 syl_save_LIBS=$LIBS
362 LIBS="$LIBS $GTK_LIBS"
363 AC_CHECK_FUNCS(bind_textdomain_codeset)
364 LIBS=$syl_save_LIBS
365
366 dnl check for IPv6 option
367 AC_ARG_ENABLE(ipv6,
368         [  --disable-ipv6           disable build IPv6 support],
369         [ac_cv_enable_ipv6=$enableval], [ac_cv_enable_ipv6=yes])
370
371 dnl automated checks for IPv6 support.
372 AC_MSG_CHECKING([whether to use IPv6])
373 if test x"$ac_cv_enable_ipv6" = xyes; then
374         AC_MSG_RESULT(yes)
375         AC_MSG_CHECKING([for IPv6 support])
376         AC_CACHE_VAL(ac_cv_ipv6,[
377                 AC_TRY_COMPILE([#define INET6
378                                 #include <sys/types.h>
379                                 #include <netinet/in.h>],
380                         [int x = IPPROTO_IPV6; struct in6_addr a;],
381                         ac_cv_ipv6=yes, ac_cv_ipv6=no)
382         ])
383         AC_MSG_RESULT($ac_cv_ipv6)
384         if test $ac_cv_ipv6 = yes; then
385                 AC_DEFINE(INET6, 1, Define if you want IPv6 support.)
386         else
387                 AC_MSG_WARN(*** IPv6 will not be supported ***)
388                 ac_cv_enable_ipv6=no
389         fi
390 else
391         AC_MSG_RESULT(no)
392 fi
393
394 dnl GNUTLS
395 AC_MSG_CHECKING([whether to use GnuTLS])
396 AC_ARG_ENABLE(gnutls,    [  --enable-gnutls      enable GnuTLS support],
397             [ac_cv_enable_gnutls=$enableval], [ac_cv_enable_gnutls=yes])
398
399 AC_MSG_RESULT($ac_cv_enable_gnutls)
400 if test "x$ac_cv_enable_gnutls" != "xno"; then
401         PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.2,
402         [
403                 AC_DEFINE(USE_GNUTLS, 1, gnutls)
404                 echo "Building with GnuTLS"
405         ],
406         [
407                 echo "Building without gnutls"
408         ])
409         PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.11,
410         [
411                 dnl No linking against libgcrypt needed
412         ],
413         [
414                 dnl linking against libgcrypt *is* needed
415                 GNUTLS_LIBS="$GNUTLS_LIBS -lgcrypt"
416         ])
417         AC_SUBST(GNUTLS_LIBS)
418         AC_SUBST(GNUTLS_CFLAGS)
419 fi
420
421 dnl password encryption
422 OLDLIBS=$LIBS
423 LIBS=
424 case $host_os in
425         *dragonfly*)
426                 AC_SEARCH_LIBS(encrypt, cipher, [], AC_MSG_ERROR(['encrypt'-function not found.]))
427         ;;
428         *)
429                 AC_SEARCH_LIBS(encrypt, crypt, [], AC_MSG_ERROR(['encrypt'-function not found.]))
430         ;;
431 esac
432 CRYPT_LIBS=$LIBS
433 AC_SUBST(CRYPT_LIBS)
434 LIBS=$OLDLIBS
435
436 AC_ARG_WITH(passcrypt-key, [  --with-passcrypt-key=KEY     Key used to encode passwords (8 byte string)],
437             with_passcrypt_key="$withval", with_passcrypt_key="passkey0")
438 AC_SUBST(PASSCRYPT_KEY, $with_passcrypt_key)
439
440 dnl RC dir (will be default at a certain point in time)
441 AC_ARG_WITH(config-dir,    [  --with-config-dir=RCDIR      Local configuration dir (default: .claws-mail)],
442               ac_cv_with_config_dir="$withval", ac_cv_with_config_dir=".claws-mail")
443 if test x"$ac_cv_with_config_dir" = x""; then
444         ac_cv_with_config_dir=".claws-mail"
445 fi 
446 AC_DEFINE_UNQUOTED(CFG_RC_DIR, "$ac_cv_with_config_dir", Configuration directory)
447
448 dnl ************************
449 dnl ** GTK user interface **
450 dnl ************************
451
452 dnl Checks for GTK
453 AC_ARG_ENABLE(gtk3,
454         AS_HELP_STRING([--enable-gtk3],
455                 [Determines whether to use Gtk+ 3.0.]),
456                 [ac_cv_enable_gtk3=$enableval],[ac_cv_enable_gtk3=no])
457 AM_CONDITIONAL(GTK3, false)
458 AM_CONDITIONAL(GTK2, true)
459 if test x"$ac_cv_enable_gtk3" = x"yes"; then
460         PKG_CHECK_MODULES(GTK, gtk+-3.0 >= 3.0 cairo)
461         AM_CONDITIONAL(GTK3, true)
462         AM_CONDITIONAL(GTK2, false)
463 else
464         PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.16)
465
466         dnl --disable-deprecated switch for GTK2 purification
467         AC_ARG_ENABLE(deprecated, [  --disable-deprecated  disable deprecated GTK functions. ],
468                           [GTK_CFLAGS="$GTK_CFLAGS -DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"], [])
469 fi
470 AC_SUBST(GTK_CFLAGS)
471 AC_SUBST(GTK_LIBS)
472
473 dnl enchant is used for spell checking
474 AC_MSG_CHECKING([whether to use enchant])
475 AC_ARG_ENABLE(enchant,
476         [  --disable-enchant         disable enchant support],
477         [ac_cv_enable_enchant=$enableval], [ac_cv_enable_enchant=yes])
478 AC_MSG_RESULT($ac_cv_enable_enchant)
479 if test $ac_cv_enable_enchant = yes; then
480         PKG_CHECK_MODULES(ENCHANT, enchant >= 1.0.0,
481         [
482                 AC_DEFINE(USE_ENCHANT, 1, enchant)
483                 echo "Building with enchant"
484                 ac_cv_enable_enchant=yes
485                 CFLAGS="$CFLAGS `$PKG_CONFIG --cflags enchant`"
486         ],
487         [
488                 echo "Building without enchant-notification"
489                 ac_cv_enable_enchant=no
490         ])
491         AC_SUBST(ENCHANT_CFLAGS)
492         AC_SUBST(ENCHANT_LIBS)
493 fi
494
495 dnl want crash dialog
496 AC_ARG_ENABLE(crash-dialog,
497         [  --enable-crash-dialog   Enable crash dialog [default=no]],
498         [ac_cv_enable_crash_dialog=$enableval], [ac_cv_enable_crash_dialog=no])
499 if test $ac_cv_enable_crash_dialog = yes; then
500 dnl check if GDB is somewhere
501         AC_CHECK_PROG(ac_cv_enable_crash_dialog, gdb, yes, no)
502         AC_MSG_CHECKING([whether to use crash dialog])
503         if test $ac_cv_enable_crash_dialog = yes; then
504                 AC_DEFINE(CRASH_DIALOG, 1, Pop up crash dialog)
505         fi
506         AC_MSG_RESULT($ac_cv_enable_crash_dialog)
507 fi
508
509 dnl generic umpc
510 AC_ARG_ENABLE(generic-umpc,
511         [  --enable-generic-umpc   Enable generic UMPC code [default=no]],
512         [ac_cv_enable_generic_umpc=$enableval], [ac_cv_enable_generic_umpc=no])
513 if test $ac_cv_enable_generic_umpc = yes; then
514         AC_DEFINE(GENERIC_UMPC, 1, Generic UMPC code)
515         AC_MSG_RESULT($ac_cv_enable_generic_umpc)
516 fi
517
518 dnl Maemo platform
519 AC_ARG_ENABLE(maemo,
520         [  --enable-maemo   build for the Maemo platform [default=no]],
521         [ac_cv_enable_maemo=$enableval], [ac_cv_enable_maemo=no])
522 if test $ac_cv_enable_maemo = yes; then
523         PKG_CHECK_MODULES(MAEMO, libosso hildon-libs hildon-fm gnome-vfs-2.0, ac_cv_enable_maemo=yes,
524                   ac_cv_enable_maemo=no)
525         AC_SUBST(MAEMO_CFLAGS)
526         AC_SUBST(MAEMO_LIBS)
527         if test $ac_cv_enable_maemo = no; then
528                 #test for chinook
529                 PKG_CHECK_MODULES(MAEMO, libosso hildon-1 hildon-fm-2 gnome-vfs-2.0 hal, ac_cv_enable_maemo=yes,
530                           ac_cv_enable_maemo=no)
531                 AC_SUBST(MAEMO_CFLAGS)
532                 AC_SUBST(MAEMO_LIBS)
533                 if test $ac_cv_enable_maemo = no; then
534                         AC_MSG_ERROR(one of libosso hildon-libs hildon-fm hildon-1 hildon-fm-2 not found)
535                 else
536                         AC_DEFINE(MAEMO, 1, Build for maemo)
537                         AC_DEFINE(CHINOOK, 1, Maemo chinook)
538                         AC_DEFINE(GENERIC_UMPC, 1, Generic UMPC code)
539                         ac_cv_enable_generic_umpc=yes
540                 fi
541         else
542                 AC_DEFINE(MAEMO, 1, Build for maemo)
543                 AC_DEFINE(GENERIC_UMPC, 1, Generic UMPC code)
544                 ac_cv_enable_generic_umpc=yes
545         fi
546 fi
547
548 PKG_CHECK_MODULES(CONIC, conic, ac_cv_enable_conic=yes,
549           ac_cv_enable_conic=no)
550 AC_SUBST(CONIC_CFLAGS)
551 AC_SUBST(CONIC_LIBS)
552 if test $ac_cv_enable_conic = yes; then
553         AC_DEFINE(CONIC, 1, Have conic lib)
554 fi
555
556 dnl Check for X-Face support
557 AC_ARG_ENABLE(compface,
558         [  --disable-compface      disable compface (X-Face) support],
559         [ac_cv_enable_compface=$enableval], [ac_cv_enable_compface=yes])
560 AC_MSG_CHECKING([whether to use compface])
561 if test x"$ac_cv_enable_compface" = xyes; then
562         AC_MSG_RESULT(yes)
563         AC_CHECK_LIB(compface, uncompface, 
564                 [AC_DEFINE(HAVE_LIBCOMPFACE, 1, Define if you want compface support.)],
565                 [ac_cv_enable_compface=no])
566         if test x"$ac_cv_enable_compface" = xyes; then
567                 COMPFACE_LIBS="-lcompface"
568         else
569                 COMPFACE_LIBS=""
570         fi
571         AC_SUBST(COMPFACE_LIBS)
572 else
573         AC_MSG_RESULT(no)
574 fi
575
576 dnl check for pthread support
577 AC_ARG_ENABLE(pthread,
578         [  --disable-pthread           disable pthread support],
579         [ac_cv_enable_pthread=$enableval], [ac_cv_enable_pthread=yes])
580 AC_MSG_CHECKING([whether to use pthread])
581 if test x$ac_cv_enable_pthread = xno; then
582         AC_MSG_RESULT(no)
583 else
584         AC_MSG_RESULT(yes)
585
586         # For W32 we need to use a special ptrhead lib. In this case we can't
587         # use AC_CHECK_LIB because it has no means of checking for a
588         # library installed under a different name.  Checking for the
589         # header is okay.
590         if test -n "${pthread_name}" ; then
591            ac_cv_enable_pthread=yes
592         else
593         AC_CHECK_LIB(pthread, pthread_create, :, ac_cv_enable_pthread=no)
594         fi
595         AC_CHECK_HEADERS(pthread.h, :, ac_cv_enable_pthread=no)
596
597         if test x$ac_cv_enable_pthread = xyes; then
598                 AC_DEFINE(USE_PTHREAD, 1, Define if you have pthread)
599                 if test -z "${pthread_name}" ; then
600                 PTHREAD_LIBS="-lpthread"
601         fi
602         fi
603
604 fi
605 AC_SUBST(PTHREAD_LIBS)
606
607 dnl
608 dnl Check whether we need to pass -lresolv
609 dnl We know that we don't need it for W32.
610 dnl
611 if test x$os_win32 = xno; then
612   t_oldLibs="$LIBS"
613   LIBS="$LIBS"
614   ac_cv_var__res_options=no
615   AC_TRY_LINK([#include <sys/types.h>
616              #include <sys/socket.h>
617              #include <netinet/in.h>
618              #include <arpa/nameser.h>
619              #include <resolv.h>],
620                 [_res.options = RES_INIT;],
621                 ac_cv_var__res_options=yes);
622   if test "$ac_cv_var__res_options" != "yes"; then
623         LIBRESOLV="-lresolv"
624   fi
625   LIBS="$t_oldLibs"
626
627   if test "x$LIBRESOLV" = "x"; then
628         AC_CHECK_LIB(resolv, res_query, [LIBRESOLV=-lresolv])
629         LIBS="$t_oldLibs"
630   fi
631 fi
632 AC_SUBST(LIBRESOLV)
633
634 LIBS="$LIBS $LIBRESOLV"
635
636 dnl #######################################################################
637 dnl # Check for startup notification
638 dnl #######################################################################
639 AC_ARG_ENABLE(startup-notification, [  --disable-startup-notification    disable startup notification support],,enable_startup_notification=yes)
640
641 if test "x$enable_startup_notification" = "xyes"; then
642         PKG_CHECK_MODULES(STARTUP_NOTIFICATION, libstartup-notification-1.0 >= 0.5,
643         [
644                 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, [Define if we're using libstartup-notification.])
645                 echo "Building with libstartup-notification"
646                 enable_startup_notification=yes
647         ],
648         [
649                 echo "Building without libstartup-notification"
650                 enable_startup_notification=no
651         ])
652
653         AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
654         AC_SUBST(STARTUP_NOTIFICATION_LIBS)
655 fi
656
657 dnl #######################################################################
658 dnl # Check for D-Bus support
659 dnl #######################################################################
660 AC_ARG_ENABLE(dbus, [  --disable-dbus    disable dbus support],,enable_dbus=yes)
661
662 if test "x$enable_dbus" = "xyes"; then
663         PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.60, dbus-glib-1 >= 0.60],
664         [
665                 AC_DEFINE(HAVE_DBUS_GLIB, 1, [Define if glib bindings of D-Bus are available])
666                 enable_dbus_glib=yes
667         ],
668         [
669                 echo "D-Bus requirements not met. D-Bus support not activated."
670                 enable_dbus_glib=no
671         ])
672         AC_SUBST(DBUS_CFLAGS)
673         AC_SUBST(DBUS_LIBS)
674 fi
675
676 dnl #######################################################################
677 dnl # Configure address book support
678 dnl #######################################################################
679
680 dnl #######################################################################
681 dnl # Check for new address book support
682 dnl #######################################################################
683 AC_MSG_CHECKING([whether DBUS support for new address book is present])
684 if test x"$enable_dbus_glib" = xyes; then
685         AC_MSG_RESULT([yes])
686         AC_MSG_CHECKING([whether to enable new address book])
687         AC_ARG_ENABLE(new-addrbook, [  --enable-new-addrbook     enable new address book],,enable_new_addrbook=no)
688         if test x"$enable_new_addrbook" = xyes; then
689                 AC_MSG_RESULT([yes])
690                 PKG_CHECK_MODULES(CONTACTS, [claws-contacts],
691                 [
692                         AC_DEFINE(USE_NEW_ADDRBOOK, 1, [Define if new address book is to be activated.])
693                         enable_new_addrbook=yes
694                         AC_SUBST(CONTACTS_CFLAGS)
695                         AC_SUBST(CONTACTS_LIBS)
696                 ],
697                 [
698                         enable_new_addrbook=no
699                 ])
700         else
701                 AC_MSG_RESULT([no])
702                 enable_new_addrbook=no
703         fi
704 else
705         AC_MSG_RESULT([no])
706         enable_new_addrbook=no
707 fi
708
709 dnl #######################################################################
710 dnl # Check for old address book support
711 dnl #######################################################################
712 if test x"$enable_new_addrbook" = xno; then
713         dnl for LDAP support in addressbook
714         dnl no check for libraries; dynamically loaded
715         AC_ARG_ENABLE(ldap,
716                 [  --disable-ldap         disable LDAP support],
717                 [ac_cv_enable_ldap=$enableval], [ac_cv_enable_ldap=yes])
718         AC_MSG_CHECKING([whether to use LDAP])
719         if test x"$ac_cv_enable_ldap" = xno; then
720                 AC_MSG_RESULT(no)
721         elif test x"$ac_cv_enable_ldap" = xyes -a x"$ac_cv_enable_pthread" = xno; then
722                 AC_MSG_RESULT(no - LDAP support needs pthread support)
723
724                 ac_cv_enable_ldap=no
725         elif test x"$platform_win32" = xyes; then
726                 AC_MSG_RESULT(yes)
727                 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
728                 LDAP_LIBS="-lwldap32"
729                 AC_SUBST(LDAP_LIBS)
730         else
731                 AC_MSG_RESULT(yes)
732
733                 dnl check for available libraries, and pull them in
734                 AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="$LDAP_LIBS -lresolv")
735                 AC_CHECK_LIB(socket, bind, LDAP_LIBS="$LDAP_LIBS -lsocket")
736                 AC_CHECK_LIB(nsl, gethostbyaddr, LDAP_LIBS="$LDAP_LIBS -lnsl")
737                 AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="$LDAP_LIBS -llber",,
738                                  $LDAP_LIBS)
739
740                 AC_CHECK_HEADERS(ldap.h lber.h,
741                                  [ ac_cv_enable_ldap=yes ],
742                                  [ ac_cv_enable_ldap=no ])
743
744                 if test "$ac_cv_enable_ldap" = yes; then
745                         AC_CHECK_LIB(ldap, ldap_open,
746                                          [ ac_cv_enable_ldap=yes ],
747                                          [ ac_cv_enable_ldap=no ],
748                                          $LDAP_LIBS)
749
750                         AC_CHECK_LIB(ldap, ldap_start_tls_s,
751                                              [ ac_cv_have_tls=yes ],
752                                              [ ac_cv_have_tls=no ])
753
754                 fi
755
756                 AC_MSG_CHECKING([whether ldap library is available])
757                 AC_MSG_RESULT($ac_cv_enable_ldap)
758
759                 AC_MSG_CHECKING([whether TLS library is available])
760                 AC_MSG_RESULT($ac_cv_have_tls)
761
762                 if test "$ac_cv_enable_ldap" = yes; then
763                         AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
764                         LDAP_LIBS="$LDAP_LIBS -lldap"
765                         AC_SUBST(LDAP_LIBS)
766                         if test "$ac_cv_have_tls" = yes; then
767                                 AC_DEFINE(USE_LDAP_TLS, 1, Define if you want LDAP TLS support in addressbook.)
768                         fi
769                         dnl As of OpenLDAP API version 3000 a number of functions has
770                         dnl been deprecated. As Claws-mail compiles and runs on many
771                         dnl platforms and many versions of OpenLDAP we need to be able
772                         dnl to switch between the old and new API because new API has
773                         dnl added new functions replacing old ones and at the same time
774                         dnl old functions has been changed.
775                         dnl If cross-compiling defaults to enable deprecated features
776                         dnl for maximum portability
777                         AC_MSG_CHECKING([The API version of OpenLDAP])
778                         AC_RUN_IFELSE(
779                                 [AC_LANG_PROGRAM(
780                                  [#include <ldap.h>],
781                                  [if (LDAP_API_VERSION >= 3000)
782                                                 return 1
783                                 ])],
784                                 [AC_MSG_RESULT([version < 3000])
785                                  AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)],
786                                 [AC_MSG_RESULT([version >= 3000])
787                                  AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 1, Define if OpenLDAP API is at least version 3000.)],
788                                 [AC_MSG_RESULT([Enabling deprecated features in OpenLDAP])
789                                  AC_DEFINE(OPEN_LDAP_API_AT_LEAST_3000, 0, Define if OpenLDAP API is at least version 3000.)
790                                  AC_DEFINE(LDAP_DEPRECATED, 1, Define to activate deprecated features in OpenLDAP)]
791                         )
792                 fi
793         fi
794
795         dnl for JPilot support in addressbook
796         dnl no check for libraries; these are dynamically loaded
797         AC_ARG_ENABLE(jpilot,
798                 [  --disable-jpilot         disable JPilot support],
799                 [ac_cv_enable_jpilot=$enableval], [ac_cv_enable_jpilot=yes])
800         AC_MSG_CHECKING([whether to use JPilot])
801         if test "$ac_cv_enable_jpilot" = yes; then
802                 AC_MSG_RESULT(yes)
803                 AC_CHECK_HEADERS(pi-args.h pi-appinfo.h pi-address.h pi-version.h,
804                                  [ AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ],
805                                  [ ac_cv_enable_jpilot=no ])
806                 if test "$ac_cv_enable_jpilot" = no; then
807                         AC_CHECK_HEADERS(libpisock/pi-args.h libpisock/pi-appinfo.h libpisock/pi-address.h libpisock/pi-version.h,
808                                          [ ac_cv_enable_jpilot=yes
809                                            AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ])
810                 fi
811
812                 AC_CHECK_LIB(pisock, unpack_Address, [JPILOT_LIBS="-lpisock"], [JPILOT_LIBS="" ac_cv_enable_jpilot="no"])
813                 if test x"$ac_cv_enable_jpilot" = xyes; then
814                         AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.)
815                 else
816                         AC_MSG_NOTICE([JPilot support not available])
817                 fi
818                 AC_SUBST(JPILOT_LIBS)
819         else
820                 AC_MSG_RESULT(no)
821         fi
822 fi
823
824 AM_CONDITIONAL(BUILD_NEWADDRBOOK, test x"$enable_new_addrbook" = x"yes")
825
826 dnl #######################################################################
827 dnl # Check for NetworkManager support
828 dnl #######################################################################
829 if test x"$enable_dbus_glib" = xyes; then
830         AC_ARG_ENABLE(networkmanager-support, [  --disable-networkmanager-support  disable NetworkManager support],,enable_networkmanager_support=yes)
831         if test x"$enable_networkmanager_support" = xyes; then
832                 PKG_CHECK_MODULES(NETWORKMANAGER_SUPPORT, NetworkManager >= 0.6.2,
833                 [
834                         AC_DEFINE(HAVE_NETWORKMANAGER_SUPPORT, 1, [Define if NetworkManager support is to be included.])
835                         echo "Building with NetworkManager support"
836                         enable_networkmanager_support=yes
837                 ],
838                 [
839                         echo "NetworkManager not found."
840                         enable_networkmanager_support=no
841                 ])
842                 AC_SUBST(NETWORKMANAGER_SUPPORT_CFLAGS)
843         fi
844 else
845         echo "NetworkManager support deactivated as D-Bus requirements were not met."
846         enable_networkmanager_support=no
847 fi
848
849 dnl *************************
850 dnl ** section for plugins **
851 dnl *************************
852
853 PLUGINS=""
854
855 dnl --- Trayicon ---
856 AC_MSG_CHECKING([whether to build Trayicon plugin])
857 AC_ARG_ENABLE(trayicon-plugin,
858         [  --disable-trayicon-plugin         do not build System Tray Icon plugin],
859         [ac_cv_enable_trayicon_plugin=$enableval], [ac_cv_enable_trayicon_plugin=yes])
860 if test x"$ac_cv_enable_trayicon_plugin" = xyes; then
861         AC_MSG_RESULT(yes)
862         PLUGINS="trayicon $PLUGINS"
863 else
864         AC_MSG_RESULT(no)
865 fi
866 AM_CONDITIONAL(BUILD_TRAYICON_PLUGIN, test x"$ac_cv_enable_trayicon_plugin" = xyes)
867
868 dnl --- SpamAssassin ---
869 AC_MSG_CHECKING([whether to build SpamAssassin plugin])
870 AC_ARG_ENABLE(spamassassin-plugin,
871         [  --disable-spamassassin-plugin      do not build SpamAssassin plugin],
872         [ac_cv_enable_spamassassin_plugin=$enableval], [ac_cv_enable_spamassassin_plugin=yes])
873 if test x"$ac_cv_enable_spamassassin_plugin" = xyes; then
874         AC_MSG_RESULT(yes)
875         AC_SPAMASSASSIN
876         PLUGINS="spamassassin $PLUGINS"
877         AC_DEFINE(USE_SPAMASSASSIN_PLUGIN, 1, Define if spamassassin plugin is being built.)
878 else
879         AC_MSG_RESULT(no)
880 fi
881 AM_CONDITIONAL(BUILD_SPAMASSASSIN_PLUGIN, test x"$ac_cv_enable_spamassassin_plugin" = xyes)
882
883 dnl --- Bogofilter ---
884 AC_MSG_CHECKING([whether to build Bogofilter plugin])
885 AC_ARG_ENABLE(bogofilter-plugin,
886         [  --disable-bogofilter-plugin      do not build bogofilter plugin],
887         [ac_cv_enable_bogofilter_plugin=$enableval], [ac_cv_enable_bogofilter_plugin=yes])
888 if test x"$ac_cv_enable_bogofilter_plugin" = xyes; then
889         AC_MSG_RESULT(yes)
890         PLUGINS="bogofilter $PLUGINS"
891         AC_DEFINE(USE_BOGOFILTER_PLUGIN, 1, Define if bogofilter plugin is being built.)
892 else
893         AC_MSG_RESULT(no)
894 fi
895 AM_CONDITIONAL(BUILD_BOGOFILTER_PLUGIN, test x"$ac_cv_enable_bogofilter_plugin" = xyes)
896
897 dnl --- PGP/CORE ---
898 AC_MSG_CHECKING([whether to build PGP/CORE plugin])
899 AC_ARG_ENABLE(pgpcore-plugin,
900         [  --disable-pgpcore-plugin           do not build PGP/Core plugin],
901         [ac_cv_enable_pgpcore_plugin=$enableval], [ac_cv_enable_pgpcore_plugin=yes])
902 if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
903         AC_MSG_RESULT(yes)
904         AM_PATH_GPGME(1.0.0, AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.),
905                       [ac_cv_enable_pgpcore_plugin=no])
906         if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
907                 PLUGINS="pgpcore $PLUGINS"
908                 AM_PATH_GPGME(1.1.1,
909                               AC_DEFINE(HAVE_GPGME_PKA_TRUST, 1,
910                                         [Define if GPGME supports PKA.]))
911                 #needed to get GPGME_LIBS and al correctly
912                 AM_PATH_GPGME(1.0.0, AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.),
913                           [ac_cv_enable_pgpcore_plugin=no])
914         else
915                 AC_MSG_WARN([*** PGP/CORE plugin will not be built ***])
916         fi
917 else
918         AC_MSG_RESULT(no)
919 fi
920 AM_CONDITIONAL(BUILD_PGPCORE_PLUGIN, test x"$ac_cv_enable_pgpcore_plugin" = xyes)
921
922 AC_MSG_CHECKING([whether to build PGP/MIME plugin])
923 AC_ARG_ENABLE(pgpmime-plugin,
924         [  --disable-pgpmime-plugin           do not build PGP/MIME plugin],
925         [ac_cv_enable_pgpmime_plugin=$enableval], [ac_cv_enable_pgpmime_plugin=yes])
926 if test x"$ac_cv_enable_pgpmime_plugin" = xyes; then
927         AC_MSG_RESULT(yes)
928         if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
929                 PLUGINS="pgpmime $PLUGINS"
930         else
931                 AC_MSG_WARN([*** PGP/MIME plugin cannot be built ***])
932                 AC_MSG_WARN([*** without the PGP/CORE plugin     ***])
933         fi
934 else
935         AC_MSG_RESULT(no)
936 fi
937 AM_CONDITIONAL(BUILD_PGPMIME_PLUGIN, test x"$ac_cv_enable_pgpmime_plugin" = xyes)
938
939 AC_MSG_CHECKING([whether to build PGP/Inline plugin])
940 AC_ARG_ENABLE(pgpinline-plugin,
941         [  --disable-pgpinline-plugin           do not build PGP/Inline plugin],
942         [ac_cv_enable_pgpinline_plugin=$enableval], [ac_cv_enable_pgpinline_plugin=yes])
943 if test x"$ac_cv_enable_pgpinline_plugin" = xyes; then
944         AC_MSG_RESULT(yes)
945         if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
946                 PLUGINS="pgpinline $PLUGINS"
947         else
948                 AC_MSG_WARN([*** PGP/Inline plugin cannot be built ***])
949                 AC_MSG_WARN([*** without the PGP/CORE plugin     ***])
950         fi
951 else
952         AC_MSG_RESULT(no)
953 fi
954 AM_CONDITIONAL(BUILD_PGPINLINE_PLUGIN, test x"$ac_cv_enable_pgpinline_plugin" = xyes)
955
956 AC_MSG_CHECKING([whether to build S/Mime plugin])
957 AC_ARG_ENABLE(smime-plugin,
958         [  --disable-smime-plugin           do not build S/Mime plugin],
959         [ac_cv_enable_smime_plugin=$enableval], [ac_cv_enable_smime_plugin=yes])
960 if test x"$ac_cv_enable_smime_plugin" = xyes; then
961         AC_MSG_RESULT(yes)
962         if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
963                 PLUGINS="smime $PLUGINS"
964         else
965                 AC_MSG_WARN([*** S/Mime plugin cannot be built ***])
966                 AC_MSG_WARN([*** without the PGP/CORE plugin     ***])
967         fi
968 else
969         AC_MSG_RESULT(no)
970 fi
971 AM_CONDITIONAL(BUILD_SMIME_PLUGIN, test x"$ac_cv_enable_smime_plugin" = xyes)
972
973 dnl --- Dillo Viewer ---
974 AC_MSG_CHECKING([whether to build Dillo plugin])
975 AC_ARG_ENABLE(dillo-viewer-plugin,
976         [  --disable-dillo-viewer-plugin     do not build Dillo plugin for html mail rendering],
977         [ac_cv_enable_dillo_viewer_plugin=$enableval], [ac_cv_enable_dillo_viewer_plugin=yes])
978 if test x"$ac_cv_enable_dillo_viewer_plugin" = xyes; then
979         AC_MSG_RESULT(yes)
980         PLUGINS="dillo-viewer $PLUGINS"
981 else
982         AC_MSG_RESULT(no)
983 fi
984 AM_CONDITIONAL(BUILD_DILLO_VIEWER_PLUGIN, test x"$ac_cv_enable_dillo_viewer_plugin" = xyes)
985
986 dnl Find curl-config, used by fancy, vcalendar
987 PKG_CHECK_MODULES(CURL, libcurl)
988 AC_SUBST(CURL_LIBS)
989 AC_SUBST(CURL_CFLAGS)
990
991
992 dnl --- Fancy ---
993 AC_MSG_CHECKING([whether to build Fancy plugin])
994 AC_ARG_ENABLE(fancy-plugin,
995         [  --disable-fancy-plugin     do not build Fancy plugin for html mail rendering],
996         [ac_cv_enable_fancy_plugin=$enableval], [ac_cv_enable_fancy_plugin=yes])
997 if test x"$ac_cv_enable_fancy_plugin" = xyes; then
998         AC_MSG_RESULT(yes)
999         dnl Check for WebKit
1000         PKG_CHECK_MODULES(WEBKIT, webkit-1.0,
1001                 [ 
1002                         PLUGINS="fancy $PLUGINS"
1003                 ],
1004                 [
1005                         echo "webkit-1.0 not found."
1006                         ac_cv_enable_fancy_plugin=no
1007                 ])
1008                 AC_SUBST(WEBKIT_LIBS)
1009                 AC_SUBST(WEBKIT_CFLAGS)
1010 fi
1011 if test x"$ac_cv_enable_fancy_plugin" = xyes; then
1012         dnl Check for libsoup-gnome
1013         PKG_CHECK_MODULES(LIBSOUP_GNOME, libsoup-gnome-2.4 >= 2.26, ac_cv_enable_soup_gnome=yes, ac_cv_enable_soup_gnome=no)        
1014         if test x$ac_cv_enable_soup_gnome = xyes; then
1015                         AC_DEFINE(HAVE_LIBSOUP_GNOME, 1, Define if you want soup gnome proxy support)
1016         fi
1017         AC_SUBST(LIBSOUP_GNOME_CFLAGS)
1018         AC_SUBST(LIBSOUP_GNOME_LIBS)
1019         
1020         PKG_CHECK_MODULES(GTKPRINTUNIX, gtk+-unix-print-2.0, ac_cv_enable_gtkprint=yes, ac_cv_enable_gtkprint=no)        
1021         if test x$ac_cv_enable_gtkprint = xyes; then
1022                 AC_DEFINE(USE_PRINTUNIX, 1, Define if you want gtk+-unix-print support)
1023         else
1024                 AC_MSG_RESULT(not found)
1025         fi
1026         AC_SUBST(GTKPRINTUNIX_CFLAGS)
1027         AC_SUBST(GTKPRINTUNIX_LIBS)
1028 fi
1029 AM_CONDITIONAL(BUILD_FANCY_PLUGIN, test x"$ac_cv_enable_fancy_plugin" = xyes)
1030
1031 dnl --- Fancy ---
1032 AC_MSG_CHECKING([whether to build vCalendar plugin])
1033 AC_ARG_ENABLE(vcalendar-plugin,
1034         [  --disable-vcalendar-plugin     do not build vcalendar plugin for ical rendering],
1035         [ac_cv_enable_vcalendar_plugin=$enableval], [ac_cv_enable_vcalendar_plugin=yes])
1036 if test x"$ac_cv_enable_vcalendar_plugin" = xyes; then
1037         AC_MSG_RESULT(yes)
1038         PLUGINS="vcalendar $PLUGINS"
1039 fi
1040 AM_CONDITIONAL(BUILD_VCALENDAR_PLUGIN, test x"$ac_cv_enable_vcalendar_plugin" = xyes)
1041
1042 dnl --- Demo ---
1043 AC_ARG_ENABLE(demo-plugin,
1044         [  --enable-demo-plugin              build demo plugin],
1045         [ac_cv_enable_demo_plugin=$enableval], [ac_cv_enable_demo_plugin=no])
1046 if test x"$ac_cv_enable_demo_plugin" = xyes; then
1047         PLUGINS="demo $PLUGINS"
1048 fi
1049 AM_CONDITIONAL(BUILD_DEMO_PLUGIN, test x"$ac_cv_enable_demo_plugin" = xyes)
1050         
1051 dnl Libetpan
1052 AC_MSG_CHECKING([whether to use libetpan])
1053 AC_ARG_ENABLE(libetpan,
1054         [  --disable-libetpan           disable IMAP4/NNTP (libetpan) support],
1055         [ac_cv_enable_libetpan=$enableval], [ac_cv_enable_libetpan=yes])
1056 if test x"$ac_cv_enable_libetpan" = xyes; then
1057         AC_MSG_RESULT(yes)
1058         libetpan_result=no
1059         AC_PATH_PROG(libetpanconfig, [libetpan-config])
1060         if test "x$libetpanconfig" != "x"; then
1061           CPPFLAGS="$CPPFLAGS `$libetpanconfig --cflags 2>/dev/null`"
1062           AC_CHECK_HEADER(libetpan/libetpan.h, [libetpan_result=yes])
1063           if test "x$libetpan_result" = "xyes"; then
1064             AC_MSG_CHECKING([whether libetpan-config hints compiles and links fine])
1065             LIBS="$LIBS `$libetpanconfig --libs 2>/dev/null`"
1066             AC_TRY_LINK([#include <libetpan/dbstorage.h>], [db_mailstorage_init(NULL, NULL);], [libetpan_result=yes], [libetpan_result=no])
1067             AC_MSG_RESULT([$libetpan_result])
1068           fi
1069         fi
1070         if test "x$libetpan_result" = "xyes"; then
1071            LIBETPAN_CPPFLAGS="`$libetpanconfig --cflags`"
1072            LIBETPAN_LIBS="`$libetpanconfig --libs`"
1073            LIBETPAN_STABLE=`$libetpanconfig --version | grep -v ^0`
1074            LIBETPAN_VERSION=`$libetpanconfig --version | sed "s/\.//g" | sed "s/-.*$//"`
1075            if test x"$LIBETPAN_STABLE" != "x"; then
1076                 LIBETPAN_VERSION="100"
1077            fi
1078            if test "$LIBETPAN_VERSION" -lt "057"; then
1079                 AC_MSG_RESULT([*** Claws Mail requires libetpan 0.57 or newer. See http://www.etpan.org/])
1080                 AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 and/or NNTP support.])
1081                 AC_MSG_ERROR([libetpan 0.57 not found])
1082            fi
1083            AC_SUBST(LIBETPAN_FLAGS)
1084            AC_SUBST(LIBETPAN_LIBS)
1085            AC_DEFINE(HAVE_LIBETPAN, 1, Define if you want IMAP and/or NNTP support.)
1086         else
1087            AC_MSG_RESULT([*** Claws Mail requires libetpan 0.57 or newer. See http://www.etpan.org/ ])
1088            AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 and/or NNTP support.])
1089            AC_MSG_ERROR([libetpan 0.57 not found])
1090         fi
1091 else
1092         AC_MSG_RESULT(no)
1093 fi
1094 AM_CONDITIONAL(CLAWS_LIBETPAN, test "x$libetpan_result" = "xyes")
1095
1096 AC_MSG_CHECKING([whether to use valgrind])
1097 AC_ARG_ENABLE(valgrind,
1098         [  --disable-valgrind           disable valgrind support for debugging],
1099         [ac_cv_enable_valgrind=$enableval], [ac_cv_enable_valgrind=yes])
1100 if test x$ac_cv_enable_valgrind = xyes; then
1101         AC_MSG_RESULT(yes)
1102         PKG_CHECK_MODULES(VALGRIND, valgrind >= 2.4.0,
1103                           ac_cv_enable_valgrind=yes, ac_cv_enable_valgrind=no)
1104         if test x"$ac_cv_enable_valgrind" = xyes; then
1105                 AC_DEFINE(HAVE_VALGRIND, 1, Define if you want valgrind support)
1106         else
1107                 AC_MSG_RESULT(not found)
1108         fi
1109 else
1110         AC_MSG_RESULT(no)
1111 fi
1112 AM_CONDITIONAL(CLAWS_VALGRIND, test x"$ac_cv_enable_valgrind" = x"yes")
1113
1114 dnl ****************************
1115 dnl ** Final configure output **
1116 dnl ****************************
1117
1118 AC_OUTPUT([
1119 Makefile
1120 m4/Makefile
1121 po/Makefile.in
1122 src/common/version.h
1123 src/Makefile
1124 src/common/Makefile
1125 src/common/passcrypt.h
1126 src/gtk/Makefile
1127 src/etpan/Makefile
1128 src/plugins/Makefile
1129 src/plugins/demo/Makefile
1130 src/plugins/bogofilter/Makefile
1131 src/plugins/spamassassin/Makefile
1132 src/plugins/dillo_viewer/Makefile
1133 src/plugins/fancy/Makefile
1134 src/plugins/trayicon/Makefile
1135 src/plugins/pgpcore/Makefile
1136 src/plugins/pgpmime/Makefile
1137 src/plugins/pgpinline/Makefile
1138 src/plugins/smime/Makefile
1139 src/plugins/vcalendar/Makefile
1140 src/plugins/vcalendar/libical/Makefile
1141 src/plugins/vcalendar/libical/libical/icalversion.h
1142 src/plugins/vcalendar/libical/libical/Makefile
1143 src/plugins/vcalendar/libical/design-data/Makefile
1144 src/plugins/vcalendar/libical/scripts/Makefile
1145 doc/Makefile
1146 doc/man/Makefile
1147 tools/Makefile
1148 config/Makefile
1149 manual/Makefile
1150 manual/dtd/Makefile
1151 manual/dist/Makefile
1152 manual/dist/pdf/Makefile
1153 manual/dist/ps/Makefile
1154 manual/dist/html/Makefile
1155 manual/dist/txt/Makefile
1156 manual/fr/Makefile
1157 manual/fr/dist/Makefile
1158 manual/fr/dist/pdf/Makefile
1159 manual/fr/dist/ps/Makefile
1160 manual/fr/dist/html/Makefile
1161 manual/fr/dist/txt/Makefile
1162 manual/pl/Makefile
1163 manual/pl/dist/Makefile
1164 manual/pl/dist/pdf/Makefile
1165 manual/pl/dist/ps/Makefile
1166 manual/pl/dist/html/Makefile
1167 manual/pl/dist/txt/Makefile
1168 manual/es/Makefile
1169 manual/es/dist/Makefile
1170 manual/es/dist/pdf/Makefile
1171 manual/es/dist/ps/Makefile
1172 manual/es/dist/html/Makefile
1173 manual/es/dist/txt/Makefile
1174 manual/de/Makefile
1175 manual/de/dist/Makefile
1176 manual/de/dist/pdf/Makefile
1177 manual/de/dist/ps/Makefile
1178 manual/de/dist/html/Makefile
1179 manual/de/dist/txt/Makefile
1180 claws-mail.pc
1181 ])
1182
1183 dnl Output the configuration summary
1184 echo ""
1185 echo "$PACKAGE $VERSION"
1186 echo ""
1187 if test x"$enable_new_addrbook" = xyes; then
1188         echo "Using Address Book : New experimental interface"
1189 else
1190         echo "Using Address Book : Old stable interface"
1191         echo "JPilot             : $ac_cv_enable_jpilot"
1192         echo "LDAP               : $ac_cv_enable_ldap"
1193 fi
1194 echo "gnuTLS             : $ac_cv_enable_gnutls"
1195 echo "iconv              : $am_cv_func_iconv"
1196 echo "compface           : $ac_cv_enable_compface"
1197 echo "IPv6               : $ac_cv_enable_ipv6"
1198 echo "enchant            : $ac_cv_enable_enchant"
1199 echo "IMAP4              : $ac_cv_enable_libetpan"
1200 echo "NNTP               : $ac_cv_enable_libetpan"
1201 echo "Crash dialog       : $ac_cv_enable_crash_dialog"
1202 echo "LibSM              : $ac_cv_enable_libsm"
1203 echo "DBUS               : $enable_dbus"
1204 echo "NetworkManager     : $enable_networkmanager_support"
1205 echo "Manual             : $ac_cv_enable_manual"
1206 echo "Plugins            : $PLUGINS"
1207 echo "Generic UMPC code  : $ac_cv_enable_generic_umpc"
1208 echo "Maemo  build       : $ac_cv_enable_maemo"
1209 echo "Config dir         : $ac_cv_with_config_dir"
1210 echo ""
1211 echo "The binary will be installed in $prefix/bin"
1212 echo ""
1213 echo "Configure finished, type 'make' to build."