summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac542
1 files changed, 542 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..090177d
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,542 @@
1dnl Process this file with autoconf to produce a configure script.
2AC_PREREQ(2.50)
3AC_INIT(src/main.c)
4PACKAGE=sylpheed
5
6dnl version number
7MAJOR_VERSION=3
8MINOR_VERSION=7
9MICRO_VERSION=0
10INTERFACE_AGE=0
11BINARY_AGE=0
12EXTRA_VERSION=
13BUILD_REVISION=1185
14VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
15
16dnl define if this is a development release
17dnl DEVEL_VERSION=1
18
19dnl set $target
20AC_CANONICAL_SYSTEM
21
22dnl
23AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
24m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
25dnl AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
26dnl AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
27AC_SUBST(PACKAGE)
28AC_SUBST(VERSION)
29AC_SUBST(MAJOR_VERSION)
30AC_SUBST(MINOR_VERSION)
31AC_SUBST(MICRO_VERSION)
32AC_SUBST(EXTRA_VERSION)
33AC_SUBST(BUILD_REVISION)
34
35dnl development or release version
36AC_SUBST(DEVEL_VERSION)
37if test "x$DEVEL_VERSION" != "x"; then
38 AC_DEFINE(DEVEL_VERSION, 1, [Define if this is a development release])
39fi
40
41dnl libtool versioning
42LT_RELEASE=$MAJOR_VERSION.$MINOR_VERSION
43dnl LT_CURRENT=`expr 1 + $MICRO_VERSION - $INTERFACE_AGE`
44dnl LT_REVISION=$INTERFACE_AGE
45dnl LT_AGE=`expr $BINARY_AGE - $INTERFACE_AGE`
46LT_CURRENT=4
47LT_REVISION=0
48LT_AGE=3
49AC_SUBST(LT_RELEASE)
50AC_SUBST(LT_CURRENT)
51AC_SUBST(LT_REVISION)
52AC_SUBST(LT_AGE)
53
54dnl Specify a header configuration file
55AM_CONFIG_HEADER(config.h)
56
57AM_MAINTAINER_MODE
58
59dnl Checks for programs.
60dnl AC_ARG_PROGRAM
61AC_PROG_CC
62AM_DISABLE_STATIC
63AC_ISC_POSIX
64AM_PROG_CC_STDC
65AC_PROG_INSTALL
66AC_PROG_LN_S
67AC_PROG_MAKE_SET
68AC_PROG_CPP
69dnl AC_PROG_RANLIB
70AM_PROG_LEX
71AC_PROG_YACC
72AM_PROG_LIBTOOL
73
74SYLPHEED_ACLOCAL_INCLUDE(ac)
75
76native_win32=no
77os_osx=no
78
79case "$target" in
80*-darwin*)
81 os_osx=yes
82 CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
83 LIBSYLPH_CFLAGS="$LIBSYLPH_CFLAGS -xobjective-c"
84 ;;
85*-*-mingw*)
86 native_win32=yes
87 CFLAGS="$CFLAGS -mms-bitfields -mwindows"
88 LIBS="$LIBS"
89 LIBSYLPH_LIBS="-lws2_32 -lwinmm"
90 SYLPHEED_LIBS="-lole32 -Wl,-luuid"
91 AC_CHECK_PROG(WINDRES, windres, windres)
92 ;;
93esac
94
95AC_SUBST(LIBSYLPH_CFLAGS)
96AC_SUBST(LIBSYLPH_LIBS)
97
98AM_CONDITIONAL(NATIVE_WIN32, test "$native_win32" = "yes")
99
100dnl Checks for libraries.
101AM_PATH_GLIB_2_0(2.8.0,, AC_MSG_ERROR(Test for GLib failed. See the 'INSTALL' for help.), gobject gmodule)
102
103AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal)
104
105AM_PATH_GTK_2_0(2.8.0,, AC_MSG_ERROR(Test for Gtk failed. See the 'INSTALL' for help.))
106
107dnl --disable-deprecated switch for GTK2 purification
108AC_ARG_ENABLE(deprecated, [ --disable-deprecated Disable deprecated GTK functions. ],
109 [GTK_CFLAGS="$GTK_CFLAGS -DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"], [])
110
111AC_SUBST(GTK_CFLAGS)
112AC_SUBST(GTK_LIBS)
113
114if test "$os_osx" == yes; then
115 AC_CHECK_LIB(gtkmacintegration, gtkosx_application_ready, [ ac_have_gtkmacintegration=yes ], [ ac_have_gtkmacintegration=no ])
116 AC_MSG_CHECKING([if gtkmacintegration is available])
117 AC_MSG_RESULT($ac_have_gtkmacintegration)
118 if test "$ac_have_gtkmacintegration" = yes; then
119 SYLPHEED_LIBS="$SYLPHEED_LIBS -lgtkmacintegration"
120 AC_DEFINE(USE_GTKMACINTEGRATION, 1, Define if you use gtkmacintegration library.)
121 fi
122fi
123
124AC_SUBST(SYLPHEED_LIBS)
125
126dnl checks for iconv
127AM_ICONV
128
129AC_CHECK_FUNCS(bind_textdomain_codeset)
130
131dnl for gettext
132ALL_LINGUAS="be bg cs da de el es et eu fi fr gl he hr hu it ja ko lt nl pl pt_BR ro ru sk sl sr sv tr uk vi zh_CN zh_TW"
133GETTEXT_PACKAGE=sylpheed
134AC_SUBST(GETTEXT_PACKAGE)
135AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define text domain.])
136
137AM_GLIB_GNU_GETTEXT
138dnl AM_GNU_GETTEXT
139dnl AC_CHECK_FUNC(gettext, AC_CHECK_LIB(intl, gettext))
140
141if test "x$DATADIRNAME" != "x"; then
142 localedir='${prefix}/${DATADIRNAME}/locale'
143else
144 localedir='${datadir}/locale'
145fi
146AC_ARG_WITH(localedir,
147 [ --with-localedir=DIR Locale directory],
148 [localedir="$withval"])
149AC_SUBST(localedir)
150
151manualdir='${datadir}/${PACKAGE}/manual'
152AC_ARG_WITH(manualdir,
153 [ --with-manualdir=DIR Manual directory],
154 [manualdir="$withval"])
155AC_SUBST(manualdir)
156
157faqdir='${datadir}/${PACKAGE}/faq'
158AC_ARG_WITH(faqdir,
159 [ --with-faqdir=DIR FAQ directory],
160 [faqdir="$withval"])
161AC_SUBST(faqdir)
162
163plugindir='${exec_prefix}/lib/${PACKAGE}/plugins'
164AC_ARG_WITH(plugindir,
165 [ --with-plugindir=DIR Plug-in directory],
166 [plugindir="$withval"])
167AC_SUBST(plugindir)
168
169themedir='${datadir}/${PACKAGE}/icons'
170AC_ARG_WITH(themedir,
171 [ --with-themedir=DIR Icon theme directory],
172 [themedir="$withval"])
173AC_SUBST(themedir)
174
175dnl GPGME is used to support OpenPGP
176AC_ARG_ENABLE(gpgme,
177 [ --disable-gpgme Disable GnuPG support using GPGME],
178 [ac_cv_enable_gpgme=$enableval], [ac_cv_enable_gpgme=yes])
179AC_MSG_CHECKING([whether to use GPGME])
180if test $ac_cv_enable_gpgme = yes; then
181 AC_MSG_RESULT(yes)
182 AM_PATH_GPGME(1.0.0, AC_DEFINE(USE_GPGME, 1, Define if you use GPGME to support OpenPGP.),
183 [use_gpgme=no
184 ac_cv_enable_gpgme=no])
185 if test $ac_cv_enable_gpgme = yes; then
186 AC_CHECK_LIB(gpgme, gpgme_io_writen, AC_DEFINE(HAVE_GPGME_IO_WRITEN, 1, Define if GPGME has gpgme_io_writen function.))
187 fi
188else
189 AC_MSG_RESULT(no)
190fi
191
192dnl for JPilot support in addressbook
193dnl no check for libraries; these are dynamically loaded
194AC_ARG_ENABLE(jpilot,
195 [ --enable-jpilot Enable JPilot support [[default=no]]],
196 [ac_cv_enable_jpilot=$enableval], [ac_cv_enable_jpilot=no])
197AC_MSG_CHECKING([whether to use JPilot])
198if test "$ac_cv_enable_jpilot" = yes; then
199 AC_MSG_RESULT(yes)
200 AC_CHECK_HEADERS(pi-args.h pi-appinfo.h pi-address.h,
201 [ AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ],
202 [ ac_cv_enable_jpilot=no ])
203 if test "$ac_cv_enable_jpilot" = no; then
204 AC_CHECK_HEADERS(libpisock/pi-args.h libpisock/pi-appinfo.h libpisock/pi-address.h,
205 [ ac_cv_enable_jpilot=yes
206 AC_DEFINE(USE_JPILOT, 1, Define if you want JPilot support in addressbook.) ])
207 fi
208 AC_MSG_CHECKING([whether jpilot is available])
209 AC_MSG_RESULT($ac_cv_enable_jpilot)
210
211 if test "$ac_cv_enable_jpilot" = yes; then
212 LIBS="$LIBS -lpisock"
213 fi
214else
215 AC_MSG_RESULT(no)
216fi
217
218dnl for LDAP support in addressbook
219dnl no check for libraries; dynamically loaded
220AC_ARG_ENABLE(ldap,
221 [ --enable-ldap Enable LDAP support [[default=no]]],
222 [ac_cv_enable_ldap=$enableval], [ac_cv_enable_ldap=no])
223AC_MSG_CHECKING([whether to use LDAP])
224if test "$ac_cv_enable_ldap" = yes; then
225 AC_MSG_RESULT(yes)
226
227 dnl check for available libraries, and pull them in
228 AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="$LDAP_LIBS -lresolv")
229 AC_CHECK_LIB(socket, bind, LDAP_LIBS="$LDAP_LIBS -lsocket")
230 AC_CHECK_LIB(nsl, gethostbyaddr, LDAP_LIBS="$LDAP_LIBS -lnsl")
231 AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="$LDAP_LIBS -llber",,
232 $LDAP_LIBS)
233
234 dnl we need libpthread for sylpheed ldap, until we find
235 dnl a better way to handle ldap requests asynchronously...
236 AC_CHECK_LIB(pthread, pthread_create, LDAP_LIBS="$LDAP_LIBS -lpthread")
237
238 AC_CHECK_HEADERS(ldap.h lber.h pthread.h,
239 [ ac_cv_enable_ldap=yes ],
240 [ ac_cv_enable_ldap=no ])
241
242 if test "$ac_cv_enable_ldap" = yes; then
243 AC_CHECK_LIB(ldap, ldap_open,
244 [ ac_cv_enable_ldap=yes ],
245 [ ac_cv_enable_ldap=no ],
246 $LDAP_LIBS)
247 fi
248
249 AC_MSG_CHECKING([whether ldap library is available])
250 AC_MSG_RESULT($ac_cv_enable_ldap)
251
252 if test "$ac_cv_enable_ldap" = yes; then
253 CFLAGS="$CFLAGS `$PKG_CONFIG --cflags gthread-2.0`"
254 LDAP_LIBS="$LDAP_LIBS -lldap `$PKG_CONFIG --libs gthread-2.0`"
255 AC_DEFINE(USE_LDAP, 1, Define if you want LDAP support in addressbook.)
256 AC_DEFINE(USE_THREADS, 1, Whether to use multithread or not)
257 AC_SUBST(LDAP_LIBS)
258 fi
259else
260 AC_MSG_RESULT(no)
261fi
262
263dnl Check for OpenSSL
264AC_ARG_ENABLE(ssl,
265 [ --disable-ssl Disable SSL support using OpenSSL],
266 [ac_cv_enable_ssl=$enableval], [ac_cv_enable_ssl=yes])
267AC_MSG_CHECKING([whether to use OpenSSL])
268if test $ac_cv_enable_ssl = yes; then
269 AC_MSG_RESULT(yes)
270 dnl First check with pkg-config
271 PKG_CHECK_MODULES(OPENSSL, openssl, [:], [:])
272 if test "x$OPENSSL_LIBS" != "x"; then
273 CFLAGS="$CFLAGS $OPENSSL_CFLAGS"
274 LIBS="$LIBS $OPENSSL_LIBS"
275 AC_MSG_CHECKING([if openssl is available])
276 AC_MSG_RESULT(yes)
277 AC_DEFINE(USE_SSL, 1, Define if you use OpenSSL to support SSL.)
278 else
279 dnl If pkg-config fails, run compile/link test.
280 AC_MSG_CHECKING([if openssl is available])
281 ac_save_LIBS="$LIBS"
282 if test "$native_win32" = yes; then
283 LIBS="$LIBS -lssl32 -leay32"
284 else
285 LIBS="$LIBS -lssl -lcrypto"
286 fi
287 AC_TRY_LINK([
288#include <openssl/opensslv.h>
289], [ return OPENSSL_VERSION_NUMBER; ],
290 [ AC_MSG_RESULT(yes)
291 AC_DEFINE(USE_SSL, 1, Define if you use OpenSSL to support SSL.) ],
292 [ AC_MSG_RESULT(no)
293 LIBS="$ac_save_LIBS"
294 ac_cv_enable_ssl=no ])
295 fi
296else
297 AC_MSG_RESULT(no)
298fi
299
300dnl Check for X-Face support
301AC_ARG_ENABLE(compface,
302 [ --disable-compface Do not use compface (X-Face)],
303 [ac_cv_enable_compface=$enableval], [ac_cv_enable_compface=yes])
304if test "$ac_cv_enable_compface" = yes; then
305 AC_CHECK_LIB(compface, uncompface,,[ac_cv_enable_compface=no])
306fi
307
308dnl Check for GtkSpell support
309AC_MSG_CHECKING([whether to use GtkSpell])
310AC_ARG_ENABLE(gtkspell,
311 [ --disable-gtkspell Do not use GtkSpell in editor],
312 [ac_cv_enable_gtkspell=$enableval], [ac_cv_enable_gtkspell=yes])
313if test "$ac_cv_enable_gtkspell" = yes; then
314 AC_MSG_RESULT(yes)
315 AC_MSG_CHECKING([whether GtkSpell is available])
316 if $PKG_CONFIG gtkspell-2.0 ; then
317 AC_MSG_RESULT(yes)
318 CFLAGS="$CFLAGS `$PKG_CONFIG --cflags gtkspell-2.0`"
319 LIBS="$LIBS `$PKG_CONFIG --libs gtkspell-2.0`"
320 if $PKG_CONFIG --atleast-version 2.0.13 gtkspell-2.0 ; then
321 AC_DEFINE(USE_ENCHANT, 1, Use Enchant with GtkSpell)
322 LIBS="$LIBS `$PKG_CONFIG --libs enchant`"
323
324 dnl Workaroud for zemberek crash
325 if $PKG_CONFIG --atleast-version 1.4.2 enchant ; then
326 CFLAGS="$CFLAGS `$PKG_CONFIG --cflags dbus-glib-1`"
327 LIBS="$LIBS `$PKG_CONFIG --libs dbus-glib-1`"
328 fi
329 elif $PKG_CONFIG --atleast-version 2.0.12 gtkspell-2.0 ; then
330 LIBS="$LIBS -laspell"
331 fi
332 AC_DEFINE(USE_GTKSPELL, 1, Use GtkSpell in editor)
333 else
334 AC_MSG_RESULT(no)
335 ac_cv_enable_gtkspell=no
336 fi
337else
338 AC_MSG_RESULT(no)
339fi
340
341dnl Check for Oniguruma support in message filtering
342AC_ARG_ENABLE(oniguruma,
343 [ --enable-oniguruma Use Oniguruma instead of system's regex [[default=no]]],
344 [ac_cv_enable_oniguruma=$enableval], [ac_cv_enable_oniguruma=no])
345AC_MSG_CHECKING([whether to use Oniguruma])
346if test "$ac_cv_enable_oniguruma" = yes; then
347 AC_MSG_RESULT(yes)
348 AC_MSG_CHECKING([whether Oniguruma is available])
349 dnl AC_CHECK_PROG(ONIG_CONFIG, onig-config, onig-config)
350 ONIG_CONFIG=onig-config
351 ONIG_VERSION=`$ONIG_CONFIG --version 2>/dev/null`
352 if test "x$ONIG_VERSION" != "x"; then
353 AC_MSG_RESULT(yes)
354 CFLAGS="$CFLAGS `$ONIG_CONFIG --cflags`"
355 LIBS="$LIBS `$ONIG_CONFIG --libs`"
356 AC_DEFINE(USE_ONIGURUMA, 1, Define if you want to use Oniguruma.)
357 else
358 AC_MSG_RESULT(no)
359 ac_cv_enable_oniguruma=no
360 fi
361else
362 AC_MSG_RESULT(no)
363fi
364
365dnl check additional libraries
366AC_CHECK_LIB(xpg4, setlocale)
367AC_CHECK_LIB(resolv, res_init)
368AC_CHECK_LIB(socket, bind)
369AC_CHECK_LIB(nsl, gethostbyname)
370
371dnl for GThread support
372AC_ARG_ENABLE(threads,
373 [ --disable-threads Disable multithread support],
374 [use_threads=$enableval], [use_threads=yes])
375
376AC_MSG_CHECKING([whether to use threads])
377if test x"$use_threads" = xyes ; then
378 AC_MSG_RESULT(yes)
379 if $PKG_CONFIG --exists gthread-2.0 ; then
380 CFLAGS="$CFLAGS `$PKG_CONFIG --cflags gthread-2.0`"
381 LIBS="$LIBS `$PKG_CONFIG --libs gthread-2.0`"
382 AC_DEFINE(USE_THREADS, 1, Whether to use multithread or not)
383 else
384 AC_MSG_ERROR([Sylpheed requires GThread from GLib to enable threading.])
385 fi
386else
387 AC_MSG_RESULT(no)
388fi
389
390dnl check for IPv6 option
391AC_ARG_ENABLE(ipv6,
392 [ --disable-ipv6 Disable IPv6 support],
393 [ac_cv_enable_ipv6=$enableval], [ac_cv_enable_ipv6=yes])
394
395dnl automated checks for IPv6 support.
396AC_MSG_CHECKING([whether to use IPv6])
397if test x"$ac_cv_enable_ipv6" = xyes; then
398 AC_MSG_RESULT(yes)
399 AC_MSG_CHECKING([for IPv6 support])
400 if test "$native_win32" = yes; then
401 AC_CACHE_VAL(ac_cv_ipv6,[
402 AC_TRY_COMPILE([#define INET6
403 #include <sys/types.h>
404 #include <winsock2.h>
405 #include <ws2tcpip.h>],
406 [int x = IPPROTO_IPV6; struct in6_addr a;],
407 ac_cv_ipv6=yes, ac_cv_ipv6=no)
408 ])
409 else
410 AC_CACHE_VAL(ac_cv_ipv6,[
411 AC_TRY_COMPILE([#define INET6
412 #include <sys/types.h>
413 #include <netinet/in.h>],
414 [int x = IPPROTO_IPV6; struct in6_addr a;],
415 ac_cv_ipv6=yes, ac_cv_ipv6=no)
416 ])
417 fi
418 AC_MSG_RESULT($ac_cv_ipv6)
419 if test $ac_cv_ipv6 = yes; then
420 AC_DEFINE(INET6, 1, Define if you want IPv6 support.)
421 else
422 AC_MSG_WARN(*** IPv6 will not be supported ***)
423 ac_cv_enable_ipv6=no
424 fi
425else
426 AC_MSG_RESULT(no)
427fi
428
429dnl for update check feature
430AC_ARG_ENABLE(updatecheck,
431 [ --disable-updatecheck Disable update check feature],
432 [ac_cv_enable_updatecheck=$enableval], [ac_cv_enable_updatecheck=yes])
433if test x"$ac_cv_enable_updatecheck" = xyes ; then
434 AC_DEFINE(USE_UPDATE_CHECK, 1, Define if you want update check feature.)
435
436 dnl for update check feature (requires update check enabled)
437 AC_ARG_ENABLE(updatecheckplugin,
438 [ --disable-updatecheckplugin Disable update check plugin feature],
439 [ac_cv_enable_updatecheckplugin=$enableval], [ac_cv_enable_updatecheckplugin=yes])
440 if test x"$ac_cv_enable_updatecheckplugin" = xyes ; then
441 AC_DEFINE(USE_UPDATE_CHECK_PLUGIN, 1, Define if you want update check plugin feature.)
442 fi
443fi
444
445dnl Check for d_type member in struct dirent
446AC_MSG_CHECKING([whether struct dirent has d_type member])
447AC_CACHE_VAL(ac_cv_dirent_d_type,[
448 AC_TRY_COMPILE([#include <dirent.h>],
449 [struct dirent d; d.d_type = DT_REG;],
450 ac_cv_dirent_d_type=yes, ac_cv_dirent_d_type=no)
451])
452AC_MSG_RESULT($ac_cv_dirent_d_type)
453if test $ac_cv_dirent_d_type = yes; then
454 AC_DEFINE(HAVE_DIRENT_D_TYPE, 1,
455 Define if `struct dirent' has `d_type' member.)
456fi
457
458dnl Checks for liblockfile
459AC_CHECK_HEADERS(lockfile.h)
460AC_CHECK_LIB(lockfile, lockfile_create)
461
462
463dnl Checks for header files.
464AC_HEADER_DIRENT
465AC_HEADER_STDC
466AC_HEADER_SYS_WAIT
467AC_CHECK_HEADERS(fcntl.h sys/file.h unistd.h paths.h \
468 sys/param.h sys/utsname.h sys/select.h \
469 netdb.h regex.h sys/mman.h)
470
471dnl Checks for typedefs, structures, and compiler characteristics.
472AC_C_CONST
473AC_TYPE_OFF_T
474AC_TYPE_PID_T
475AC_TYPE_SIZE_T
476AC_STRUCT_TM
477
478AC_SYS_LARGEFILE
479AC_FUNC_FSEEKO
480
481GNUPG_CHECK_TYPEDEF(u32, HAVE_U32_TYPEDEF, Used to test for a u32 typedef)
482AC_CHECK_SIZEOF(unsigned short, 2)
483AC_CHECK_SIZEOF(unsigned int, 4)
484AC_CHECK_SIZEOF(unsigned long, 4)
485AC_CHECK_SIZEOF(time_t)
486AC_CHECK_SIZEOF(off_t)
487
488if test "x$ac_cv_sizeof_time_t" = "x8"; then
489 AC_DEFINE(HAVE_64BIT_TIME_T, 1, Define if time_t is 64-bit)
490fi
491
492dnl Checks for library functions.
493AC_FUNC_ALLOCA
494AC_CHECK_FUNCS(gethostname mkdir mktime socket strstr strchr \
495 uname flock lockf inet_aton inet_addr \
496 fchmod truncate getuid regcomp mlock fsync)
497
498AC_OUTPUT([
499Makefile
500sylpheed.spec
501ac/Makefile
502libsylph/Makefile
503src/version.h
504src/sylpheed.rc
505src/Makefile
506src/icons/Makefile
507plugin/Makefile
508plugin/attachment_tool/Makefile
509plugin/test/Makefile
510po/Makefile.in
511faq/Makefile
512faq/de/Makefile
513faq/en/Makefile
514faq/es/Makefile
515faq/fr/Makefile
516faq/it/Makefile
517manual/Makefile
518manual/en/Makefile
519manual/ja/Makefile
520nsis/Makefile
521macosx/Makefile
522macosx/bundle/Makefile
523])
524
525dnl Output the configuration summary
526echo ""
527echo "$PACKAGE $VERSION"
528echo ""
529echo "GnuPG : $ac_cv_enable_gpgme"
530echo "JPilot : $ac_cv_enable_jpilot"
531echo "LDAP : $ac_cv_enable_ldap"
532echo "OpenSSL : $ac_cv_enable_ssl"
533echo "iconv : $am_cv_func_iconv"
534echo "compface : $ac_cv_enable_compface"
535echo "IPv6 : $ac_cv_enable_ipv6"
536echo "GtkSpell : $ac_cv_enable_gtkspell"
537echo "Oniguruma : $ac_cv_enable_oniguruma"
538echo "GThread : $use_threads"
539echo ""
540echo "The binary will be installed in $prefix/bin"
541echo ""
542echo "Configure finished, type 'make' to build."