2005-06-24 [paul] 1.9.11cvs97
[claws.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.50)
3 AC_INIT(src/main.c)
4 AC_CONFIG_AUX_DIR(config)
5
6 PACKAGE=sylpheed-claws
7
8 dnl version number
9 MAJOR_VERSION=1
10 MINOR_VERSION=9
11 MICRO_VERSION=11
12 INTERFACE_AGE=0
13 BINARY_AGE=0
14 EXTRA_VERSION=97
15 EXTRA_RELEASE=
16 EXTRA_GTK2_VERSION=
17
18 if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then
19     VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}${EXTRA_RELEASE}${EXTRA_GTK2_VERSION}
20 else
21     VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}cvs${EXTRA_VERSION}${EXTRA_GTK2_VERSION}
22 fi
23
24 dnl set $target
25 AC_CANONICAL_SYSTEM
26
27 dnl
28 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
29 dnl AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
30 dnl AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
31 AC_SUBST(PACKAGE)
32 AC_SUBST(VERSION)
33 AC_SUBST(MAJOR_VERSION)
34 AC_SUBST(MINOR_VERSION)
35 AC_SUBST(MICRO_VERSION)
36 AC_SUBST(EXTRA_VERSION)
37
38 dnl GNOME installed?
39 AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
40 if test "$GNOME_CONFIG" != no; then
41         gnomedatadir="`gnome-config --datadir`"
42         gnomeprefix="`gnome-config --prefix`"
43         if test "${prefix}" = "NONE"; then
44                 gnomedatadir="${ac_default_prefix}/${gnomedatadir#${gnomeprefix}}"
45         else
46                 gnomedatadir="${prefix}/${gnomedatadir#${gnomeprefix}}"
47         fi
48         AC_SUBST(gnomedatadir)
49 fi
50 AM_CONDITIONAL(SYLPHEED_GNOME, test -n "$gnomedatadir")
51
52 dnl GNOME 2.x installed?
53 PKG_CHECK_MODULES(GNOME2, libgnome-2.0 >= 2.0, ac_enable_gnome2=yes, ac_enable_gnome2=no)
54 AM_CONDITIONAL(SYLPHEED_GNOME2, test x"$ac_enable_gnome2" = x"yes")
55
56 dnl Claws version
57 AC_DEFINE(CLAWS, 1, Compiling Claws branch of sylpheed)
58
59 dnl libtool versioning
60 LT_RELEASE=$MAJOR_VERSION.$MINOR_VERSION
61 LT_CURRENT=`expr $MICRO_VERSION - $INTERFACE_AGE`
62 LT_REVISION=$INTERFACE_AGE
63 LT_AGE=`expr $BINARY_AGE - $INTERFACE_AGE`
64 AC_SUBST(LT_RELEASE)
65 AC_SUBST(LT_CURRENT)
66 AC_SUBST(LT_REVISION)
67 AC_SUBST(LT_AGE)
68
69 dnl Specify a header configuration file
70 AC_CONFIG_HEADERS(config.h)
71
72 AM_MAINTAINER_MODE
73
74 dnl Checks for programs.
75 dnl AC_ARG_PROGRAM
76 AC_PROG_CC
77 AC_ISC_POSIX
78 AC_PROG_INSTALL
79 AC_PROG_LN_S
80 AC_PROG_MAKE_SET
81 AC_PROG_CPP
82 dnl AC_PROG_RANLIB
83 AM_PROG_LEX
84 AC_PROG_YACC
85 AC_PROG_LIBTOOL
86
87 SYLPHEED_ACLOCAL_INCLUDE(m4)
88   
89 dnl ******************************
90 dnl Checks for host
91 dnl ******************************
92 AC_CANONICAL_HOST
93
94 dnl Copied from the official gtk+-2 configure.in
95 AC_MSG_CHECKING([for some Win32 platform])
96 case "$host" in
97   *-*-mingw*|*-*-cygwin*)
98     platform_win32=yes
99     LDFLAGS="$LDFLAGS -mwindows"
100     ;;
101   *)
102     platform_win32=no
103     ;;
104 esac
105 AC_MSG_RESULT([$platform_win32])
106 AM_CONDITIONAL(PLATFORM_WIN32, test x"$platform_win32" = x"yes")
107
108 if test x"$platform_win32" = x"yes"; then
109     WINDRES=windres
110     AC_SUBST(WINDRES)
111 fi
112
113 AC_MSG_CHECKING([for native Win32])
114 case "$host" in
115   *-*-mingw*)
116     os_win32=yes
117     ;;
118   *)
119     os_win32=no
120     ;;
121 esac
122 AC_MSG_RESULT([$os_win32])
123 AM_CONDITIONAL(OS_WIN32, test x"$os_win32" = x"yes")
124
125 CFLAGS="$CFLAGS -Wall"
126
127 case "$target" in
128 *-darwin*)
129         CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
130         ;;
131 esac
132   
133 dnl Checks for iconv
134 AM_ICONV
135
136 dnl
137 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
138 dnl
139 syl_save_LIBS=$LIBS
140 LIBS="$LIBS $GTK_LIBS"
141 AC_CHECK_FUNCS(bind_textdomain_codeset)
142 LIBS=$syl_save_LIBS
143
144 dnl for gettext
145 ALL_LINGUAS="bg ca cs de el en_GB es fi fr hr hu it ja ko nl pl pt_BR ru sk sr sv zh_CN zh_TW.Big5"
146 GETTEXT_PACKAGE=sylpheed-claws
147 AC_SUBST(GETTEXT_PACKAGE)
148 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define text domain.])
149
150 AM_GLIB_GNU_GETTEXT
151 dnl AM_GNU_GETTEXT
152 dnl AC_CHECK_FUNC(gettext, AC_CHECK_LIB(intl, gettext))
153 localedir='${prefix}/${DATADIRNAME}/locale'
154 AC_SUBST(localedir)
155
156 manualdir='${prefix}/${DATADIRNAME}/${PACKAGE}/manual'
157 AC_SUBST(manualdir)
158 faqdir='${prefix}/${DATADIRNAME}/${PACKAGE}/faq'
159 AC_SUBST(faqdir)
160
161 dnl Set PACKAGE_DATA_DIR in config.h.
162 if test "x${datadir}" = 'x${prefix}/share'; then
163   if test "x${prefix}" = "xNONE"; then
164     AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${ac_default_prefix}/share/${PACKAGE}", PACKAGE_DATA_DIR)
165   else
166     AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/share/${PACKAGE}", PACKAGE_DATA_DIR)
167   fi
168 else
169   AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datadir}/${PACKAGE}", PACKAGE_DATA_DIR)
170 fi
171
172 AC_CHECK_LIB(xpg4, setlocale)
173
174 dnl for GThread support (currently disabled)
175 dnl AC_ARG_ENABLE(threads,
176 dnl     [  --enable-threads        Enable multithread support [default=no]],
177 dnl     [use_threads=$enableval], [use_threads=no])
178
179 AC_MSG_CHECKING([whether to use threads])
180 if test x"$use_threads" = xyes ; then
181         AC_MSG_RESULT(yes)
182         if test ! -z `$GLIB_CONFIG --help 2>&1 |grep 'gthread'` ; then
183                 CFLAGS="$CFLAGS `$GLIB_CONFIG --cflags gthread`"
184                 LIBS="$LIBS `$GLIB_CONFIG --libs gthread`"
185                 AC_DEFINE(USE_THREADS, 1, Whether to use multithread or not)
186         else
187                 AC_MSG_ERROR([Sylpheed requires GThread from GLib to use threading.])
188         fi
189 else
190         AC_MSG_RESULT(no)
191 fi
192
193 dnl Check for d_type member in struct dirent
194 AC_MSG_CHECKING([whether struct dirent has d_type member])
195 AC_CACHE_VAL(ac_cv_dirent_d_type,[
196         AC_TRY_COMPILE([#include <dirent.h>],
197                        [struct dirent d; d.d_type = DT_REG;],
198                        ac_cv_dirent_d_type=yes, ac_cv_dirent_d_type=no)
199 ])
200 AC_MSG_RESULT($ac_cv_dirent_d_type)
201 if test $ac_cv_dirent_d_type = yes; then
202         AC_DEFINE(HAVE_DIRENT_D_TYPE, 1,
203                   Define if `struct dirent' has `d_type' member.)
204 fi
205
206 dnl Checks for header files.
207 AC_HEADER_DIRENT
208 AC_HEADER_STDC
209 AC_HEADER_SYS_WAIT
210 AC_CHECK_HEADERS(fcntl.h sys/file.h unistd.h paths.h \
211                  sys/param.h sys/utsname.h sys/select.h \
212                  wchar.h wctype.h locale.h)
213
214 dnl alf - Check for apache installation f*ck up. apache may also install an 
215 dnl fnmatch, which includes their own regex stuff if USE_HSREGEX is defined
216 AC_TRY_COMPILE([#include <stdlib.h>
217                 #include <fnmatch.h>],
218         [int x = USE_HSREGEX;],
219         ac_cv_have_apache_fnmatch=yes, ac_cv_have_apache_fnmatch=no)
220 if test $ac_cv_have_apache_fnmatch = yes; then
221         AC_DEFINE(HAVE_APACHE_FNMATCH, 1, Define if you need to work around apache regex/fnmatch !KLUDGE!)
222 fi
223 AC_MSG_CHECKING([whether to use Apache regex header kludge])
224 AC_MSG_RESULT($ac_cv_have_apache_fnmatch)
225
226 dnl Checks for typedefs, structures, and compiler characteristics.
227 AC_C_CONST
228 AC_TYPE_OFF_T
229 AC_TYPE_PID_T
230 AC_TYPE_SIZE_T
231 AC_STRUCT_TM
232
233 dnl AC_CHECK_TYPE(wint_t, unsigned int) does not work because wint_t
234 dnl may be defined only in wchar.h (this happens with gcc-2.96).
235 dnl So we need to use this extended macro.
236 SYLPHEED_CHECK_TYPE(wint_t, unsigned int,
237 [
238 #if HAVE_WCHAR_H
239 #include <wchar.h>
240 #endif
241 ], Define to `unsigned int' if <stddef.h> or <wchar.h> doesn't define.)
242
243 GNUPG_CHECK_TYPEDEF(u32, HAVE_U32_TYPEDEF, Used to test for a u32 typedef)
244 AC_CHECK_SIZEOF(unsigned short, 2)
245 AC_CHECK_SIZEOF(unsigned int, 4)
246 AC_CHECK_SIZEOF(unsigned long, 4)
247
248 dnl Checks for library functions.
249 AC_FUNC_ALLOCA
250 AC_CHECK_FUNCS(gethostname mkdir mktime socket strstr strchr \
251                wcsstr wcswcs iswalnum iswspace towlower \
252                wcslen wcscpy wcsncpy \
253                uname flock lockf inet_aton inet_addr \
254                fchmod mkstemp)
255
256 dnl *****************
257 dnl ** common code **
258 dnl *****************
259
260 dnl check for glib
261 AM_PATH_GLIB_2_0(2.0.0,,
262         AC_MSG_ERROR(Test for GLIB failed. See the file 'INSTALL' for help.),
263         gmodule gobject gthread)
264
265 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
266 syl_save_LIBS=$LIBS
267 LIBS="$LIBS $GTK_LIBS"
268 AC_CHECK_FUNCS(bind_textdomain_codeset)
269 LIBS=$syl_save_LIBS
270
271 dnl check for IPv6 option
272 AC_ARG_ENABLE(ipv6,
273         [  --disable-ipv6           Disable IPv6 support],
274         [ac_cv_enable_ipv6=$enableval], [ac_cv_enable_ipv6=yes])
275
276 dnl automated checks for IPv6 support.
277 AC_MSG_CHECKING([whether to use IPv6])
278 if test x"$ac_cv_enable_ipv6" = xyes; then
279         AC_MSG_RESULT(yes)
280         AC_MSG_CHECKING([for IPv6 support])
281         AC_CACHE_VAL(ac_cv_ipv6,[
282                 AC_TRY_COMPILE([#define INET6
283                                 #include <sys/types.h>
284                                 #include <netinet/in.h>],
285                         [int x = IPPROTO_IPV6; struct in6_addr a;],
286                         ac_cv_ipv6=yes, ac_cv_ipv6=no)
287         ])
288         AC_MSG_RESULT($ac_cv_ipv6)
289         if test $ac_cv_ipv6 = yes; then
290                 AC_DEFINE(INET6, 1, Define if you want IPv6 support.)
291         else
292                 AC_MSG_WARN(*** IPv6 will not be supported ***)
293                 ac_cv_enable_ipv6=no
294         fi
295 else
296         AC_MSG_RESULT(no)
297 fi
298
299 dnl Check for OpenSSL
300 AC_ARG_ENABLE(openssl,
301         [  --enable-openssl    Attempt to use OpenSSL for SSL support.],
302         [ac_cv_enable_openssl=$enableval], [ac_cv_enable_openssl=yes])
303 if test x"$ac_cv_enable_openssl" = xyes; then
304         PKG_CHECK_MODULES(OPENSSL, openssl >= 0.9.7, :, ac_cv_enable_openssl=no)
305         if test x$ac_cv_enable_openssl = xyes; then
306                 AC_DEFINE(USE_OPENSSL, 1, Define if you want OpenSSL support)
307         fi
308 fi
309 AC_SUBST(OPENSSL_CFLAGS)
310 AC_SUBST(OPENSSL_LIBS)
311
312 dnl password encryption
313 OLDLIBS=$LIBS
314 LIBS=
315 AC_SEARCH_LIBS(encrypt, crypt, [], AC_MSG_ERROR(['encrypt'-function not found.]))
316 CRYPT_LIBS=$LIBS
317 AC_SUBST(CRYPT_LIBS)
318 LIBS=$OLDLIBS
319
320 AC_ARG_WITH(passcrypt-key, [  --with-passcrypt-key=KEY     Key used to encode passwords (8 byte string)],
321             with_passcrypt_key="$withval", with_passcrypt_key="passkey0")
322 AC_SUBST(PASSCRYPT_KEY, $with_passcrypt_key)
323
324 dnl RC dir (will be default at a certain point in time)
325 AC_ARG_WITH(config-dir,    [  --with-config-dir=RCDIR      Local configuration dir (default: .sylpheed-gtk2)],
326               ac_cv_with_config_dir="$withval", ac_cv_with_config_dir=".sylpheed-gtk2")
327 if test x"$ac_cv_with_config_dir" = x""; then
328         ac_cv_with_config_dir=".sylpheed-gtk2"
329 fi 
330 AC_DEFINE_UNQUOTED(CFG_RC_DIR, "$ac_cv_with_config_dir", Configuration directory)
331
332 dnl ************************
333 dnl ** GTK user interface **
334 dnl ************************
335
336 dnl Checks for GTK
337 AM_PATH_GTK_2_0(2.4.0,,
338         AC_MSG_ERROR(Test for GTK failed. See the file 'INSTALL' for help.))
339
340 dnl --disable-deprecated switch for GTK2 purification
341 AC_ARG_ENABLE(deprecated, [  --disable-deprecated  Disable deprecated GTK functions. ],
342                           [GTK_CFLAGS="$GTK_CFLAGS -DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"], [])
343
344 AC_SUBST(GTK_CFLAGS)
345 AC_SUBST(GTK_LIBS)
346
347 dnl GNU/Aspell is used for spell checking
348 AC_ARG_ENABLE(aspell,
349         [  --enable-aspell         Enable GNU/aspell support [default=no]],
350         [ac_cv_enable_aspell=$enableval], [ac_cv_enable_aspell=no])
351 AC_MSG_CHECKING([whether to use GNU/aspell])
352 if test $ac_cv_enable_aspell = yes; then
353         AC_MSG_RESULT(yes)
354         AM_PATH_ASPELL(0.50, AC_DEFINE(USE_ASPELL, 1, Define if you use ASPELL to support spell checking),
355                       [use_aspell=no ac_cv_enable_aspell=no])
356 else
357         AC_MSG_RESULT(no)
358 fi
359
360 dnl want crash dialog
361 AC_ARG_ENABLE(crash-dialog,
362         [  --enable-crash-dialog   Enable crash dialog [default=no]],
363         [ac_cv_enable_crash_dialog=$enableval], [ac_cv_enable_crash_dialog=no])
364 if test $ac_cv_enable_crash_dialog = yes; then
365 dnl check if GDB is somewhere
366         AC_CHECK_PROG(ac_cv_enable_crash_dialog, gdb, yes, no)
367         AC_MSG_CHECKING([whether to use crash dialog])
368         if test $ac_cv_enable_crash_dialog = yes; then
369                 AC_DEFINE(CRASH_DIALOG, 1, Pop up crash dialog)
370         fi
371         AC_MSG_RESULT($ac_cv_enable_crash_dialog)
372 fi
373
374 dnl Check for X-Face support
375 AC_ARG_ENABLE(compface,
376         [  --disable-compface      Do not use compface (X-Face)],
377         [ac_cv_enable_compface=$enableval], [ac_cv_enable_compface=yes])
378 AC_MSG_CHECKING([whether to use compface])
379 if test x"$ac_cv_enable_compface" = xyes; then
380         AC_MSG_RESULT(yes)
381         AC_CHECK_LIB(compface, uncompface, 
382                 [AC_DEFINE(HAVE_LIBCOMPFACE, 1, Define if you want compface support.)],
383                 [ac_cv_enable_compface=no])
384         if test x"$ac_cv_enable_compface" = xyes; then
385                 COMPFACE_LIBS="-lcompface"
386         else
387                 COMPFACE_LIBS=""
388         fi
389         AC_SUBST(COMPFACE_LIBS)
390 else
391         AC_MSG_RESULT(no)
392 fi
393
394 dnl check for pthread support
395 AC_ARG_ENABLE(pthread,
396         [  --disable-pthread           Disable pthread support],
397         [ac_cv_enable_pthread=$enableval], [ac_cv_enable_pthread=yes])
398 AC_MSG_CHECKING([whether to use pthread])
399 if test x$ac_cv_enable_pthread = xno; then
400         AC_MSG_RESULT(no)
401 else
402         AC_MSG_RESULT(yes)
403
404         AC_CHECK_LIB(pthread, pthread_create, :, ac_cv_enable_pthread=no)
405         AC_CHECK_HEADERS(pthread.h, :, ac_cv_enable_pthread=no)
406
407         if test x$ac_cv_enable_pthread = xyes; then
408                 AC_DEFINE(USE_PTHREAD, 1, Define if you have pthread)
409                 PTHREAD_LIBS="-lpthread"
410         fi
411
412 fi
413 AC_SUBST(PTHREAD_LIBS)
414
415 dnl for LDAP support in addressbook
416 dnl no check for libraries; dynamically loaded
417 AC_ARG_ENABLE(ldap,
418         [  --enable-ldap           Enable LDAP support [default=no]],
419         [ac_cv_enable_ldap=$enableval], [ac_cv_enable_ldap=no])
420 AC_MSG_CHECKING([whether to use LDAP])
421 if test x"$ac_cv_enable_ldap" = xno; then
422         AC_MSG_RESULT(no)
423 elif test x"$ac_cv_enable_ldap" = xyes -a x"$ac_cv_enable_pthread" = xno; then
424         AC_MSG_RESULT(no - LDAP support needs pthread support)
425
426         ac_cv_enable_ldap=no
427 else
428         AC_MSG_RESULT(yes)
429
430         dnl check for available libraries, and pull them in
431         AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="$LDAP_LIBS -lresolv")
432         AC_CHECK_LIB(socket, bind, LDAP_LIBS="$LDAP_LIBS -lsocket")
433         AC_CHECK_LIB(nsl, gethostbyaddr, LDAP_LIBS="$LDAP_LIBS -lnsl")
434         AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="$LDAP_LIBS -llber",,
435                      $LDAP_LIBS)
436
437         AC_CHECK_HEADERS(ldap.h lber.h,
438                          [ ac_cv_enable_ldap=yes ],
439                          [ ac_cv_enable_ldap=no ])
440
441         if test "$ac_cv_enable_ldap" = yes; then
442                 AC_CHECK_LIB(ldap, ldap_open,
443                              [ ac_cv_enable_ldap=yes ],
444                              [ ac_cv_enable_ldap=no ],
445                              $LDAP_LIBS)
446
447                 AC_CHECK_LIB(ldap, ldap_start_tls_s,
448                              [ ac_cv_have_tls=yes ],
449                              [ ac_cv_have_tls=no ])
450
451         fi
452
453         AC_MSG_CHECKING([whether ldap library is available])
454         AC_MSG_RESULT($ac_cv_enable_ldap)
455
456         AC_MSG_CHECKING([whether TLS library is available])
457         AC_MSG_RESULT($ac_cv_have_tls)
458
459         if test "$ac_cv_enable_ldap" = yes; then
460                 CFLAGS="$CFLAGS `$GLIB_CONFIG --cflags gthread`"
461                 LDAP_LIBS="$LDAP_LIBS -lldap `$GLIB_CONFIG --libs gthread`"
462                 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
463                 AC_SUBST(LDAP_LIBS)
464                 if test "$ac_cv_have_tls" = yes; then
465                         AC_DEFINE(USE_LDAP_TLS, 1, Define if you want LDAP TLS support in addressbook.)
466                 fi
467         fi
468 fi
469
470 dnl for JPilot support in addressbook
471 dnl no check for libraries; these are dynamically loaded
472 AC_ARG_ENABLE(jpilot,
473         [  --enable-jpilot         Enable JPilot support [default=no]],
474         [ac_cv_enable_jpilot=$enableval], [ac_cv_enable_jpilot=no])
475 AC_MSG_CHECKING([whether to use JPilot])
476 if test "$ac_cv_enable_jpilot" = yes; then
477         AC_MSG_RESULT(yes)
478         AC_CHECK_HEADERS(pi-args.h pi-appinfo.h pi-address.h,
479                          [ AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ],
480                          [ ac_cv_enable_jpilot=no ])
481         if test "$ac_cv_enable_jpilot" = no; then
482                 AC_CHECK_HEADERS(libpisock/pi-args.h libpisock/pi-appinfo.h libpisock/pi-address.h,
483                                  [ ac_cv_enable_jpilot=yes
484                                    AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ])
485         fi
486
487         AC_CHECK_LIB(pisock, unpack_Address, [JPILOT_LIBS="-lpisock"], [JPILOT_LIBS="" ac_cv_enable_jpilot="no"])
488         if test x"$ac_cv_enable_jpilot" = xyes; then
489                 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.)
490         else
491                 AC_MSG_NOTICE([JPilot support not available])
492         fi
493         AC_SUBST(JPILOT_LIBS)
494 else
495         AC_MSG_RESULT(no)
496 fi
497
498 dnl #######################################################################
499 dnl # Check for startup notification
500 dnl #######################################################################
501 AC_ARG_ENABLE(startup-notification, [  --disable-startup-notification    compile without startup notification support],,enable_startup_notification=yes)
502
503 if test "x$enable_startup_notification" = "xyes"; then
504         PKG_CHECK_MODULES(STARTUP_NOTIFICATION, libstartup-notification-1.0 >= 0.5,
505         [
506                 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, [Define if we're using libstartup-notification.])
507                 echo "Building with libstartup-notification"
508                 enable_startup_notification=yes
509         ],
510         [
511                 echo "Building without libstartup-notification"
512                 enable_startup_notification=no
513         ])
514
515         AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
516         AC_SUBST(STARTUP_NOTIFICATION_LIBS)
517 fi
518
519 dnl *************************
520 dnl ** section for plugins **
521 dnl *************************
522
523 PLUGINS=""
524
525 dnl --- Trayicon ---
526 AC_ARG_ENABLE(trayicon-plugin,
527         [  --disable-trayicon-plugin         Do not build System Tray Icon plugin],
528         [ac_cv_enable_trayicon_plugin=$enableval], [ac_cv_enable_trayicon_plugin=yes])
529 if test x"$ac_cv_enable_trayicon_plugin" = xyes; then
530         PLUGINS="trayicon $PLUGINS"
531 fi
532 AM_CONDITIONAL(BUILD_TRAYICON_PLUGIN, test x"$ac_cv_enable_trayicon_plugin" = xyes)
533
534 dnl --- SpamAssassin ---
535 AC_ARG_ENABLE(spamassassin-plugin,
536         [  --enable-spamassassin-plugin      Build SpamAssassin plugin [default=no]],
537         [ac_cv_enable_spamassassin_plugin=$enableval], [ac_cv_enable_spamassassin_plugin=no])
538 if test x"$ac_cv_enable_spamassassin_plugin" = xyes; then
539         AC_SPAMASSASSIN
540         PLUGINS="spamassassin $PLUGINS"
541 fi
542 AM_CONDITIONAL(BUILD_SPAMASSASSIN_PLUGIN, test x"$ac_cv_enable_spamassassin_plugin" = xyes)
543
544 dnl --- PGP/MIME ---
545 AC_ARG_ENABLE(pgpmime-plugin,
546         [  --disable-pgpmime-plugin           Do not build PGP/MIME plugin],
547         [ac_cv_enable_pgpmime_plugin=$enableval], [ac_cv_enable_pgpmime_plugin=yes])
548 if test x"$ac_cv_enable_pgpmime_plugin" = xyes; then
549         AM_PATH_GPGME(0.3.10, AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.),
550                       [ac_cv_enable_pgpmime_plugin=no])
551         if test x"$ac_cv_enable_pgpmime_plugin" = xyes; then
552                 PLUGINS="pgpmime $PLUGINS"
553         fi
554 fi
555 AM_CONDITIONAL(BUILD_PGPMIME_PLUGIN, test x"$ac_cv_enable_pgpmime_plugin" = xyes)
556
557 dnl --- MathML Viewer ---
558 AC_ARG_ENABLE(mathml-viewer-plugin,
559         [  --disable-mathml-viewer-plugin    Do not build MathML-Viewer plugin],
560         [ac_cv_enable_mathml_viewer_plugin=$enableval], [ac_cv_enable_mathml_viewer_plugin=yes])
561 if test x"$ac_cv_enable_mathml_viewer_plugin" = xyes; then
562         PKG_CHECK_MODULES(GTK_MATH_VIEW, gtkmathview >= 0.5, :, ac_cv_enable_mathml_viewer_plugin=no)
563
564         if test x"$ac_cv_enable_mathml_viewer_plugin" = xyes; then
565
566                 PLUGINS="mathml-viewer $PLUGINS"
567         fi
568 fi
569 AC_SUBST(GTK_MATH_VIEW_CFLAGS)
570 AC_SUBST(GTK_MATH_VIEW_LIBS)
571 AM_CONDITIONAL(BUILD_MATHML_VIEWER_PLUGIN, test x"$ac_cv_enable_mathml_viewer_plugin" = xyes)
572
573 dnl --- Dillo Viewer ---
574 AC_ARG_ENABLE(dillo-viewer-plugin,
575         [  --disable-dillo-viewer-plugin     Do not build Dillo plugin for html mail rendering],
576         [ac_cv_enable_dillo_viewer_plugin=$enableval], [ac_cv_enable_dillo_viewer_plugin=yes])
577 if test x"$ac_cv_enable_dillo_viewer_plugin" = xyes; then
578         PLUGINS="dillo-viewer $PLUGINS"
579 fi
580 AM_CONDITIONAL(BUILD_DILLO_VIEWER_PLUGIN, test x"$ac_cv_enable_dillo_viewer_plugin" = xyes)
581
582 dnl --- Demo ---
583 AC_ARG_ENABLE(demo-plugin,
584         [  --enable-demo-plugin              Build demo plugin [default=no]],
585         [ac_cv_enable_demo_plugin=$enableval], [ac_cv_enable_demo_plugin=no])
586 if test x"$ac_cv_enable_demo_plugin" = xyes; then
587         PLUGINS="demo $PLUGINS"
588 fi
589 AM_CONDITIONAL(BUILD_DEMO_PLUGIN, test x"$ac_cv_enable_demo_plugin" = xyes)
590
591 dnl --- ClamAV ---
592 AC_ARG_ENABLE(clamav-plugin,
593         [  --disable-clamav-plugin           Do not build Clam AntiVirus plugin],
594         [ac_cv_enable_clamav_plugin=$enableval], [ac_cv_enable_clamav_plugin=yes])
595 if test x"$ac_cv_enable_clamav_plugin" = xyes; then
596         AC_CHECK_LIB(clamav, cl_scanfile, clamav_lib=-lclamav, ac_cv_enable_clamav_plugin=no)
597         AC_CHECK_HEADERS(clamav.h, :, ac_cv_enable_clamav_plugin=no)
598         if test x"$ac_cv_enable_clamav_plugin" = xyes; then
599                 CLAMAV_LIBS="${clamav_lib}"
600
601                 PLUGINS="clamav $PLUGINS"
602         else
603                 AC_MSG_NOTICE([clamav library not found, will not build clamav plugin])
604         fi
605 fi
606 AC_SUBST(CLAMAV_LIBS)
607 AM_CONDITIONAL(BUILD_CLAMAV_PLUGIN, test x"$ac_cv_enable_clamav_plugin" = xyes)
608
609 dnl ****************************
610 dnl ** Final configure output **
611 dnl ****************************
612
613 AC_OUTPUT([
614 Makefile
615 sylpheed.spec
616 m4/Makefile
617 po/Makefile.in
618 src/common/version.h
619 src/Makefile
620 src/common/Makefile
621 src/common/passcrypt.h
622 src/gtk/Makefile
623 src/plugins/Makefile
624 src/plugins/demo/Makefile
625 src/plugins/spamassassin/Makefile
626 src/plugins/mathml_viewer/Makefile
627 src/plugins/dillo_viewer/Makefile
628 src/plugins/trayicon/Makefile
629 src/plugins/trayicon/libeggtrayicon/Makefile
630 src/plugins/clamav/Makefile
631 src/plugins/pgpmime/Makefile
632 doc/Makefile
633 doc/faq/Makefile
634 doc/faq/de/Makefile
635 doc/faq/en/Makefile
636 doc/faq/es/Makefile
637 doc/faq/fr/Makefile
638 doc/faq/it/Makefile
639 doc/man/Makefile
640 doc/manual/Makefile
641 doc/manual/de/Makefile
642 doc/manual/en/Makefile
643 doc/manual/es/Makefile
644 doc/manual/fr/Makefile
645 doc/manual/ja/Makefile
646 tools/Makefile
647 config/Makefile
648 sylpheed-claws.pc
649 ])
650
651 dnl Output the configuration summary
652 echo ""
653 echo "$PACKAGE $VERSION"
654 echo ""
655 echo "JPilot        : $ac_cv_enable_jpilot"
656 echo "LDAP          : $ac_cv_enable_ldap"
657 echo "OpenSSL       : $ac_cv_enable_openssl"
658 echo "iconv         : $am_cv_func_iconv"
659 echo "compface      : $ac_cv_enable_compface"
660 echo "IPv6          : $ac_cv_enable_ipv6"
661 echo "GNU/aspell    : $ac_cv_enable_aspell"
662 echo "Crash dialog  : $ac_cv_enable_crash_dialog"
663 echo "Plugins       : $PLUGINS"
664 echo "Config dir    : $ac_cv_with_config_dir"
665 echo ""
666 echo "The binary will be installed in $prefix/bin"
667 echo ""
668 echo "Configure finished, type 'make' to build."