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.
90 SYLPHEED_ACLOCAL_INCLUDE(m4)
92 dnl ******************************
94 dnl Not needed anymore because we
95 dnl do AC_CANONICAL_SYSTEM above
96 dnl ******************************
99 dnl Copied from the official gtk+-2 configure.in
100 AC_MSG_CHECKING([for some Win32 platform])
102 *-*-mingw*|*-*-cygwin*)
104 LDFLAGS="$LDFLAGS -mwindows"
110 AC_MSG_RESULT([$platform_win32])
111 AM_CONDITIONAL(PLATFORM_WIN32, test x"$platform_win32" = x"yes")
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 AC_MSG_CHECKING([for Cygwin])
134 AC_MSG_RESULT([$env_cygwin])
135 AM_CONDITIONAL(CYGWIN, test x"$env_cygwin" = x"yes")
137 CFLAGS="$CFLAGS -Wall"
142 CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
145 # Note that we need to link to pthreadGC2 in all cases. This
146 # is because some locking is used even when pthread support is
148 pthread_name=pthreadGC2
149 CFLAGS="$CFLAGS -mms-bitfields"
150 LIBS="$LIBS -l${pthread_name} -lws2_32 -lregex"
158 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
161 LIBS="$LIBS $GTK_LIBS"
162 AC_CHECK_FUNCS(bind_textdomain_codeset)
166 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"
167 GETTEXT_PACKAGE=sylpheed-claws
168 AC_SUBST(GETTEXT_PACKAGE)
169 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define text domain.])
171 AM_GNU_GETTEXT_VERSION([0.14.5])
172 AM_GNU_GETTEXT([external])
174 if test "x${DATADIRNAME}" = "x"; then
176 AC_SUBST(DATADIRNAME)
179 mandir='${prefix}/${DATADIRNAME}/man'
181 [ --with-mandir=DIR man directory],
185 localedir='${prefix}/${DATADIRNAME}/locale'
186 AC_ARG_WITH(localedir,
187 [ --with-localedir=DIR Locale directory],
188 [localedir="$withval"])
191 manualdir='${prefix}/${DATADIRNAME}/${PACKAGE}/manual'
192 AC_ARG_WITH(manualdir,
193 [ --with-manualdir=DIR Manual directory],
194 [manualdir="$withval"])
197 AC_ARG_ENABLE(manual,
198 [ --disable-manual Disable manual support],
199 [ac_cv_enable_manual=$enableval], [ac_cv_enable_manual=yes])
201 AM_CONDITIONAL(BUILD_MANUAL, test x"$ac_cv_enable_manual" = xyes)
203 dnl Set PACKAGE_DATA_DIR in config.h.
204 if test "x${prefix}" = "xNONE"; then
205 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${ac_default_prefix}/${DATADIRNAME}/${PACKAGE}", PACKAGE_DATA_DIR)
207 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/${DATADIRNAME}/${PACKAGE}", PACKAGE_DATA_DIR)
210 AC_CHECK_LIB(xpg4, setlocale)
212 dnl for GThread support (currently disabled)
213 dnl AC_ARG_ENABLE(threads,
214 dnl [ --enable-threads Enable multithread support [default=no]],
215 dnl [use_threads=$enableval], [use_threads=no])
217 AC_MSG_CHECKING([whether to use threads])
218 if test x"$use_threads" = xyes ; then
220 if test ! -z `$GLIB_CONFIG --help 2>&1 |grep 'gthread'` ; then
221 CFLAGS="$CFLAGS `$GLIB_CONFIG --cflags gthread`"
222 LIBS="$LIBS `$GLIB_CONFIG --libs gthread`"
223 AC_DEFINE(USE_THREADS, 1, Whether to use multithread or not)
225 AC_MSG_ERROR([Sylpheed requires GThread from GLib to use threading.])
231 dnl Check for d_type member in struct dirent
232 AC_MSG_CHECKING([whether struct dirent has d_type member])
233 AC_CACHE_VAL(ac_cv_dirent_d_type,[
234 AC_TRY_COMPILE([#include <dirent.h>],
235 [struct dirent d; d.d_type = DT_REG;],
236 ac_cv_dirent_d_type=yes, ac_cv_dirent_d_type=no)
238 AC_MSG_RESULT($ac_cv_dirent_d_type)
239 if test $ac_cv_dirent_d_type = yes; then
240 AC_DEFINE(HAVE_DIRENT_D_TYPE, 1,
241 Define if `struct dirent' has `d_type' member.)
244 # Check whether mkdir does not take the permission argument.
245 GNUPG_FUNC_MKDIR_TAKES_ONE_ARG
247 dnl Checks for header files.
251 AC_CHECK_HEADERS(fcntl.h sys/file.h unistd.h paths.h \
252 sys/param.h sys/utsname.h sys/select.h \
253 wchar.h wctype.h locale.h netdb.h)
255 dnl alf - Check for apache installation f*ck up. apache may also install an
256 dnl fnmatch, which includes their own regex stuff if USE_HSREGEX is defined
257 AC_TRY_COMPILE([#include <stdlib.h>
258 #include <fnmatch.h>],
259 [int x = USE_HSREGEX;],
260 ac_cv_have_apache_fnmatch=yes, ac_cv_have_apache_fnmatch=no)
261 if test $ac_cv_have_apache_fnmatch = yes; then
262 AC_DEFINE(HAVE_APACHE_FNMATCH, 1, Define if you need to work around apache regex/fnmatch !KLUDGE!)
264 AC_MSG_CHECKING([whether to use Apache regex header kludge])
265 AC_MSG_RESULT($ac_cv_have_apache_fnmatch)
267 dnl Checks for typedefs, structures, and compiler characteristics.
274 dnl AC_CHECK_TYPE(wint_t, unsigned int) does not work because wint_t
275 dnl may be defined only in wchar.h (this happens with gcc-2.96).
276 dnl So we need to use this extended macro.
277 SYLPHEED_CHECK_TYPE(wint_t, unsigned int,
282 ], Define to `unsigned int' if <stddef.h> or <wchar.h> doesn't define.)
284 GNUPG_CHECK_TYPEDEF(u32, HAVE_U32_TYPEDEF, Used to test for a u32 typedef)
285 AC_CHECK_SIZEOF(unsigned short, 2)
286 AC_CHECK_SIZEOF(unsigned int, 4)
287 AC_CHECK_SIZEOF(unsigned long, 4)
289 dnl Checks for library functions.
291 AC_CHECK_FUNCS(gethostname mkdir mktime socket strstr strchr \
292 wcsstr wcswcs iswalnum iswspace towlower \
293 wcslen wcscpy wcsncpy \
294 uname flock lockf inet_aton inet_addr \
295 fchmod mkstemp truncate getuid regcomp)
297 dnl *****************
298 dnl ** common code **
299 dnl *****************
302 AM_PATH_GLIB_2_0(2.0.0,,
303 AC_MSG_ERROR(Test for GLIB failed. See the file 'INSTALL' for help.),
304 gmodule gobject gthread)
306 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
308 LIBS="$LIBS $GTK_LIBS"
309 AC_CHECK_FUNCS(bind_textdomain_codeset)
312 dnl check for IPv6 option
314 [ --disable-ipv6 Disable IPv6 support],
315 [ac_cv_enable_ipv6=$enableval], [ac_cv_enable_ipv6=yes])
317 dnl automated checks for IPv6 support.
318 AC_MSG_CHECKING([whether to use IPv6])
319 if test x"$ac_cv_enable_ipv6" = xyes; then
321 AC_MSG_CHECKING([for IPv6 support])
322 AC_CACHE_VAL(ac_cv_ipv6,[
323 AC_TRY_COMPILE([#define INET6
324 #include <sys/types.h>
325 #include <netinet/in.h>],
326 [int x = IPPROTO_IPV6; struct in6_addr a;],
327 ac_cv_ipv6=yes, ac_cv_ipv6=no)
329 AC_MSG_RESULT($ac_cv_ipv6)
330 if test $ac_cv_ipv6 = yes; then
331 AC_DEFINE(INET6, 1, Define if you want IPv6 support.)
333 AC_MSG_WARN(*** IPv6 will not be supported ***)
340 dnl Check for OpenSSL
341 AC_ARG_ENABLE(openssl,
342 [ --disable-openssl Do not use OpenSSL for SSL support.],
343 [ac_cv_enable_openssl=$enableval], [ac_cv_enable_openssl=yes])
344 AC_MSG_CHECKING([whether to use OpenSSL])
345 if test x"$ac_cv_enable_openssl" = xyes; then
347 PKG_CHECK_MODULES(OPENSSL, openssl >= 0.9.7, :, ac_cv_enable_openssl=no)
348 if test x$ac_cv_enable_openssl = xyes; then
349 AC_DEFINE(USE_OPENSSL, 1, Define if you want OpenSSL support)
351 AC_MSG_RESULT(not found)
352 AC_MSG_WARN([*** OpenSSL will not be supported ***])
357 AC_SUBST(OPENSSL_CFLAGS)
358 AC_SUBST(OPENSSL_LIBS)
360 dnl password encryption
365 AC_SEARCH_LIBS(encrypt, cipher, [], AC_MSG_ERROR(['encrypt'-function not found.]))
368 AC_SEARCH_LIBS(encrypt, crypt, [], AC_MSG_ERROR(['encrypt'-function not found.]))
375 AC_ARG_WITH(passcrypt-key, [ --with-passcrypt-key=KEY Key used to encode passwords (8 byte string)],
376 with_passcrypt_key="$withval", with_passcrypt_key="passkey0")
377 AC_SUBST(PASSCRYPT_KEY, $with_passcrypt_key)
379 dnl RC dir (will be default at a certain point in time)
380 AC_ARG_WITH(config-dir, [ --with-config-dir=RCDIR Local configuration dir (default: .sylpheed-claws)],
381 ac_cv_with_config_dir="$withval", ac_cv_with_config_dir=".sylpheed-claws")
382 if test x"$ac_cv_with_config_dir" = x""; then
383 ac_cv_with_config_dir=".sylpheed-claws"
385 AC_DEFINE_UNQUOTED(CFG_RC_DIR, "$ac_cv_with_config_dir", Configuration directory)
387 dnl ************************
388 dnl ** GTK user interface **
389 dnl ************************
392 AM_PATH_GTK_2_0(2.4.0,,
393 AC_MSG_ERROR(Test for GTK failed. See the file 'INSTALL' for help.))
395 dnl --disable-deprecated switch for GTK2 purification
396 AC_ARG_ENABLE(deprecated, [ --disable-deprecated Disable deprecated GTK functions. ],
397 [GTK_CFLAGS="$GTK_CFLAGS -DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"], [])
402 dnl GNU/Aspell is used for spell checking
403 AC_ARG_ENABLE(aspell,
404 [ --disable-aspell Disable GNU/aspell support [default=yes]],
405 [ac_cv_enable_aspell=$enableval], [ac_cv_enable_aspell=yes])
406 AC_MSG_CHECKING([whether to use GNU/aspell])
407 if test $ac_cv_enable_aspell = yes; then
409 AM_PATH_ASPELL(0.50, AC_DEFINE(USE_ASPELL, 1, Define if you use ASPELL to support spell checking),
410 [use_aspell=no ac_cv_enable_aspell=no])
415 dnl want crash dialog
416 AC_ARG_ENABLE(crash-dialog,
417 [ --enable-crash-dialog Enable crash dialog [default=no]],
418 [ac_cv_enable_crash_dialog=$enableval], [ac_cv_enable_crash_dialog=no])
419 if test $ac_cv_enable_crash_dialog = yes; then
420 dnl check if GDB is somewhere
421 AC_CHECK_PROG(ac_cv_enable_crash_dialog, gdb, yes, no)
422 AC_MSG_CHECKING([whether to use crash dialog])
423 if test $ac_cv_enable_crash_dialog = yes; then
424 AC_DEFINE(CRASH_DIALOG, 1, Pop up crash dialog)
426 AC_MSG_RESULT($ac_cv_enable_crash_dialog)
429 dnl Check for X-Face support
430 AC_ARG_ENABLE(compface,
431 [ --disable-compface Do not use compface (X-Face)],
432 [ac_cv_enable_compface=$enableval], [ac_cv_enable_compface=yes])
433 AC_MSG_CHECKING([whether to use compface])
434 if test x"$ac_cv_enable_compface" = xyes; then
436 AC_CHECK_LIB(compface, uncompface,
437 [AC_DEFINE(HAVE_LIBCOMPFACE, 1, Define if you want compface support.)],
438 [ac_cv_enable_compface=no])
439 if test x"$ac_cv_enable_compface" = xyes; then
440 COMPFACE_LIBS="-lcompface"
444 AC_SUBST(COMPFACE_LIBS)
449 dnl check for pthread support
450 AC_ARG_ENABLE(pthread,
451 [ --disable-pthread Disable pthread support],
452 [ac_cv_enable_pthread=$enableval], [ac_cv_enable_pthread=yes])
453 AC_MSG_CHECKING([whether to use pthread])
454 if test x$ac_cv_enable_pthread = xno; then
459 # For W32 we need to use a special ptrhead lib. In this case we can't
460 # use AC_CHECK_LIB because it has no means of checking for a
461 # library installed under a different name. Checking for the
463 if test -n "${pthread_name}" ; then
464 ac_cv_enable_pthread=yes
466 AC_CHECK_LIB(pthread, pthread_create, :, ac_cv_enable_pthread=no)
468 AC_CHECK_HEADERS(pthread.h, :, ac_cv_enable_pthread=no)
470 if test x$ac_cv_enable_pthread = xyes; then
471 AC_DEFINE(USE_PTHREAD, 1, Define if you have pthread)
472 if test -z "${pthread_name}" ; then
473 PTHREAD_LIBS="-lpthread"
478 AC_SUBST(PTHREAD_LIBS)
481 dnl Check whether we need to pass -lresolv
482 dnl We know that we don't need it for W32.
484 if test x$os_win32 = xno; then
487 ac_cv_var__res_options=no
488 AC_TRY_LINK([#include <sys/types.h>
489 #include <sys/socket.h>
490 #include <netinet/in.h>
491 #include <arpa/nameser.h>
492 #include <resolv.h>],
493 [_res.options = RES_INIT;],
494 ac_cv_var__res_options=yes);
495 if test "$ac_cv_var__res_options" != "yes"; then
500 if test "x$LIBRESOLV" = "x"; then
501 AC_CHECK_LIB(resolv, res_query, [LIBRESOLV=-lresolv])
507 LIBS="$LIBS $LIBRESOLV"
509 dnl for LDAP support in addressbook
510 dnl no check for libraries; dynamically loaded
512 [ --disable-ldap Do not build LDAP support [default=yes]],
513 [ac_cv_enable_ldap=$enableval], [ac_cv_enable_ldap=yes])
514 AC_MSG_CHECKING([whether to use LDAP])
515 if test x"$ac_cv_enable_ldap" = xno; then
517 elif test x"$ac_cv_enable_ldap" = xyes -a x"$ac_cv_enable_pthread" = xno; then
518 AC_MSG_RESULT(no - LDAP support needs pthread support)
524 dnl check for available libraries, and pull them in
525 AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="$LDAP_LIBS -lresolv")
526 AC_CHECK_LIB(socket, bind, LDAP_LIBS="$LDAP_LIBS -lsocket")
527 AC_CHECK_LIB(nsl, gethostbyaddr, LDAP_LIBS="$LDAP_LIBS -lnsl")
528 AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="$LDAP_LIBS -llber",,
531 AC_CHECK_HEADERS(ldap.h lber.h,
532 [ ac_cv_enable_ldap=yes ],
533 [ ac_cv_enable_ldap=no ])
535 if test "$ac_cv_enable_ldap" = yes; then
536 AC_CHECK_LIB(ldap, ldap_open,
537 [ ac_cv_enable_ldap=yes ],
538 [ ac_cv_enable_ldap=no ],
541 AC_CHECK_LIB(ldap, ldap_start_tls_s,
542 [ ac_cv_have_tls=yes ],
543 [ ac_cv_have_tls=no ])
547 AC_MSG_CHECKING([whether ldap library is available])
548 AC_MSG_RESULT($ac_cv_enable_ldap)
550 AC_MSG_CHECKING([whether TLS library is available])
551 AC_MSG_RESULT($ac_cv_have_tls)
553 if test "$ac_cv_enable_ldap" = yes; then
554 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
555 LDAP_LIBS="$LDAP_LIBS -lldap"
557 if test "$ac_cv_have_tls" = yes; then
558 AC_DEFINE(USE_LDAP_TLS, 1, Define if you want LDAP TLS support in addressbook.)
563 dnl for JPilot support in addressbook
564 dnl no check for libraries; these are dynamically loaded
565 AC_ARG_ENABLE(jpilot,
566 [ --disable-jpilot Enable JPilot support [default=yes]],
567 [ac_cv_enable_jpilot=$enableval], [ac_cv_enable_jpilot=yes])
568 AC_MSG_CHECKING([whether to use JPilot])
569 if test "$ac_cv_enable_jpilot" = yes; then
571 AC_CHECK_HEADERS(pi-args.h pi-appinfo.h pi-address.h,
572 [ AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ],
573 [ ac_cv_enable_jpilot=no ])
574 if test "$ac_cv_enable_jpilot" = no; then
575 AC_CHECK_HEADERS(libpisock/pi-args.h libpisock/pi-appinfo.h libpisock/pi-address.h,
576 [ ac_cv_enable_jpilot=yes
577 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ])
580 AC_CHECK_LIB(pisock, unpack_Address, [JPILOT_LIBS="-lpisock"], [JPILOT_LIBS="" ac_cv_enable_jpilot="no"])
581 if test x"$ac_cv_enable_jpilot" = xyes; then
582 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.)
584 AC_MSG_NOTICE([JPilot support not available])
586 AC_SUBST(JPILOT_LIBS)
591 dnl #######################################################################
592 dnl # Check for startup notification
593 dnl #######################################################################
594 AC_ARG_ENABLE(startup-notification, [ --disable-startup-notification compile without startup notification support],,enable_startup_notification=yes)
596 if test "x$enable_startup_notification" = "xyes"; then
597 PKG_CHECK_MODULES(STARTUP_NOTIFICATION, libstartup-notification-1.0 >= 0.5,
599 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, [Define if we're using libstartup-notification.])
600 echo "Building with libstartup-notification"
601 enable_startup_notification=yes
604 echo "Building without libstartup-notification"
605 enable_startup_notification=no
608 AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
609 AC_SUBST(STARTUP_NOTIFICATION_LIBS)
612 dnl *************************
613 dnl ** section for plugins **
614 dnl *************************
619 AC_MSG_CHECKING([whether to build Trayicon plugin])
620 AC_ARG_ENABLE(trayicon-plugin,
621 [ --disable-trayicon-plugin Do not build System Tray Icon plugin],
622 [ac_cv_enable_trayicon_plugin=$enableval], [ac_cv_enable_trayicon_plugin=yes])
623 if test x"$ac_cv_enable_trayicon_plugin" = xyes; then
625 PLUGINS="trayicon $PLUGINS"
629 AM_CONDITIONAL(BUILD_TRAYICON_PLUGIN, test x"$ac_cv_enable_trayicon_plugin" = xyes)
631 dnl --- SpamAssassin ---
632 AC_MSG_CHECKING([whether to build SpamAssassin plugin])
633 AC_ARG_ENABLE(spamassassin-plugin,
634 [ --disable-spamassassin-plugin Build SpamAssassin plugin [default=yes]],
635 [ac_cv_enable_spamassassin_plugin=$enableval], [ac_cv_enable_spamassassin_plugin=yes])
636 if test x"$ac_cv_enable_spamassassin_plugin" = xyes; then
639 PLUGINS="spamassassin $PLUGINS"
640 AC_DEFINE(USE_SPAMASSASSIN_PLUGIN, 1, Define if spamassassin plugin is being build.)
644 AM_CONDITIONAL(BUILD_SPAMASSASSIN_PLUGIN, test x"$ac_cv_enable_spamassassin_plugin" = xyes)
647 AC_MSG_CHECKING([whether to build PGP/CORE plugin])
648 AC_ARG_ENABLE(pgpcore-plugin,
649 [ --disable-pgpcore-plugin Do not build PGP/Core plugin],
650 [ac_cv_enable_pgpcore_plugin=$enableval], [ac_cv_enable_pgpcore_plugin=yes])
651 if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
653 AM_PATH_GPGME(1.0.0, AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.),
654 [ac_cv_enable_pgpcore_plugin=no])
655 if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
656 PLUGINS="pgpcore $PLUGINS"
658 AC_DEFINE(HAVE_GPGME_PKA_TRUST, 1,
659 [Define if GPGME supports PKA.]))
660 #needed to get GPGME_LIBS and al correctly
661 AM_PATH_GPGME(1.0.0, AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.),
662 [ac_cv_enable_pgpcore_plugin=no])
664 AC_MSG_WARN([*** PGP/CORE plugin will not be built ***])
669 AM_CONDITIONAL(BUILD_PGPCORE_PLUGIN, test x"$ac_cv_enable_pgpcore_plugin" = xyes)
671 AC_MSG_CHECKING([whether to build PGP/MIME plugin])
672 AC_ARG_ENABLE(pgpmime-plugin,
673 [ --disable-pgpmime-plugin Do not build PGP/MIME plugin],
674 [ac_cv_enable_pgpmime_plugin=$enableval], [ac_cv_enable_pgpmime_plugin=yes])
675 if test x"$ac_cv_enable_pgpmime_plugin" = xyes; then
677 if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
678 PLUGINS="pgpmime $PLUGINS"
680 AC_MSG_WARN([*** PGP/MIME plugin cannot be built ***])
681 AC_MSG_WARN([*** without the PGP/CORE plugin ***])
686 AM_CONDITIONAL(BUILD_PGPMIME_PLUGIN, test x"$ac_cv_enable_pgpmime_plugin" = xyes)
688 AC_MSG_CHECKING([whether to build PGP/Inline plugin])
689 AC_ARG_ENABLE(pgpinline-plugin,
690 [ --disable-pgpinline-plugin Do not build PGP/Inline plugin],
691 [ac_cv_enable_pgpinline_plugin=$enableval], [ac_cv_enable_pgpinline_plugin=yes])
692 if test x"$ac_cv_enable_pgpinline_plugin" = xyes; then
694 if test x"$ac_cv_enable_pgpcore_plugin" = xyes; then
695 PLUGINS="pgpinline $PLUGINS"
697 AC_MSG_WARN([*** PGP/Inline plugin cannot be built ***])
698 AC_MSG_WARN([*** without the PGP/CORE plugin ***])
703 AM_CONDITIONAL(BUILD_PGPINLINE_PLUGIN, test x"$ac_cv_enable_pgpinline_plugin" = xyes)
705 dnl --- Dillo Viewer ---
706 AC_MSG_CHECKING([whether to build Dillo plugin])
707 AC_ARG_ENABLE(dillo-viewer-plugin,
708 [ --disable-dillo-viewer-plugin Do not build Dillo plugin for html mail rendering],
709 [ac_cv_enable_dillo_viewer_plugin=$enableval], [ac_cv_enable_dillo_viewer_plugin=yes])
710 if test x"$ac_cv_enable_dillo_viewer_plugin" = xyes; then
712 PLUGINS="dillo-viewer $PLUGINS"
716 AM_CONDITIONAL(BUILD_DILLO_VIEWER_PLUGIN, test x"$ac_cv_enable_dillo_viewer_plugin" = xyes)
719 AC_ARG_ENABLE(demo-plugin,
720 [ --enable-demo-plugin Build demo plugin [default=no]],
721 [ac_cv_enable_demo_plugin=$enableval], [ac_cv_enable_demo_plugin=no])
722 if test x"$ac_cv_enable_demo_plugin" = xyes; then
723 PLUGINS="demo $PLUGINS"
725 AM_CONDITIONAL(BUILD_DEMO_PLUGIN, test x"$ac_cv_enable_demo_plugin" = xyes)
728 AC_MSG_CHECKING([whether to build ClamAV plugin])
729 AC_ARG_ENABLE(clamav-plugin,
730 [ --disable-clamav-plugin Do not build Clam AntiVirus plugin],
731 [ac_cv_enable_clamav_plugin=$enableval], [ac_cv_enable_clamav_plugin=yes])
732 if test x"$ac_cv_enable_clamav_plugin" = xyes; then
734 PKG_CHECK_MODULES(CLAMAV, libclamav, ac_cv_enable_clamav_plugin=yes,
735 ac_cv_enable_clamav_plugin=no)
736 if test x"$ac_cv_enable_clamav_plugin" = xyes; then
737 PLUGINS="clamav $PLUGINS"
739 AC_MSG_RESULT(not found)
740 AC_MSG_WARN([*** ClamAV plugin will not be built ***])
745 AC_SUBST(CLAMAV_LIBS)
746 AM_CONDITIONAL(BUILD_CLAMAV_PLUGIN, test x"$ac_cv_enable_clamav_plugin" = xyes)
749 AC_MSG_CHECKING([whether to use libetpan])
750 AC_ARG_ENABLE(libetpan,
751 [ --disable-libetpan Do not compile IMAP4 support with libetpan],
752 [ac_cv_enable_libetpan=$enableval], [ac_cv_enable_libetpan=yes])
753 if test x"$ac_cv_enable_libetpan" = xyes; then
756 AC_PATH_PROG(libetpanconfig, [libetpan-config])
757 if test "x$libetpanconfig" != "x"; then
758 CPPFLAGS="$CPPFLAGS `$libetpanconfig --cflags 2>/dev/null`"
759 AC_CHECK_HEADER(libetpan/libetpan.h, [libetpan_result=yes])
760 if test "x$libetpan_result" = "xyes"; then
761 AC_MSG_CHECKING([whether libetpan-config hints compiles and links fine])
762 LIBS="$LIBS `$libetpanconfig --libs 2>/dev/null`"
763 AC_TRY_LINK([#include <libetpan/dbstorage.h>], [db_mailstorage_init(NULL, NULL);], [libetpan_result=yes], [libetpan_result=no])
764 AC_MSG_RESULT([$libetpan_result])
767 if test "x$libetpan_result" = "xyes"; then
768 LIBETPAN_CPPFLAGS="`$libetpanconfig --cflags`"
769 LIBETPAN_LIBS="`$libetpanconfig --libs`"
770 LIBETPAN_VERSION=`$libetpanconfig --version | sed "s/\.//g" | sed "s/-.*$//"`
771 if test "$LIBETPAN_VERSION" -lt "045"; then
772 AC_MSG_RESULT([*** Sylpheed requires libetpan 0.45 or newer. See http://www.etpan.org/])
773 AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 support.])
774 AC_MSG_ERROR([libetpan 0.45 not found])
776 AC_SUBST(LIBETPAN_FLAGS)
777 AC_SUBST(LIBETPAN_LIBS)
778 AC_DEFINE(HAVE_LIBETPAN, 1, Define if you want IMAP support.)
780 AC_MSG_RESULT([*** Sylpheed requires libetpan 0.45 or newer. See http://www.etpan.org/ ])
781 AC_MSG_RESULT([*** You can use --disable-libetpan if you don't need IMAP4 support.])
782 AC_MSG_ERROR([libetpan 0.45 not found])
787 AM_CONDITIONAL(SYLPHEED_LIBETPAN, test "x$libetpan_result" = "xyes")
791 AC_MSG_CHECKING([whether to use libgnomeprint])
792 AC_ARG_ENABLE(gnomeprint,
793 [ --disable-gnomeprint Do not use libgnomeprint for printing],
794 [ac_cv_enable_gnomeprint=$enableval], [ac_cv_enable_gnomeprint=yes])
795 if test x$ac_cv_enable_gnomeprint = xyes; then
797 PKG_CHECK_MODULES(GNOMEPRINT, libgnomeprint-2.2 libgnomeprintui-2.2,
798 ac_cv_enable_gnomeprint=yes, ac_cv_enable_gnomeprint=no)
799 if test x"$ac_cv_enable_gnomeprint" = xyes; then
800 AC_DEFINE(USE_GNOMEPRINT, 1, Define if you want libgnomeprint support)
802 AC_MSG_RESULT(not found)
803 AC_MSG_WARN([*** libgnomeprintui wasn't found ***])
804 AC_MSG_WARN([*** using built-in printing support ***])
809 AM_CONDITIONAL(SYLPHEED_GNOMEPRINT, test x"$ac_cv_enable_gnomeprint" = x"yes")
811 dnl ****************************
812 dnl ** Final configure output **
813 dnl ****************************
822 src/common/passcrypt.h
826 src/plugins/demo/Makefile
827 src/plugins/spamassassin/Makefile
828 src/plugins/dillo_viewer/Makefile
829 src/plugins/trayicon/Makefile
830 src/plugins/trayicon/libeggtrayicon/Makefile
831 src/plugins/clamav/Makefile
832 src/plugins/pgpcore/Makefile
833 src/plugins/pgpmime/Makefile
834 src/plugins/pgpinline/Makefile
842 manual/dist/pdf/Makefile
843 manual/dist/ps/Makefile
844 manual/dist/html/Makefile
845 manual/dist/txt/Makefile
847 manual/fr/dist/Makefile
848 manual/fr/dist/pdf/Makefile
849 manual/fr/dist/ps/Makefile
850 manual/fr/dist/html/Makefile
851 manual/fr/dist/txt/Makefile
853 manual/pl/dist/Makefile
854 manual/pl/dist/pdf/Makefile
855 manual/pl/dist/ps/Makefile
856 manual/pl/dist/html/Makefile
857 manual/pl/dist/txt/Makefile
861 dnl Output the configuration summary
863 echo "$PACKAGE $VERSION"
865 echo "JPilot : $ac_cv_enable_jpilot"
866 echo "LDAP : $ac_cv_enable_ldap"
867 echo "OpenSSL : $ac_cv_enable_openssl"
868 echo "iconv : $am_cv_func_iconv"
869 echo "compface : $ac_cv_enable_compface"
870 echo "IPv6 : $ac_cv_enable_ipv6"
871 echo "GNU/aspell : $ac_cv_enable_aspell"
872 echo "IMAP4 : $ac_cv_enable_libetpan"
873 echo "Crash dialog : $ac_cv_enable_crash_dialog"
874 echo "Libgnomeprint : $ac_cv_enable_gnomeprint"
875 echo "Manual : $ac_cv_enable_manual"
876 echo "Plugins : $PLUGINS"
877 echo "Config dir : $ac_cv_with_config_dir"
879 echo "The binary will be installed in $prefix/bin"
881 echo "Configure finished, type 'make' to build."