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