move the last crypt-* things into lib-crypt, adapt configure.ac
[apps/madmutt.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 dnl !!! WHEN ADDING NEW CONFIGURE TESTS, PLEASE ADD CODE TO MAIN.C !!!
4 dnl !!! TO DUMP THEIR RESULTS WHEN MUTT -V IS CALLED            !!!
5
6 AC_PREREQ([2.50])
7 AC_INIT([mutt.h])
8 AM_CONFIG_HEADER(config.h)
9 AM_INIT_AUTOMAKE(madmutt, `cat "$srcdir/VERSION.in"`)
10
11 AC_SUBST([CONFIGURE_DEPENDENCIES], ['$(top_srcdir)/VERSION.in'])
12
13 AC_GNU_SOURCE
14
15 ALL_LINGUAS="de ru it es uk fr pl nl cs id sk ko el zh_TW zh_CN pt_BR eo gl sv da lt tr ja hu et ca bg"
16
17 AC_CANONICAL_HOST
18
19 AC_MSG_CHECKING([for prefix])
20 if test x$prefix = xNONE; then
21     mutt_cv_prefix=$ac_default_prefix
22 else
23     mutt_cv_prefix=$prefix
24 fi
25 AC_MSG_RESULT($mutt_cv_prefix)
26
27 AC_PROG_CPP
28 AC_PROG_CC_C99
29
30 AM_C_PROTOTYPES
31 AC_C_INLINE
32 AC_C_CONST
33 if test "x$U" != "x"; then
34     AC_MSG_ERROR(Compiler not ANSI compliant)
35 fi
36 AC_ISC_POSIX
37 AC_HEADER_STDC
38
39 AC_PROG_MAKE_SET
40 AC_PROG_INSTALL
41 AC_PROG_RANLIB
42 AC_PROG_GPERF
43 PKG_PROG_PKG_CONFIG
44 AC_CHECK_TOOL(AR, ar, ar)
45
46 AC_SYS_LARGEFILE
47 AC_FUNC_FSEEKO
48 AC_CHECK_SIZEOF(off_t)
49
50 AH_TEMPLATE([sig_atomic_t],
51             [Define to 'int' if <signal.h> doesn't define.])
52 AH_TEMPLATE([HAVE_START_COLOR],
53             [Define if you have start_color, as a function or macro.])
54 AH_TEMPLATE([HAVE_TYPEAHEAD],
55             [Define if you have typeahead, as a function or macro.])
56 AH_TEMPLATE([HAVE_BKGDSET],
57             [Define if you have bkgdset, as a function or macro.])
58 AH_TEMPLATE([HAVE_CURS_SET],
59             [Define if you have curs_set, as a function or macro.])
60 AH_TEMPLATE([HAVE_META],
61             [Define if you have meta, as a function or macro.])
62 AH_TEMPLATE([HAVE_USE_DEFAULT_COLORS],
63             [Define if you have use_default_colors, as a function or macro.])
64 AH_TEMPLATE([HAVE_RESIZETERM],
65             [Define if you have resizeterm, as a function or macro.])
66 AH_TEMPLATE([SIG_ATOMIC_VOLATILE_T],
67             [Some systems declare sig_atomic_t as volatile, some others -- no.
68              This define will have value `sig_atomic_t' or
69              `volatile sig_atomic_t' accordingly.])
70 AH_TEMPLATE([ICONV_NONTRANS],
71             [Define as 1 if iconv() only converts exactly and we should treat
72              all return values other than (size_t)(-1) as equivalent.])
73
74 MUTT_C99_INTTYPES
75
76 dnl ---------------- sendmail ----------------
77
78 ac_aux_path_sendmail=/usr/sbin:/usr/lib
79 AC_PATH_PROG(SENDMAIL, sendmail, /usr/sbin/sendmail, $PATH:$ac_aux_path_sendmail)
80 AC_DEFINE_UNQUOTED(SENDMAIL,"$ac_cv_path_SENDMAIL",[ Where to find sendmail on your system. ])
81
82 OPS='$(srcdir)/OPS'
83
84 dnl ---------------- gpgme ----------------
85
86 AC_ARG_ENABLE(gpgme, AC_HELP_STRING([--enable-gpgme], [Enable GPGME support]),[
87     if test x$enableval = xyes; then
88         AM_PATH_GPGME(,,[AC_MSG_ERROR(GPGME not found)])
89         MUTTLIBS="$MUTTLIBS $GPGME_LIBS"
90         AC_DEFINE(CRYPT_BACKEND_GPGME, 1, [Defined, if GPGME support is enabled])
91         AM_CONDITIONAL(BUILD_GPGME, true)
92     else
93         AM_CONDITIONAL(BUILD_GPGME, false)
94     fi
95 ])
96
97 dnl ---------------- mixmaster ----------------
98
99 AC_ARG_WITH(mixmaster, AC_HELP_STRING([--with-mixmaster[=PATH]], [Include Mixmaster support]), [
100     MIXMASTER=${withval:-"mixmaster"}
101     OPS="$OPS \$(srcdir)/OPS.MIX"
102     MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS remailer.o"
103     AC_DEFINE_UNQUOTED(MIXMASTER,"$MIXMASTER",[Where to find mixmaster on your system.])
104 ])
105
106 # We now require all OPS
107 OPS="$OPS \$(srcdir)/OPS.PGP \$(srcdir)/OPS.SMIME \$(srcdir)/OPS.CRYPT "
108 AC_SUBST([OPS])
109
110 AC_PATH_PROG(ISPELL, ispell, no)
111 if test $ISPELL != no; then
112     AC_DEFINE_UNQUOTED(ISPELL,"$ISPELL",[Where to find ispell on your system.])
113 fi
114
115 AC_ARG_WITH(slang, AC_HELP_STRING([--with-slang[=DIR]], [Use S-Lang instead of ncurses]),
116     [AC_CACHE_CHECK([if this is a BSD system], mutt_cv_bsdish,
117         [AC_TRY_RUN([#include <sys/param.h>
118
119 main ()
120 {
121 #ifdef BSD
122         exit (0);
123 #else
124         exit (1);
125 #endif
126 }],
127         mutt_cv_bsdish=yes,
128         mutt_cv_bsdish=no,
129         mutt_cv_bsdish=no)])
130
131         AC_MSG_CHECKING(for S-Lang)
132         if test $withval = yes; then
133             if test -d $srcdir/../slang; then
134                 mutt_cv_slang=$srcdir/../slang/src
135                 CFLAGS="$CFLAGS -I${mutt_cv_slang}"
136                 LDFLAGS="$LDFLAGS -L${mutt_cv_slang}/objs"
137             else
138                 if test -d $mutt_cv_prefix/include/slang; then
139                     CFLAGS="$CFLAGS -I$mutt_cv_prefix/include/slang"
140                 elif test -d /usr/include/slang; then
141                     CFLAGS="$CFLAGS -I/usr/include/slang"
142                 fi
143                 mutt_cv_slang=yes
144             fi
145         else
146             dnl ---Check to see if $withval is a source directory
147             if test -f $withval/src/slang.h; then
148                 mutt_cv_slang=$withval/src
149                 CFLAGS="$CFLAGS -I${mutt_cv_slang}"
150                 LDFLAGS="$LDFLAGS -L${mutt_cv_slang}/objs"
151             else
152                 dnl ---Must be installed somewhere
153                 mutt_cv_slang=$withval
154                 if test -d $withval/include/slang; then
155                         CFLAGS="$CFLAGS -I${withval}/include/slang"
156                 elif test -d $withval/include; then
157                         CFLAGS="$CFLAGS -I${withval}/include"
158                 fi
159                 LDFLAGS="$LDFLAGS -L${withval}/lib"
160             fi
161         fi
162         AC_MSG_RESULT($mutt_cv_slang)
163         if test $mutt_cv_bsdish = yes; then
164             AC_CHECK_LIB(termlib, main)
165         fi
166         AC_DEFINE(USE_SLANG_CURSES,1, [ Define if you compile with SLang instead of curses/ncurses. ])
167         AC_DEFINE(HAVE_COLOR,1,[ Define if your curses library supports color. ])
168         MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS resize.o"
169
170         dnl --- now that we've found it, check the link
171
172         AC_CHECK_LIB(slang, SLtt_get_terminfo,
173             [MUTTLIBS="$MUTTLIBS -lslang -lm"],
174             [AC_MSG_ERROR(unable to compile.  check config.log)], -lm)
175         ],
176
177         [   mutt_cv_curses=/usr
178             AC_ARG_WITH(curses, AC_HELP_STRING([--with-curses=DIR], [Where ncurses is installed]),
179             [   if test $withval != yes; then
180                     mutt_cv_curses=$withval
181                 fi
182                 if test x$mutt_cv_curses != x/usr; then
183                     LDFLAGS="-L${mutt_cv_curses}/lib $LDFLAGS"
184                     CPPFLAGS="$CPPFLAGS -I${mutt_cv_curses}/include"
185                 fi
186             ])
187
188             AC_CHECK_FUNC(initscr,,[
189             cf_ncurses="ncurses"
190             for lib in ncursesw ncurses; do
191                 AC_CHECK_LIB($lib, waddnwstr, [cf_ncurses="$lib"; break])
192             done
193             AC_CHECK_LIB($cf_ncurses, initscr,
194                 [   MUTTLIBS="$MUTTLIBS -l$cf_ncurses"
195                     if test x$mutt_cv_curses = x/usr -a -d /usr/include/ncurses; then
196                         CPPFLAGS="$CPPFLAGS -I/usr/include/ncurses"
197                     fi
198
199                     if test "$cf_ncurses" = ncursesw; then
200                         AC_CHECK_HEADERS(ncurses/ncurses.h,[cf_cv_ncurses_header="ncurses/ncurses.h"])
201                         AC_CHECK_HEADERS(ncursesw/ncurses.h,[cf_cv_ncurses_header="ncursesw/ncurses.h"])
202                     else
203                         AC_CHECK_HEADERS(ncurses.h,[cf_cv_ncurses_header="ncurses.h"])
204                     fi
205                 ],
206                 [CF_CURSES_LIBS])
207             ])
208
209             old_LIBS="$LIBS"
210             LIBS="$LIBS $MUTTLIBS"
211             CF_CHECK_FUNCDECLS([#include <${cf_cv_ncurses_header-curses.h}>],
212                                [start_color typeahead bkgdset curs_set meta use_default_colors resizeterm])
213             if test "$ac_cv_func_decl_start_color" = yes; then
214                 AC_DEFINE(HAVE_COLOR,1,[ Define if your curses library supports color. ])
215             fi
216             if test "$ac_cv_func_decl_resizeterm" = yes; then
217                 MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS resize.o"
218             fi
219             LIBS="$old_LIBS"
220         ])
221
222 AC_CHECK_HEADERS(stdarg.h sys/ioctl.h ioctl.h sysexits.h)
223 AC_CHECK_HEADERS(sys/time.h sys/resource.h)
224 AC_CHECK_HEADERS(unix.h)
225
226 AC_CHECK_FUNCS(setrlimit getsid isctype)
227
228 AC_TYPE_SIGNAL
229
230 AC_MSG_CHECKING(for sig_atomic_t in signal.h)
231 AC_EGREP_HEADER(sig_atomic_t,signal.h,
232     [   ac_cv_type_sig_atomic_t=yes;
233         AC_EGREP_HEADER(volatile.*sig_atomic_t,
234                         signal.h,
235                         [is_sig_atomic_t_volatile=yes; AC_MSG_RESULT([yes, volatile])],
236                         [is_sig_atomic_t_volatile=no;  AC_MSG_RESULT([yes, non volatile])])
237     ],
238     [   AC_MSG_RESULT(no)
239         AC_CHECK_TYPE(sig_atomic_t, int)
240         is_sig_atomic_t_volatile=no
241     ])
242 if test $is_sig_atomic_t_volatile = 'yes'
243 then
244     AC_DEFINE(SIG_ATOMIC_VOLATILE_T, sig_atomic_t)
245 else
246     AC_DEFINE(SIG_ATOMIC_VOLATILE_T, [volatile sig_atomic_t])
247 fi
248
249 AC_DECL_SYS_SIGLIST
250
251 AC_TYPE_PID_T
252
253 AC_CHECK_FUNCS(fgetpos memmove setegid srand48 strerror)
254 AC_REPLACE_FUNCS(strcasecmp setenv)
255 AC_CHECK_FUNCS(snprintf vsnprintf)
256
257 AC_CHECK_FUNC(getopt)
258 if test $ac_cv_func_getopt = yes; then
259     AC_CHECK_HEADERS(getopt.h)
260 fi
261
262 AC_ARG_WITH(regex, AC_HELP_STRING([--with-regex], [Use the GNU regex library]),
263         [mutt_cv_regex=yes],
264         [AC_CHECK_FUNCS(regcomp, mutt_cv_regex=no, mutt_cv_regex=yes)])
265
266 if test $mutt_cv_regex = no ; then
267     AC_CACHE_CHECK([whether your system's regexp library is completely broken],
268         [mutt_cv_regex_broken],
269         AC_TRY_RUN([
270 #include <unistd.h>
271 #include <regex.h>
272 main() { regex_t blah ; regmatch_t p; p.rm_eo = p.rm_eo; return regcomp(&blah, "foo.*bar", REG_NOSUB) || regexec (&blah, "foobar", 0, NULL, 0); }],
273         mutt_cv_regex_broken=no, mutt_cv_regex_broken=yes, mutt_cv_regex_broken=yes))
274     if test $mutt_cv_regex_broken = yes ; then
275         echo "Using the included GNU regex instead." >&AC_FD_MSG
276         mutt_cv_regex=yes
277     fi
278 fi
279
280 if test $mutt_cv_regex = yes; then
281     AC_DEFINE(USE_GNU_REGEX,1,[ Define if you want to use the included regex.c. ])
282     LIBOBJS="$LIBOBJS regex.o"
283 fi
284
285
286 AC_ARG_WITH(homespool,
287             AC_HELP_STRING([--with-homespool[=FILE]],
288                            [File in user's directory where new mail is spooled]),
289                            with_homespool=${withval})
290 if test x$with_homespool != x; then
291     if test $with_homespool = yes; then
292             with_homespool=mailbox
293     fi
294     AC_DEFINE_UNQUOTED(MAILPATH,"$with_homespool",[ Where new mail is spooled. ])
295     AC_DEFINE(HOMESPOOL,1,
296     [   Is mail spooled to the user's home directory?  If defined,
297         MAILPATH should be set to the filename of the spool mailbox
298         relative the the home directory.
299         use: configure --with-homespool=FILE
300     ])
301     AC_DEFINE(USE_DOTLOCK,1,[ Define to use dotlocking for mailboxes. ])
302     mutt_cv_setgid=no
303 else
304     AC_ARG_WITH(mailpath, AC_HELP_STRING([--with-mailpath=DIR], [Directory where spool mailboxes are located]),
305         [mutt_cv_mailpath=$withval],
306         [ AC_CACHE_CHECK(where new mail is stored, mutt_cv_mailpath,
307             [mutt_cv_mailpath=no
308             if test -d /var/mail; then
309                 mutt_cv_mailpath=/var/mail
310             elif test -d /var/spool/mail; then
311                 mutt_cv_mailpath=/var/spool/mail
312             elif test -d /usr/spool/mail; then
313                 mutt_cv_mailpath=/usr/spool/mail
314             elif test -d /usr/mail; then
315                 mutt_cv_mailpath=/usr/mail
316             fi])
317         ])
318     if test "$mutt_cv_mailpath" = no; then
319         AC_MSG_ERROR("Could not determine where new mail is stored.")
320     fi
321     AC_DEFINE_UNQUOTED(MAILPATH,"$mutt_cv_mailpath",[ Where new mail is spooled. ])
322
323     AC_CACHE_CHECK(if $mutt_cv_mailpath is world writable, mutt_cv_worldwrite, [AC_TRY_RUN([#include <sys/types.h>
324 #include <sys/stat.h>
325
326 int main (int argc, char **argv)
327 {
328         struct stat s;
329
330         stat ("$mutt_cv_mailpath", &s);
331         if (s.st_mode & S_IWOTH) exit (0);
332         exit (1);
333 }], mutt_cv_worldwrite=yes, mutt_cv_worldwrite=no, mutt_cv_worldwrite=no)])
334
335         mutt_cv_setgid=no
336         if test $mutt_cv_worldwrite = yes; then
337                 AC_DEFINE(USE_DOTLOCK,1,[ Define to use dotlocking for mailboxes. ])
338         else
339                 AC_CACHE_CHECK(if $mutt_cv_mailpath is group writable, mutt_cv_groupwrite, [AC_TRY_RUN([#include <sys/types.h>
340 #include <sys/stat.h>
341
342 int main (int argc, char **argv)
343 {
344         struct stat s;
345
346         stat ("$mutt_cv_mailpath", &s);
347         if (s.st_mode & S_IWGRP) exit (0);
348         exit (1);
349 }], mutt_cv_groupwrite=yes, mutt_cv_groupwrite=no, mutt_cv_groupwrite=no)])
350
351         if test $mutt_cv_groupwrite = yes; then
352             AC_DEFINE(USE_DOTLOCK,1,[ Define to use dotlocking for mailboxes. ])
353             AC_DEFINE(USE_SETGID,1,[ Define if mutt should run setgid "mail". ])
354             mutt_cv_setgid=yes
355         fi
356     fi
357 fi
358
359 AC_MSG_CHECKING(where to put the documentation)
360 AC_ARG_WITH(docdir, AC_HELP_STRING([--with-docdir=PATH], [Specify where to put the documentation]),
361         [mutt_cv_docdir=$withval],
362         [mutt_cv_docdir="${prefix}/doc/madmutt"])
363 AC_MSG_RESULT($mutt_cv_docdir)
364
365 docdir=$mutt_cv_docdir
366 AC_SUBST(docdir)
367
368 if test x$mutt_cv_setgid = xyes; then
369     DOTLOCK_GROUP='mail'
370     DOTLOCK_PERMISSION=2755
371 else
372     DOTLOCK_GROUP=''
373     DOTLOCK_PERMISSION=755
374 fi
375 AC_SUBST(DOTLOCK_GROUP)
376 AC_SUBST(DOTLOCK_PERMISSION)
377
378 dnl -- socket dependencies --
379
380 AC_ARG_ENABLE(nntp, AC_HELP_STRING([--enable-nntp],[Enable NNTP support]),[
381     if test x$enableval = xyes ; then
382         AC_DEFINE(USE_NNTP,1,[ Compiling with newsreading support with NNTP ])
383         LIBNNTP="-Lnntp -lnntp"
384         LIBNNTPDEPS="\$(top_srcdir)/nntp/nntp.h nntp/libnntp.a"
385         need_nntp="yes"
386     fi
387 ])
388 AM_CONDITIONAL(BUILD_NNTP, test x$need_nntp = xyes)
389
390 dnl -- end socket dependencies --
391
392 AC_MSG_CHECKING([for socklen_t])
393 AC_EGREP_HEADER(socklen_t, sys/socket.h, AC_MSG_RESULT([yes]),
394         AC_MSG_RESULT([no])
395         AC_DEFINE(socklen_t,int, [ Define to 'int' if <sys/socket.h> doesn't have it. ]))
396 AC_CHECK_FUNC(gethostent, , AC_CHECK_LIB(nsl, gethostent))
397 AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
398 AC_CHECK_FUNCS(getaddrinfo)
399
400 dnl -- imap dependencies --
401
402 AC_ARG_WITH(gss, AC_HELP_STRING([--with-gss[=PFX]], [Compile in GSSAPI authentication for IMAP]),
403     gss_prefix="$withval", gss_prefix="no")
404 if test "$gss_prefix" != "no"
405 then
406     MUTT_AM_PATH_GSSAPI(gss_prefix)
407     AC_MSG_CHECKING(GSSAPI implementation)
408     AC_MSG_RESULT($GSSAPI_IMPL)
409     if test "$GSSAPI_IMPL" = "none"
410     then
411       AC_CACHE_SAVE
412       AC_MSG_RESULT([GSSAPI libraries not found])
413     fi
414     if test "$GSSAPI_IMPL" = "Heimdal"
415     then
416       AC_DEFINE(HAVE_HEIMDAL,1,[ Define if your GSSAPI implementation is Heimdal ])
417     fi
418     CPPFLAGS="$CPPFLAGS $GSSAPI_CFLAGS"
419     MUTTLIBS="$MUTTLIBS $GSSAPI_LIBS"
420     AC_DEFINE(USE_GSS,1,[ Define if you have GSSAPI libraries available ])
421     need_gss="yes"
422 fi
423 AM_CONDITIONAL(USE_GSS, test x$need_gss = xyes)
424
425 dnl -- end imap dependencies --
426
427 AC_ARG_WITH(ssl, AC_HELP_STRING([--with-ssl[=PFX]], [Compile in SSL support for POP/IMAP]),
428 [       if test "$with_ssl" != "no"
429         then
430           if test "$with_ssl" != "yes"
431           then
432            LDFLAGS="$LDFLAGS -L$withval/lib"
433            CPPFLAGS="$CPPFLAGS -I$withval/include"
434           fi
435           saved_LIBS="$LIBS"
436
437           AC_CHECK_LIB(crypto, X509_new,, AC_MSG_ERROR([Unable to find SSL library]))
438           AC_CHECK_LIB(ssl, SSL_new,, AC_MSG_ERROR([Unable to find SSL library]), -lcrypto)
439
440           AC_CHECK_FUNCS(RAND_status RAND_egd)
441
442           AC_DEFINE(USE_SSL,1,[ Define if you want support for SSL. ])
443           LIBS="$saved_LIBS"
444           MUTTLIBS="$MUTTLIBS -lssl -lcrypto"
445           MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS mutt_ssl.o"
446           need_ssl=yes
447
448         fi
449 ])
450
451 AC_ARG_WITH([gnutls], AC_HELP_STRING([--with-gnutls], [Enable SSL support using gnutls]),
452             [gnutls_prefix="$withval"], [gnutls_prefix="no"])
453 if test "$gnutls_prefix" != "no"; then
454     if test x"$need_ssl" = x"yes"; then
455         AC_MSG_ERROR([Only either OpenSSL or GNUTLS may be used])
456     fi
457     AM_PATH_LIBGNUTLS(,[
458         CPPFLAGS="$CPPFLAGS $LIBGNUTLS_CFLAGS"
459         MUTTLIBS="$MUTTLIBS $LIBGNUTLS_LIBS"
460         AC_DEFINE(USE_GNUTLS, 1, [Define if you want support for SSL via the gnutls library.])
461         MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS mutt_ssl_gnutls.o"
462         need_ssl=yes],
463         [AC_MSG_ERROR([could not find libgnutls])
464     ])
465 fi
466 AM_CONDITIONAL(USE_SSL, test x$need_ssl = xyes)
467
468 AC_ARG_WITH(sasl2, AC_HELP_STRING([--with-sasl2[=PFX]],
469             [Use Cyrus SASL library version 2 for POP/IMAP authentication]),[
470     if test "$with_sasl2" != "no"; then
471         if test "$with_sasl2" != "yes"; then
472             CPPFLAGS="$CPPFLAGS -I$with_sasl2/include"
473             LDFLAGS="$LDFLAGS -L$with_sasl2/lib"
474         fi
475
476         saved_LIBS="$LIBS"
477
478         AC_CHECK_LIB(sasl2, sasl_client_init,,
479                      AC_MSG_ERROR([could not find libsasl2]),)
480
481         MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS mutt_sasl.o"
482         MUTTLIBS="$MUTTLIBS -lsasl2"
483         LIBS="$saved_LIBS"
484         AC_DEFINE(USE_SASL,1,
485                   [Define if want to use version 2 of the Cyrus SASL library.])
486         need_sasl=yes
487     fi
488 ])
489 AM_CONDITIONAL(USE_SASL, test x$need_sasl = xyes)
490
491 AC_ARG_WITH(idn, AC_HELP_STRING([--with-idn=[PFX]], [Use GNU libidn for domain names]),[
492     if test x$with_idn != xno ; then
493         PKG_CHECK_MODULES(IDN,libidn,[
494             if $PKG_CONFIG --atleast-version=0.6; then
495                 AC_MSG_ERROR([libidn is too old, want 0.6 at least])
496             fi
497             CPPFLAGS="$CPPFLAGS $IDN_CFLAGS"
498             LDFLAGS="$LDFLAGS $IDN_LIBS"
499         ],[AC_MSG_ERROR([could not find libidn])])
500     fi
501 ])
502
503 dnl -- end socket --
504
505 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [Enable debugging support]),
506     [ if test x$enableval = xyes ; then
507             AC_DEFINE(DEBUG,1,[ Define to enable debugging info. ])
508       fi
509      ])
510
511 AC_ARG_ENABLE(flock, AC_HELP_STRING([--enable-flock], [Use flock() to lock files]),
512         [if test $enableval = yes; then
513                 AC_DEFINE(USE_FLOCK,1, [ Define to use flock() to lock mailboxes. ])
514         fi])
515
516 mutt_cv_fcntl=yes
517 AC_ARG_ENABLE(fcntl, AC_HELP_STRING([--disable-fcntl], [Do NOT use fcntl() to lock files]),
518         [if test $enableval = no; then mutt_cv_fcntl=no; fi])
519
520 if test $mutt_cv_fcntl = yes; then
521         AC_DEFINE(USE_FCNTL,1, [ Define to use fcntl() to lock folders. ])
522 fi
523
524 AC_MSG_CHECKING(whether struct dirent defines d_ino)
525 ac_cv_dirent_d_ino=no
526 AC_TRY_LINK([#include <dirent.h>],[struct dirent dp; (void)dp.d_ino],[ac_cv_dirent_d_ino=yes])
527 if test x$ac_cv_dirent_d_ino = xyes ; then
528   AC_DEFINE(HAVE_DIRENT_D_INO,1,
529             [Define to 1 if your system has the dirent::d_ino member])
530 fi
531 AC_MSG_RESULT($ac_cv_dirent_d_ino)
532
533 AC_ARG_ENABLE(buffy-size, AC_HELP_STRING([--enable-buffy-size], [Use file size attribute instead of access time]),
534         [if test x$enableval = xyes; then
535                 AC_DEFINE(BUFFY_SIZE,1,[ Define to enable the "buffy_size" feature. ])
536         fi])
537
538 dnl -- start cache --
539 AC_ARG_ENABLE(hcache, AC_HELP_STRING([--enable-hcache], [Enable header caching]),
540 [if test x$enableval = xyes; then
541     AC_DEFINE(USE_HCACHE, 1, [Enable header caching])
542
543     OLDCPPFLAGS="$CPPFLAGS"
544     OLDLIBS="$LIBS"
545
546     need_md5="yes"
547
548     ac_prefer_qdbm=yes
549     AC_ARG_WITH(qdbm, AC_HELP_STRING([--without-qdbm], [Don't use qdbm even if it is available]),
550         ac_prefer_qdbm=$withval)
551     if test x$ac_prefer_qdbm != xno; then
552         PKG_CHECK_MODULES(QDBM,qdbm,[ac_qdbm_here=yes],[ac_qdbm_here=no])
553     fi
554
555     ac_prefer_gdbm=yes
556     AC_ARG_WITH(gdbm, AC_HELP_STRING([--without-gdbm], [Don't use gdbm even if it is available]),
557         ac_prefer_gdbm=$withval)
558     if test x$ac_prefer_gdbm != xno -a x$ac_qdbm_here != xyes; then
559         ac_cv_gdbmopen=no
560         GDBM_DIRS="$mutt_cv_prefix /usr/local /usr"
561         AC_MSG_CHECKING([for gdbm_open])
562         for d in $GDBM_DIRS; do
563           if test x$ac_cv_gdbmopen = xno && test -d "$d/include" && test -d "$d/lib"; then
564             GDBM_INC="-I$d/include"
565             GDBM_LIB="-L$d/lib"
566             CPPFLAGS="$OLDCPPFLAGS $GDBM_INC"
567             LIBS="$OLDLIBS $GDBM_LIB -lgdbm"
568             AC_TRY_LINK([#include <gdbm.h>],[gdbm_open(0,0,0,0,0);],[ac_cv_gdbmopen=yes])
569           fi
570         done
571         if test x$ac_cv_gdbmopen = xyes; then
572           AC_MSG_RESULT(yes)
573         else
574           AC_MSG_RESULT(no)
575         fi
576     fi
577
578     ac_bdb_prefix=yes
579     AC_ARG_WITH(bdb, AC_HELP_STRING([--with-bdb[=DIR]], [Use BerkeleyDB4 if gdbm is not available ]),
580         ac_bdb_prefix=$withval)
581     if test x$ac_bdb_prefix != xno -a x$ac_cv_gdbmopen != xyes -a x$ac_qdbm_here != xyes; then
582         test x$ac_bdb_prefix = xyes && ac_bdb_prefix="$mutt_cv_prefix /opt/csw/bdb4 /opt /usr/local /usr"
583         for d in $ac_bdb_prefix; do
584             bdbpfx="$bdbpfx $d"
585             for v in BerkeleyDB.4.3 BerkeleyDB.4.2 BerkeleyDB.4.1; do
586                 bdbpfx="$bdbpfx $d/$v"
587             done
588         done
589         BDB_VERSIONS="db-4 db4 db-4.3 db4.3 db43 db-4.2 db4.2 db42 db-4.1 db4.1 db41 db ''"
590         AC_MSG_CHECKING([for BerkeleyDB > 4.0])
591         for d in $bdbpfx; do
592             BDB_INCLUDE_DIR=""
593             BDB_LIB_DIR=""
594             for v in / $BDB_VERSIONS; do
595                 if test -r "$d/include/$v/db.h"; then
596                     BDB_INCLUDE_DIR="$d/include/$v"
597                     if test -d "$d/lib/$v"; then
598                         BDB_LIB_DIR="$d/lib/$v"
599                         for l in `echo $BDB_VERSIONS`; do
600                             CPPFLAGS="-I$BDB_INCLUDE_DIR $OLDCPPFLAGS"
601                             LIBS="$OLDLIBS -L$BDB_LIB_DIR -l$l"
602                             AC_TRY_LINK([
603                                 #include <stdlib.h>
604                                 #include <db.h>
605                             ],[
606                                 DB *db = NULL;
607                                 db->open(db,NULL,NULL,NULL,0,0,0);
608                             ],[
609                                 ac_cv_dbcreate=yes
610                                 BDB_LIB="$l"
611                                 break
612                             ])
613                         done
614                         test x$ac_cv_dbcreate = xyes && break
615                     fi
616                 fi
617             done
618             test x$BDB_LIB != x && break
619         done
620         if test x$ac_cv_dbcreate = xyes; then
621             AC_MSG_RESULT(yes)
622         else
623             AC_MSG_RESULT(no)
624         fi
625     fi
626
627     if test x$ac_qdbm_here = xyes; then
628         CPPFLAGS="$OLDCPPFLAGS $QDBM_CFLAGS"
629         LIBS="$OLDLIBS $QDBM_LIBS"
630         AC_DEFINE(HAVE_QDBM, 1, [QDBM Support])
631     elif test x$ac_cv_gdbmopen = xyes; then
632         CPPFLAGS="$OLDCPPFLAGS $GDBM_INC"
633         LIBS="$OLDLIBS $GDBM_LIB -lgdbm";
634         AC_DEFINE(HAVE_GDBM, 1, [GDBM Support])
635     elif test x$ac_cv_dbcreate = xyes; then
636         CPPFLAGS="-I$BDB_INCLUDE_DIR $OLDCPPFLAGS"
637         LIBS="$OLDLIBS -L$BDB_LIB_DIR -l$BDB_LIB"
638         AC_DEFINE(HAVE_DB4, 1, [Sleepycat DB4 Support])
639     else
640         AC_MSG_ERROR([You need one of: QDBM, GDBM or Sleepycat DB4 for --enable-hcache])
641     fi
642 fi])
643 dnl -- end cache --
644
645 AC_SUBST(MUTTLIBS)
646 AC_SUBST(MUTT_LIB_OBJECTS)
647 AC_SUBST(LIBNNTP)
648 AC_SUBST(LIBNNTPDEPS)
649
650 dnl -- iconv/gettext --
651
652 AC_ARG_ENABLE(iconv, AC_HELP_STRING([--disable-iconv], [Disable iconv support]),
653         [if test x$enableval = xno ; then
654                 am_cv_func_iconv=no
655         fi
656 ])
657
658 AM_GNU_GETTEXT
659
660 if test "$am_cv_func_iconv" != "yes"
661 then
662   AC_MSG_WARN([Configuring without iconv support. See INSTALL for details])
663 else
664
665 AC_CHECK_HEADERS(iconv.h,
666         [AC_MSG_CHECKING(whether iconv.h defines iconv_t)
667          AC_EGREP_HEADER([typedef.*iconv_t],iconv.h,
668                 [AC_MSG_RESULT(yes)
669                  AC_DEFINE(HAVE_ICONV_T_DEF, 1,
670                         [Define if <iconv.h> defines iconv_t.])],
671                  AC_MSG_RESULT(no))])
672
673 dnl (1) Some implementations of iconv won't convert from UTF-8 to UTF-8.
674 dnl (2) In glibc-2.1.2 and earlier there is a bug that messes up ob and
675 dnl     obl when args 2 and 3 are 0 (fixed in glibc-2.1.3).
676 AC_CACHE_CHECK([whether this iconv is good enough], mutt_cv_iconv_good,
677         mutt_save_LIBS="$LIBS"
678         LIBS="$LIBS $LIBICONV"
679         AC_TRY_RUN([
680 #include <iconv.h>
681 int main()
682 {
683   iconv_t cd;
684 changequote(, )dnl
685   char buf[4];
686 changequote([, ])dnl
687   char *ob;
688   size_t obl;
689   ob = buf, obl = sizeof(buf);
690   return ((cd = iconv_open("UTF-8", "UTF-8")) != (iconv_t)(-1) &&
691           (iconv(cd, 0, 0, &ob, &obl) ||
692            !(ob == buf && obl == sizeof(buf)) ||
693            iconv_close(cd)));
694 }
695                 ],
696                 mutt_cv_iconv_good=yes,
697                 mutt_cv_iconv_good=no,
698                 mutt_cv_iconv_good=yes)
699         LIBS="$mutt_save_LIBS")
700 if test "$mutt_cv_iconv_good" = no; then
701   AC_MSG_ERROR(Try using libiconv instead)
702 fi
703
704 dnl This is to detect implementations such as the one in glibc-2.1,
705 dnl which always convert exactly but return the number of characters
706 dnl converted instead of the number converted inexactly.
707 AC_CACHE_CHECK([whether iconv is non-transcribing], mutt_cv_iconv_nontrans,
708         mutt_save_LIBS="$LIBS"
709         LIBS="$LIBS $LIBICONV"
710         AC_TRY_RUN([
711 #include <iconv.h>
712 #include <string.h>
713 int main()
714 {
715   iconv_t cd;
716   const char *ib;
717   char *ob;
718   size_t ibl, obl;
719   const char *s = "\304\211";
720 changequote(, )dnl
721   char t[3];
722 changequote([, ])dnl
723   ib = s, ibl = 2, ob = t, obl = 3;
724   return ((cd = iconv_open("UTF-8", "UTF-8")) == (iconv_t)(-1) ||
725           iconv(cd, &ib, &ibl, &ob, &obl));
726 }
727                 ],
728                 mutt_cv_iconv_nontrans=no,
729                 mutt_cv_iconv_nontrans=yes,
730                 mutt_cv_iconv_nontrans=no)
731         LIBS="$mutt_save_LIBS")
732 if test "$mutt_cv_iconv_nontrans" = yes; then
733   AC_DEFINE(ICONV_NONTRANS, 1)
734 else
735   AC_DEFINE(ICONV_NONTRANS, 0)
736 fi
737
738 CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/intl"
739
740 if test "$BUILD_INCLUDED_LIBINTL" = "yes"; then
741   AC_DEFINE(HAVE_BIND_TEXTDOMAIN_CODESET,1,
742           [ Define if your gettext has bind_textdomain_codeset. ])
743 else
744   AC_CHECK_FUNCS(bind_textdomain_codeset)
745 fi
746
747 fi # libiconv
748
749 dnl -- locales --
750
751 AC_CHECK_HEADERS(wchar.h)
752
753 AC_CACHE_CHECK([for wchar_t], mutt_cv_wchar_t,
754         AC_TRY_COMPILE([
755 #include <stddef.h>
756 #include <stdlib.h>
757 #ifdef HAVE_WCHAR_H
758 #include <wchar.h>
759 #endif
760                 ],
761                 [ wchar_t wc; return 0; ],
762                 mutt_cv_wchar_t=yes,
763                 mutt_cv_wchar_t=no))
764
765 if test "$mutt_cv_wchar_t" = no; then
766         AC_DEFINE(wchar_t,int,[ Define to 'int' if system headers don't define. ])
767 fi
768
769 AC_CACHE_CHECK([for wint_t], mutt_cv_wint_t,
770         AC_TRY_COMPILE([
771 #include <stddef.h>
772 #include <stdlib.h>
773 #ifdef HAVE_WCHAR_H
774 #include <wchar.h>
775 #endif
776                 ],
777                 [ wint_t wc; return 0; ],
778                 mutt_cv_wint_t=yes,
779                 mutt_cv_wint_t=no))
780
781 if test "$mutt_cv_wint_t" = no; then
782         AC_DEFINE(wint_t,int,[ Define to 'int' if system headers don't define. ])
783 fi
784
785 AC_CHECK_HEADERS(wctype.h)
786 AC_CHECK_FUNCS(iswalnum iswalpha  iswcntrl iswdigit)
787 AC_CHECK_FUNCS(iswgraph iswlower iswprint iswpunct iswspace iswupper)
788 AC_CHECK_FUNCS(iswxdigit towupper towlower)
789
790 AC_CACHE_CHECK([for mbstate_t], mutt_cv_mbstate_t,
791         AC_TRY_COMPILE([
792 #include <stddef.h>
793 #include <stdlib.h>
794 #ifdef HAVE_WCHAR_H
795 #include <wchar.h>
796 #endif
797                 ],
798                 [ mbstate_t s; return 0; ],
799                 mutt_cv_mbstate_t=yes,
800                 mutt_cv_mbstate_t=no))
801
802 if test "$mutt_cv_mbstate_t" = no; then
803         AC_DEFINE(mbstate_t,int,[ Define to 'int' if system headers don't define. ])
804 fi
805
806 wc_funcs=maybe
807 AC_ARG_WITH(wc-funcs, AC_HELP_STRING([--without-wc-funcs], [Do not use the system's wchar_t functions]),
808         wc_funcs=$withval)
809
810 if test "$wc_funcs" != yes -a "$wc_funcs" != no; then
811         AC_CACHE_CHECK([for wchar_t functions], mutt_cv_wc_funcs,
812                 mutt_cv_wc_funcs=no
813                 AC_TRY_LINK([
814 #define _XOPEN_SOURCE 1
815 #include <stddef.h>
816 #include <stdlib.h>
817 #ifdef HAVE_WCTYPE_H
818 #include <wctype.h>
819 #endif
820 #ifdef HAVE_WCHAR_H
821 #include <wchar.h>
822 #endif],
823                         [mbrtowc(0, 0, 0, 0); wctomb(0, 0); wcwidth(0);
824         iswprint(0); iswspace(0); towlower(0); towupper(0); iswalnum(0)],
825                         mutt_cv_wc_funcs=yes))
826         wc_funcs=$mutt_cv_wc_funcs
827 fi
828
829 if test $wc_funcs = yes; then
830         AC_DEFINE(HAVE_WC_FUNCS,1,[ Define if you are using the system's wchar_t functions. ])
831 fi
832
833 AC_CACHE_CHECK([for nl_langinfo and CODESET], mutt_cv_langinfo_codeset,
834   [AC_TRY_LINK([#include <langinfo.h>],
835     [char* cs = nl_langinfo(CODESET);],
836     mutt_cv_langinfo_codeset=yes,
837     mutt_cv_langinfo_codeset=no)])
838 if test $mutt_cv_langinfo_codeset = yes; then
839   AC_DEFINE(HAVE_LANGINFO_CODESET,1,[ Define if you have <langinfo.h> and nl_langinfo(CODESET). ])
840 fi
841
842 AC_CACHE_CHECK([for nl_langinfo and YESEXPR], mutt_cv_langinfo_yesexpr,
843   [AC_TRY_LINK([#include <langinfo.h>],
844     [char* cs = nl_langinfo(YESEXPR);],
845     mutt_cv_langinfo_yesexpr=yes,
846     mutt_cv_langinfo_yesexpr=no)])
847 if test $mutt_cv_langinfo_yesexpr = yes; then
848   AC_DEFINE(HAVE_LANGINFO_YESEXPR,1,[ Define if you have <langinfo.h> and nl_langinfo(YESEXPR). ])
849 fi
850
851 dnl -- libesmtp --
852 MUTT_AM_LIBESMTP
853 if test x$use_libesmtp = xyes; then
854     CFLAGS="$CFLAGS $mutt_libesmtp_cflags"
855     MUTTLIBS="$MUTTLIBS $mutt_libesmtp_libs"
856     MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS mutt_libesmtp.o"
857
858     AC_DEFINE(USE_LIBESMTP,
859               1,
860               [Define to enable the use of libesmtp])
861 fi
862 dnl -- end libesmtp --
863
864 dnl -- sgml tools --
865
866 dnl Documentation tools
867 have_openjade="no"
868 AC_PATH_PROG([OSPCAT], [ospcat], [none])
869 if test "$OSPCAT" != "none"
870 then
871   AC_MSG_CHECKING([for openjade docbook stylesheets])
872   dslosfile=`ospcat --public-id="-//Norman Walsh//DOCUMENT DocBook Print Stylesheet//EN"`
873   DSLROOT=`echo $dslosfile | sed -n -e "s/.*SOIBASE='\(@<:@^'@:>@*\)\/catalog'.*/\1/p"`
874   # ospcat may spit out an absolute path without an SOIBASE
875   if test -z "$DSLROOT"
876   then
877     DSLROOT=`echo $dslosfile | sed -e 's|<OSFILE>\(.*\)/print/docbook.dsl|\1|'`
878   fi
879   if test -f $DSLROOT/print/docbook.dsl
880   then
881     AC_MSG_RESULT([in $DSLROOT])
882     have_openjade="yes"
883   else
884     AC_MSG_RESULT([not found: PDF documentation will not be built.])
885   fi
886 fi
887 AC_SUBST(DSLROOT)
888
889 AC_MSG_CHECKING([for lynx])
890 AC_PATH_PROG([HTML2TXT_CMD], [lynx], [none])
891 if test x"$HTML2TXT_CMD" = x"none"
892 then
893   AC_MSG_CHECKING([for w3m])
894   AC_PATH_PROG([HTML2TXT_CMD], [w3m], [none])
895 fi
896 if test x"$HTML2TXT_CMD" = x"none"
897 then
898   AC_MSG_CHECKING([for elinks])
899   AC_PATH_PROG([HTML2TXT_CMD], [elinks], [none])
900 fi
901 case "$HTML2TXT_CMD" in
902   *elinks*)
903     HTML2TXT_CMD="$HTML2TXT_CMD -dump -no-numbering -no-references \$^ > \$@"
904     ;;
905   *lynx*)
906     HTML2TXT_CMD="$HTML2TXT_CMD -dump -nolist -with_backspaces \$^ > \$@"
907     ;;
908   *w3m*)
909     HTML2TXT_CMD="$HTML2TXT_CMD -dump \$^ > \$@"
910     ;;
911   *)
912     HTML2TXT_CMD="true"
913     ;;
914 esac
915 AC_SUBST(HTML2TXT_CMD)
916
917 AC_MSG_CHECKING([for tidy])
918 AC_PATH_PROG([HTMLCLEAN_CMD], [tidy], [none])
919
920 if test x"$HTMLCLEAN_CMD" != x"none"
921 then
922   HTMLCLEAN_CMD="$HTMLCLEAN_CMD -q -i -m -asxml -utf8 "
923 else
924   HTMLCLEAN_CMD="echo "
925 fi
926 AC_SUBST(HTMLCLEAN_CMD)
927
928 AC_OUTPUT(Makefile intl/Makefile m4/Makefile
929         po/Makefile.in doc/Makefile contrib/Makefile
930         lib-lib/Makefile
931         lib-mime/Makefile
932         lib-crypt/Makefile
933         lib-hash/Makefile
934         lib-ui/Makefile
935         lib/Makefile
936         imap/Makefile
937         pop/Makefile
938         nntp/Makefile
939         Madmuttrc.head
940         doc/instdoc.sh)