1 dnl Process this file with autoconf to produce a configure script.
4 AC_CONFIG_AUX_DIR(config)
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}
21 VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}cvs${EXTRA_VERSION}${EXTRA_GTK2_VERSION}
28 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
29 dnl AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
30 dnl AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
33 AC_SUBST(MAJOR_VERSION)
34 AC_SUBST(MINOR_VERSION)
35 AC_SUBST(MICRO_VERSION)
36 AC_SUBST(EXTRA_VERSION)
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}}"
46 gnomedatadir="${prefix}/${gnomedatadir#${gnomeprefix}}"
48 AC_SUBST(gnomedatadir)
50 AM_CONDITIONAL(SYLPHEED_GNOME, test -n "$gnomedatadir")
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")
57 AC_DEFINE(CLAWS, 1, Compiling Claws branch of sylpheed)
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`
69 dnl Specify a header configuration file
70 AC_CONFIG_HEADERS(config.h)
74 dnl Checks for programs.
87 SYLPHEED_ACLOCAL_INCLUDE(m4)
89 dnl ******************************
91 dnl ******************************
94 dnl Copied from the official gtk+-2 configure.in
95 AC_MSG_CHECKING([for some Win32 platform])
97 *-*-mingw*|*-*-cygwin*)
99 LDFLAGS="$LDFLAGS -mwindows"
105 AC_MSG_RESULT([$platform_win32])
106 AM_CONDITIONAL(PLATFORM_WIN32, test x"$platform_win32" = x"yes")
108 if test x"$platform_win32" = x"yes"; then
113 AC_MSG_CHECKING([for native Win32])
122 AC_MSG_RESULT([$os_win32])
123 AM_CONDITIONAL(OS_WIN32, test x"$os_win32" = x"yes")
125 CFLAGS="$CFLAGS -Wall"
129 CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
132 CFLAGS="$CFLAGS -mms-bitfields"
133 LIBS="$LIBS -lws2_32"
141 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
144 LIBS="$LIBS $GTK_LIBS"
145 AC_CHECK_FUNCS(bind_textdomain_codeset)
149 ALL_LINGUAS="bg ca cs de el en_GB es fi fr hr hu it ja ko nb nl pl pt_BR ru sk sr sv zh_CN zh_TW"
150 GETTEXT_PACKAGE=sylpheed-claws
151 AC_SUBST(GETTEXT_PACKAGE)
152 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define text domain.])
156 dnl AC_CHECK_FUNC(gettext, AC_CHECK_LIB(intl, gettext))
157 localedir='${prefix}/${DATADIRNAME}/locale'
158 AC_ARG_WITH(localedir,
159 [ --with-localedir=DIR Locale directory],
160 [localedir="$withval"])
163 manualdir='${prefix}/${DATADIRNAME}/${PACKAGE}/manual'
164 AC_ARG_WITH(manualdir,
165 [ --with-manualdir=DIR Manual directory],
166 [manualdir="$withval"])
169 faqdir='${prefix}/${DATADIRNAME}/${PACKAGE}/faq'
171 [ --with-faqdir=DIR FAQ directory],
175 dnl Set PACKAGE_DATA_DIR in config.h.
176 if test "x${datadir}" = 'x${prefix}/share'; then
177 if test "x${prefix}" = "xNONE"; then
178 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${ac_default_prefix}/share/${PACKAGE}", PACKAGE_DATA_DIR)
180 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/share/${PACKAGE}", PACKAGE_DATA_DIR)
183 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datadir}/${PACKAGE}", PACKAGE_DATA_DIR)
186 AC_CHECK_LIB(xpg4, setlocale)
188 dnl for GThread support (currently disabled)
189 dnl AC_ARG_ENABLE(threads,
190 dnl [ --enable-threads Enable multithread support [default=no]],
191 dnl [use_threads=$enableval], [use_threads=no])
193 AC_MSG_CHECKING([whether to use threads])
194 if test x"$use_threads" = xyes ; then
196 if test ! -z `$GLIB_CONFIG --help 2>&1 |grep 'gthread'` ; then
197 CFLAGS="$CFLAGS `$GLIB_CONFIG --cflags gthread`"
198 LIBS="$LIBS `$GLIB_CONFIG --libs gthread`"
199 AC_DEFINE(USE_THREADS, 1, Whether to use multithread or not)
201 AC_MSG_ERROR([Sylpheed requires GThread from GLib to use threading.])
207 dnl Check for d_type member in struct dirent
208 AC_MSG_CHECKING([whether struct dirent has d_type member])
209 AC_CACHE_VAL(ac_cv_dirent_d_type,[
210 AC_TRY_COMPILE([#include <dirent.h>],
211 [struct dirent d; d.d_type = DT_REG;],
212 ac_cv_dirent_d_type=yes, ac_cv_dirent_d_type=no)
214 AC_MSG_RESULT($ac_cv_dirent_d_type)
215 if test $ac_cv_dirent_d_type = yes; then
216 AC_DEFINE(HAVE_DIRENT_D_TYPE, 1,
217 Define if `struct dirent' has `d_type' member.)
220 dnl Checks for header files.
224 AC_CHECK_HEADERS(fcntl.h sys/file.h unistd.h paths.h \
225 sys/param.h sys/utsname.h sys/select.h \
226 wchar.h wctype.h locale.h netdb.h)
228 dnl alf - Check for apache installation f*ck up. apache may also install an
229 dnl fnmatch, which includes their own regex stuff if USE_HSREGEX is defined
230 AC_TRY_COMPILE([#include <stdlib.h>
231 #include <fnmatch.h>],
232 [int x = USE_HSREGEX;],
233 ac_cv_have_apache_fnmatch=yes, ac_cv_have_apache_fnmatch=no)
234 if test $ac_cv_have_apache_fnmatch = yes; then
235 AC_DEFINE(HAVE_APACHE_FNMATCH, 1, Define if you need to work around apache regex/fnmatch !KLUDGE!)
237 AC_MSG_CHECKING([whether to use Apache regex header kludge])
238 AC_MSG_RESULT($ac_cv_have_apache_fnmatch)
240 dnl Checks for typedefs, structures, and compiler characteristics.
247 dnl AC_CHECK_TYPE(wint_t, unsigned int) does not work because wint_t
248 dnl may be defined only in wchar.h (this happens with gcc-2.96).
249 dnl So we need to use this extended macro.
250 SYLPHEED_CHECK_TYPE(wint_t, unsigned int,
255 ], Define to `unsigned int' if <stddef.h> or <wchar.h> doesn't define.)
257 GNUPG_CHECK_TYPEDEF(u32, HAVE_U32_TYPEDEF, Used to test for a u32 typedef)
258 AC_CHECK_SIZEOF(unsigned short, 2)
259 AC_CHECK_SIZEOF(unsigned int, 4)
260 AC_CHECK_SIZEOF(unsigned long, 4)
262 dnl Checks for library functions.
264 AC_CHECK_FUNCS(gethostname mkdir mktime socket strstr strchr \
265 wcsstr wcswcs iswalnum iswspace towlower \
266 wcslen wcscpy wcsncpy \
267 uname flock lockf inet_aton inet_addr \
268 fchmod mkstemp truncate getuid regcomp)
270 dnl *****************
271 dnl ** common code **
272 dnl *****************
275 AM_PATH_GLIB_2_0(2.0.0,,
276 AC_MSG_ERROR(Test for GLIB failed. See the file 'INSTALL' for help.),
277 gmodule gobject gthread)
279 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
281 LIBS="$LIBS $GTK_LIBS"
282 AC_CHECK_FUNCS(bind_textdomain_codeset)
285 dnl check for IPv6 option
287 [ --disable-ipv6 Disable IPv6 support],
288 [ac_cv_enable_ipv6=$enableval], [ac_cv_enable_ipv6=yes])
290 dnl automated checks for IPv6 support.
291 AC_MSG_CHECKING([whether to use IPv6])
292 if test x"$ac_cv_enable_ipv6" = xyes; then
294 AC_MSG_CHECKING([for IPv6 support])
295 AC_CACHE_VAL(ac_cv_ipv6,[
296 AC_TRY_COMPILE([#define INET6
297 #include <sys/types.h>
298 #include <netinet/in.h>],
299 [int x = IPPROTO_IPV6; struct in6_addr a;],
300 ac_cv_ipv6=yes, ac_cv_ipv6=no)
302 AC_MSG_RESULT($ac_cv_ipv6)
303 if test $ac_cv_ipv6 = yes; then
304 AC_DEFINE(INET6, 1, Define if you want IPv6 support.)
306 AC_MSG_WARN(*** IPv6 will not be supported ***)
313 dnl Check for OpenSSL
314 AC_ARG_ENABLE(openssl,
315 [ --disable-openssl Do not use OpenSSL for SSL support.],
316 [ac_cv_enable_openssl=$enableval], [ac_cv_enable_openssl=yes])
317 AC_MSG_CHECKING([whether to use OpenSSL])
318 if test x"$ac_cv_enable_openssl" = xyes; then
320 PKG_CHECK_MODULES(OPENSSL, openssl >= 0.9.7, :, ac_cv_enable_openssl=no)
321 if test x$ac_cv_enable_openssl = xyes; then
322 AC_DEFINE(USE_OPENSSL, 1, Define if you want OpenSSL support)
324 AC_MSG_RESULT(not found)
325 AC_MSG_WARN([*** OpenSSL will not be supported ***])
330 AC_SUBST(OPENSSL_CFLAGS)
331 AC_SUBST(OPENSSL_LIBS)
333 dnl password encryption
336 AC_SEARCH_LIBS(encrypt, crypt, [], AC_MSG_ERROR(['encrypt'-function not found.]))
341 AC_ARG_WITH(passcrypt-key, [ --with-passcrypt-key=KEY Key used to encode passwords (8 byte string)],
342 with_passcrypt_key="$withval", with_passcrypt_key="passkey0")
343 AC_SUBST(PASSCRYPT_KEY, $with_passcrypt_key)
345 dnl RC dir (will be default at a certain point in time)
346 AC_ARG_WITH(config-dir, [ --with-config-dir=RCDIR Local configuration dir (default: .sylpheed-gtk2)],
347 ac_cv_with_config_dir="$withval", ac_cv_with_config_dir=".sylpheed-gtk2")
348 if test x"$ac_cv_with_config_dir" = x""; then
349 ac_cv_with_config_dir=".sylpheed-gtk2"
351 AC_DEFINE_UNQUOTED(CFG_RC_DIR, "$ac_cv_with_config_dir", Configuration directory)
353 dnl ************************
354 dnl ** GTK user interface **
355 dnl ************************
358 AM_PATH_GTK_2_0(2.4.0,,
359 AC_MSG_ERROR(Test for GTK failed. See the file 'INSTALL' for help.))
361 dnl --disable-deprecated switch for GTK2 purification
362 AC_ARG_ENABLE(deprecated, [ --disable-deprecated Disable deprecated GTK functions. ],
363 [GTK_CFLAGS="$GTK_CFLAGS -DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"], [])
368 dnl GNU/Aspell is used for spell checking
369 AC_ARG_ENABLE(aspell,
370 [ --disable-aspell Disable GNU/aspell support [default=yes]],
371 [ac_cv_enable_aspell=$enableval], [ac_cv_enable_aspell=yes])
372 AC_MSG_CHECKING([whether to use GNU/aspell])
373 if test $ac_cv_enable_aspell = yes; then
375 AM_PATH_ASPELL(0.50, AC_DEFINE(USE_ASPELL, 1, Define if you use ASPELL to support spell checking),
376 [use_aspell=no ac_cv_enable_aspell=no])
381 dnl want crash dialog
382 AC_ARG_ENABLE(crash-dialog,
383 [ --enable-crash-dialog Enable crash dialog [default=no]],
384 [ac_cv_enable_crash_dialog=$enableval], [ac_cv_enable_crash_dialog=no])
385 if test $ac_cv_enable_crash_dialog = yes; then
386 dnl check if GDB is somewhere
387 AC_CHECK_PROG(ac_cv_enable_crash_dialog, gdb, yes, no)
388 AC_MSG_CHECKING([whether to use crash dialog])
389 if test $ac_cv_enable_crash_dialog = yes; then
390 AC_DEFINE(CRASH_DIALOG, 1, Pop up crash dialog)
392 AC_MSG_RESULT($ac_cv_enable_crash_dialog)
395 dnl Check for X-Face support
396 AC_ARG_ENABLE(compface,
397 [ --disable-compface Do not use compface (X-Face)],
398 [ac_cv_enable_compface=$enableval], [ac_cv_enable_compface=yes])
399 AC_MSG_CHECKING([whether to use compface])
400 if test x"$ac_cv_enable_compface" = xyes; then
402 AC_CHECK_LIB(compface, uncompface,
403 [AC_DEFINE(HAVE_LIBCOMPFACE, 1, Define if you want compface support.)],
404 [ac_cv_enable_compface=no])
405 if test x"$ac_cv_enable_compface" = xyes; then
406 COMPFACE_LIBS="-lcompface"
410 AC_SUBST(COMPFACE_LIBS)
415 dnl check for pthread support
416 AC_ARG_ENABLE(pthread,
417 [ --disable-pthread Disable pthread support],
418 [ac_cv_enable_pthread=$enableval], [ac_cv_enable_pthread=yes])
419 AC_MSG_CHECKING([whether to use pthread])
420 if test x$ac_cv_enable_pthread = xno; then
425 AC_CHECK_LIB(pthread, pthread_create, :, ac_cv_enable_pthread=no)
426 AC_CHECK_HEADERS(pthread.h, :, ac_cv_enable_pthread=no)
428 if test x$ac_cv_enable_pthread = xyes; then
429 AC_DEFINE(USE_PTHREAD, 1, Define if you have pthread)
430 PTHREAD_LIBS="-lpthread"
434 AC_SUBST(PTHREAD_LIBS)
438 ac_cv_var__res_options=no
439 AC_TRY_LINK([#include <sys/types.h>
440 #include <sys/socket.h>
441 #include <netinet/in.h>
442 #include <arpa/nameser.h>
443 #include <resolv.h>],
444 [_res.options = RES_INIT;],
445 ac_cv_var__res_options=yes);
446 if test "$ac_cv_var__res_options" != "yes"; then
451 if test "x$LIBRESOLV" = "x"; then
452 AC_CHECK_LIB(resolv, res_query, [LIBRESOLV=-lresolv])
457 LIBS="$LIBS $LIBRESOLV"
459 dnl for LDAP support in addressbook
460 dnl no check for libraries; dynamically loaded
462 [ --disable-ldap Do not build LDAP support [default=yes]],
463 [ac_cv_enable_ldap=$enableval], [ac_cv_enable_ldap=yes])
464 AC_MSG_CHECKING([whether to use LDAP])
465 if test x"$ac_cv_enable_ldap" = xno; then
467 elif test x"$ac_cv_enable_ldap" = xyes -a x"$ac_cv_enable_pthread" = xno; then
468 AC_MSG_RESULT(no - LDAP support needs pthread support)
474 dnl check for available libraries, and pull them in
475 AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="$LDAP_LIBS -lresolv")
476 AC_CHECK_LIB(socket, bind, LDAP_LIBS="$LDAP_LIBS -lsocket")
477 AC_CHECK_LIB(nsl, gethostbyaddr, LDAP_LIBS="$LDAP_LIBS -lnsl")
478 AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="$LDAP_LIBS -llber",,
481 AC_CHECK_HEADERS(ldap.h lber.h,
482 [ ac_cv_enable_ldap=yes ],
483 [ ac_cv_enable_ldap=no ])
485 if test "$ac_cv_enable_ldap" = yes; then
486 AC_CHECK_LIB(ldap, ldap_open,
487 [ ac_cv_enable_ldap=yes ],
488 [ ac_cv_enable_ldap=no ],
491 AC_CHECK_LIB(ldap, ldap_start_tls_s,
492 [ ac_cv_have_tls=yes ],
493 [ ac_cv_have_tls=no ])
497 AC_MSG_CHECKING([whether ldap library is available])
498 AC_MSG_RESULT($ac_cv_enable_ldap)
500 AC_MSG_CHECKING([whether TLS library is available])
501 AC_MSG_RESULT($ac_cv_have_tls)
503 if test "$ac_cv_enable_ldap" = yes; then
504 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
505 LDAP_LIBS="$LDAP_LIBS -lldap"
507 if test "$ac_cv_have_tls" = yes; then
508 AC_DEFINE(USE_LDAP_TLS, 1, Define if you want LDAP TLS support in addressbook.)
513 dnl for JPilot support in addressbook
514 dnl no check for libraries; these are dynamically loaded
515 AC_ARG_ENABLE(jpilot,
516 [ --disable-jpilot Enable JPilot support [default=yes]],
517 [ac_cv_enable_jpilot=$enableval], [ac_cv_enable_jpilot=yes])
518 AC_MSG_CHECKING([whether to use JPilot])
519 if test "$ac_cv_enable_jpilot" = yes; then
521 AC_CHECK_HEADERS(pi-args.h pi-appinfo.h pi-address.h,
522 [ AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ],
523 [ ac_cv_enable_jpilot=no ])
524 if test "$ac_cv_enable_jpilot" = no; then
525 AC_CHECK_HEADERS(libpisock/pi-args.h libpisock/pi-appinfo.h libpisock/pi-address.h,
526 [ ac_cv_enable_jpilot=yes
527 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ])
530 AC_CHECK_LIB(pisock, unpack_Address, [JPILOT_LIBS="-lpisock"], [JPILOT_LIBS="" ac_cv_enable_jpilot="no"])
531 if test x"$ac_cv_enable_jpilot" = xyes; then
532 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.)
534 AC_MSG_NOTICE([JPilot support not available])
536 AC_SUBST(JPILOT_LIBS)
541 dnl #######################################################################
542 dnl # Check for startup notification
543 dnl #######################################################################
544 AC_ARG_ENABLE(startup-notification, [ --disable-startup-notification compile without startup notification support],,enable_startup_notification=yes)
546 if test "x$enable_startup_notification" = "xyes"; then
547 PKG_CHECK_MODULES(STARTUP_NOTIFICATION, libstartup-notification-1.0 >= 0.5,
549 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, [Define if we're using libstartup-notification.])
550 echo "Building with libstartup-notification"
551 enable_startup_notification=yes
554 echo "Building without libstartup-notification"
555 enable_startup_notification=no
558 AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
559 AC_SUBST(STARTUP_NOTIFICATION_LIBS)
562 dnl *************************
563 dnl ** section for plugins **
564 dnl *************************
569 AC_MSG_CHECKING([whether to build Trayicon plugin])
570 AC_ARG_ENABLE(trayicon-plugin,
571 [ --disable-trayicon-plugin Do not build System Tray Icon plugin],
572 [ac_cv_enable_trayicon_plugin=$enableval], [ac_cv_enable_trayicon_plugin=yes])
573 if test x"$ac_cv_enable_trayicon_plugin" = xyes; then
575 PLUGINS="trayicon $PLUGINS"
579 AM_CONDITIONAL(BUILD_TRAYICON_PLUGIN, test x"$ac_cv_enable_trayicon_plugin" = xyes)
581 dnl --- SpamAssassin ---
582 AC_MSG_CHECKING([whether to build SpamAssassin plugin])
583 AC_ARG_ENABLE(spamassassin-plugin,
584 [ --enable-spamassassin-plugin Build SpamAssassin plugin [default=no]],
585 [ac_cv_enable_spamassassin_plugin=$enableval], [ac_cv_enable_spamassassin_plugin=no])
586 if test x"$ac_cv_enable_spamassassin_plugin" = xyes; then
589 PLUGINS="spamassassin $PLUGINS"
593 AM_CONDITIONAL(BUILD_SPAMASSASSIN_PLUGIN, test x"$ac_cv_enable_spamassassin_plugin" = xyes)
596 AC_MSG_CHECKING([whether to build PGP/CORE plugin])
597 AC_ARG_ENABLE(pgpcore-plugin,
598 [ --disable-pgpcore-plugin Do not build PGP/Core plugin],
599 [ac_cv_enable_pgpcore_plugin=$enableval], [ac_cv_enable_pgpcore_plugin=yes])
600 if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
602 AM_PATH_GPGME(0.4.5, AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.),
603 [ac_cv_enable_pgpcore_plugin=no])
604 if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
605 PLUGINS="pgpcore $PLUGINS"
607 AC_MSG_WARN([*** PGP/CORE plugin will not be built ***])
612 AM_CONDITIONAL(BUILD_PGPCORE_PLUGIN, test x"$ac_cv_enable_pgpcore_plugin" = xyes)
614 AC_MSG_CHECKING([whether to build PGP/MIME plugin])
615 AC_ARG_ENABLE(pgpmime-plugin,
616 [ --disable-pgpmime-plugin Do not build PGP/MIME plugin],
617 [ac_cv_enable_pgpmime_plugin=$enableval], [ac_cv_enable_pgpmime_plugin=yes])
618 if test x"$ac_cv_enable_pgpmime_plugin" = xyes; then
620 if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
621 PLUGINS="pgpmime $PLUGINS"
623 AC_MSG_WARN([*** PGP/MIME plugin cannot be built ***])
624 AC_MSG_WARN([*** without the PGP/CORE plugin ***])
629 AM_CONDITIONAL(BUILD_PGPMIME_PLUGIN, test x"$ac_cv_enable_pgpmime_plugin" = xyes)
631 AC_MSG_CHECKING([whether to build PGP/Inline plugin])
632 AC_ARG_ENABLE(pgpinline-plugin,
633 [ --disable-pgpinline-plugin Do not build PGP/Inline plugin],
634 [ac_cv_enable_pgpinline_plugin=$enableval], [ac_cv_enable_pgpinline_plugin=yes])
635 if test x"$ac_cv_enable_pgpinline_plugin" = xyes; then
637 if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
638 PLUGINS="pgpinline $PLUGINS"
640 AC_MSG_WARN([*** PGP/Inline plugin cannot be built ***])
641 AC_MSG_WARN([*** without the PGP/CORE plugin ***])
646 AM_CONDITIONAL(BUILD_PGPINLINE_PLUGIN, test x"$ac_cv_enable_pgpinline_plugin" = xyes)
648 dnl --- MathML Viewer ---
649 AC_MSG_CHECKING([whether to build MathML-Viewer plugin])
650 AC_ARG_ENABLE(mathml-viewer-plugin,
651 [ --disable-mathml-viewer-plugin Do not build MathML-Viewer plugin],
652 [ac_cv_enable_mathml_viewer_plugin=$enableval], [ac_cv_enable_mathml_viewer_plugin=yes])
653 if test x"$ac_cv_enable_mathml_viewer_plugin" = xyes; then
655 PKG_CHECK_MODULES(GTK_MATH_VIEW, gtkmathview >= 0.5, :, ac_cv_enable_mathml_viewer_plugin=no)
657 if test x"$ac_cv_enable_mathml_viewer_plugin" = xyes; then
659 PLUGINS="mathml-viewer $PLUGINS"
661 AC_MSG_RESULT(not found)
662 AC_MSG_WARN([*** MathML-Viewer plugin will not be built ***])
667 AC_SUBST(GTK_MATH_VIEW_CFLAGS)
668 AC_SUBST(GTK_MATH_VIEW_LIBS)
669 AM_CONDITIONAL(BUILD_MATHML_VIEWER_PLUGIN, test x"$ac_cv_enable_mathml_viewer_plugin" = xyes)
671 dnl --- Dillo Viewer ---
672 AC_MSG_CHECKING([whether to build Dillo plugin])
673 AC_ARG_ENABLE(dillo-viewer-plugin,
674 [ --disable-dillo-viewer-plugin Do not build Dillo plugin for html mail rendering],
675 [ac_cv_enable_dillo_viewer_plugin=$enableval], [ac_cv_enable_dillo_viewer_plugin=yes])
676 if test x"$ac_cv_enable_dillo_viewer_plugin" = xyes; then
678 PLUGINS="dillo-viewer $PLUGINS"
682 AM_CONDITIONAL(BUILD_DILLO_VIEWER_PLUGIN, test x"$ac_cv_enable_dillo_viewer_plugin" = xyes)
685 AC_ARG_ENABLE(demo-plugin,
686 [ --enable-demo-plugin Build demo plugin [default=no]],
687 [ac_cv_enable_demo_plugin=$enableval], [ac_cv_enable_demo_plugin=no])
688 if test x"$ac_cv_enable_demo_plugin" = xyes; then
689 PLUGINS="demo $PLUGINS"
691 AM_CONDITIONAL(BUILD_DEMO_PLUGIN, test x"$ac_cv_enable_demo_plugin" = xyes)
694 AC_MSG_CHECKING([whether to build ClamAV plugin])
695 AC_ARG_ENABLE(clamav-plugin,
696 [ --disable-clamav-plugin Do not build Clam AntiVirus plugin],
697 [ac_cv_enable_clamav_plugin=$enableval], [ac_cv_enable_clamav_plugin=yes])
698 if test x"$ac_cv_enable_clamav_plugin" = xyes; then
700 PKG_CHECK_MODULES(CLAMAV, libclamav, ac_cv_enable_clamav_plugin=yes,
701 ac_cv_enable_clamav_plugin=no)
702 if test x"$ac_cv_enable_clamav_plugin" = xyes; then
703 PLUGINS="clamav $PLUGINS"
705 AC_MSG_RESULT(not found)
706 AC_MSG_WARN([*** ClamAV plugin will not be built ***])
711 AC_SUBST(CLAMAV_LIBS)
712 AM_CONDITIONAL(BUILD_CLAMAV_PLUGIN, test x"$ac_cv_enable_clamav_plugin" = xyes)
715 AC_MSG_CHECKING([whether to use libetpan])
716 AC_ARG_ENABLE(libetpan,
717 [ --disable-libetpan Do not compile IMAP4 support with libetpan],
718 [ac_cv_enable_libetpan=$enableval], [ac_cv_enable_libetpan=yes])
719 if test x"$ac_cv_enable_libetpan" = xyes; then
722 AC_PATH_PROG(libetpanconfig, [libetpan-config])
723 if test "x$libetpanconfig" != "x"; then
724 CPPFLAGS="$CPPFLAGS `$libetpanconfig --cflags 2>/dev/null`"
725 AC_CHECK_HEADER(libetpan/libetpan.h, [libetpan_result=yes])
726 if test "x$libetpan_result" = "xyes"; then
727 AC_MSG_CHECKING([whether libetpan-config hints compiles and links fine])
728 LDFLAGS="$LDFLAGS `$libetpanconfig --libs 2>/dev/null`"
729 AC_TRY_LINK([#include <libetpan/dbstorage.h>], [db_mailstorage_init(NULL, NULL);], [libetpan_result=yes], [libetpan_result=no])
730 AC_MSG_RESULT([$libetpan_result])
733 if test "x$libetpan_result" = "xyes"; then
734 LIBETPAN_CPPFLAGS="`$libetpanconfig --cflags`"
735 LIBETPAN_LIBS="`$libetpanconfig --libs`"
736 LIBETPAN_VERSION=`$libetpanconfig --version | sed "s/\.//g" | sed "s/-.*$//"`
737 if test "$LIBETPAN_VERSION" -lt "038"; then
738 AC_MSG_ERROR([Sylpheed requires libetpan 0.39 or newer. See http://www.etpan.org/])
739 AC_MSG_ERROR([You can use --disable-libetpan if you don't need IMAP4 support.])
741 AC_SUBST(LIBETPAN_FLAGS)
742 AC_SUBST(LIBETPAN_LIBS)
743 AC_DEFINE(HAVE_LIBETPAN, 1, Define if you want IMAP support.)
745 AC_MSG_ERROR([Sylpheed requires libetpan 0.38 or newer. See http://www.etpan.org/ ])
746 AC_MSG_ERROR([You can use --disable-libetpan if you don't need IMAP4 support.])
753 AC_MSG_CHECKING([whether to use libgnomeprint])
754 AC_ARG_ENABLE(gnomeprint,
755 [ --disable-gnomeprint Do not use libgnomeprint for printing],
756 [ac_cv_enable_gnomeprint=$enableval], [ac_cv_enable_gnomeprint=yes])
757 if test x$ac_cv_enable_gnomeprint = xyes; then
759 PKG_CHECK_MODULES(GNOMEPRINT, libgnomeprint-2.2 libgnomeprintui-2.2,
760 ac_cv_enable_gnomeprint=yes, ac_cv_enable_gnomeprint=no)
761 if test x"$ac_cv_enable_gnomeprint" = xyes; then
762 AC_DEFINE(USE_GNOMEPRINT, 1, Define if you want libgnomeprint support)
764 AC_MSG_RESULT(not found)
765 AC_MSG_WARN([*** libgnomeprintui wasn't found ***])
766 AC_MSG_WARN([*** using built-in printing support ***])
771 AM_CONDITIONAL(SYLPHEED_GNOMEPRINT, test x"$ac_cv_enable_gnomeprint" = x"yes")
773 dnl ****************************
774 dnl ** Final configure output **
775 dnl ****************************
785 src/common/passcrypt.h
789 src/plugins/demo/Makefile
790 src/plugins/spamassassin/Makefile
791 src/plugins/mathml_viewer/Makefile
792 src/plugins/dillo_viewer/Makefile
793 src/plugins/trayicon/Makefile
794 src/plugins/trayicon/libeggtrayicon/Makefile
795 src/plugins/clamav/Makefile
796 src/plugins/pgpcore/Makefile
797 src/plugins/pgpmime/Makefile
798 src/plugins/pgpinline/Makefile
808 doc/manual/de/Makefile
809 doc/manual/en/Makefile
810 doc/manual/es/Makefile
811 doc/manual/fr/Makefile
812 doc/manual/ja/Makefile
818 dnl Output the configuration summary
820 echo "$PACKAGE $VERSION"
822 echo "JPilot : $ac_cv_enable_jpilot"
823 echo "LDAP : $ac_cv_enable_ldap"
824 echo "OpenSSL : $ac_cv_enable_openssl"
825 echo "iconv : $am_cv_func_iconv"
826 echo "compface : $ac_cv_enable_compface"
827 echo "IPv6 : $ac_cv_enable_ipv6"
828 echo "GNU/aspell : $ac_cv_enable_aspell"
829 echo "IMAP4 : $ac_cv_enable_libetpan"
830 echo "Crash dialog : $ac_cv_enable_crash_dialog"
831 echo "libgnomeprint : $ac_cv_enable_gnomeprint"
832 echo "Plugins : $PLUGINS"
833 echo "Config dir : $ac_cv_with_config_dir"
835 echo "The binary will be installed in $prefix/bin"
837 echo "Configure finished, type 'make' to build."