candy: make wc
[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
169         dnl --- now that we've found it, check the link
170
171         AC_CHECK_LIB(slang, SLtt_get_terminfo,
172             [MUTTLIBS="$MUTTLIBS -lslang -lm"],
173             [AC_MSG_ERROR(unable to compile.  check config.log)], -lm)
174     ],
175     [   mutt_cv_curses=/usr
176         AC_ARG_WITH(curses, AC_HELP_STRING([--with-curses=DIR], [Where ncurses is installed]), [
177             if test $withval != yes; then
178                 mutt_cv_curses=$withval
179             fi
180             if test x$mutt_cv_curses != x/usr; then
181                 LDFLAGS="-L${mutt_cv_curses}/lib $LDFLAGS"
182                 CPPFLAGS="$CPPFLAGS -I${mutt_cv_curses}/include"
183             fi
184         ])
185
186         AC_CHECK_FUNC(initscr,,[
187         cf_ncurses="ncurses"
188         for lib in ncursesw ncurses; do
189             AC_CHECK_LIB($lib, waddnwstr, [cf_ncurses="$lib"; break])
190         done
191         AC_CHECK_LIB($cf_ncurses, initscr,
192             [   MUTTLIBS="$MUTTLIBS -l$cf_ncurses"
193                 if test x$mutt_cv_curses = x/usr -a -d /usr/include/ncurses; then
194                     CPPFLAGS="$CPPFLAGS -I/usr/include/ncurses"
195                 fi
196
197                 if test "$cf_ncurses" = ncursesw; then
198                     AC_CHECK_HEADERS(ncurses/ncurses.h,[cf_cv_ncurses_header="ncurses/ncurses.h"])
199                     AC_CHECK_HEADERS(ncursesw/ncurses.h,[cf_cv_ncurses_header="ncursesw/ncurses.h"])
200                 else
201                     AC_CHECK_HEADERS(ncurses.h,[cf_cv_ncurses_header="ncurses.h"])
202                 fi
203             ],
204             [CF_CURSES_LIBS])
205         ])
206
207         old_LIBS="$LIBS"
208         LIBS="$LIBS $MUTTLIBS"
209         CF_CHECK_FUNCDECLS([#include <${cf_cv_ncurses_header-curses.h}>],
210                            [start_color typeahead bkgdset curs_set meta use_default_colors resizeterm])
211         if test "$ac_cv_func_decl_start_color" = yes; then
212             AC_DEFINE(HAVE_COLOR,1,[ Define if your curses library supports color. ])
213         fi
214         LIBS="$old_LIBS"
215     ])
216
217 AC_CHECK_HEADERS(stdarg.h sys/ioctl.h ioctl.h sysexits.h)
218 AC_CHECK_HEADERS(sys/time.h sys/resource.h)
219 AC_CHECK_HEADERS(unix.h)
220
221 AC_CHECK_FUNCS(setrlimit getsid isctype)
222
223 AC_TYPE_SIGNAL
224
225 AC_MSG_CHECKING(for sig_atomic_t in signal.h)
226 AC_EGREP_HEADER(sig_atomic_t,signal.h,
227     [   ac_cv_type_sig_atomic_t=yes;
228         AC_EGREP_HEADER(volatile.*sig_atomic_t,
229                         signal.h,
230                         [is_sig_atomic_t_volatile=yes; AC_MSG_RESULT([yes, volatile])],
231                         [is_sig_atomic_t_volatile=no;  AC_MSG_RESULT([yes, non volatile])])
232     ],
233     [   AC_MSG_RESULT(no)
234         AC_CHECK_TYPE(sig_atomic_t, int)
235         is_sig_atomic_t_volatile=no
236     ])
237 if test $is_sig_atomic_t_volatile = 'yes'
238 then
239     AC_DEFINE(SIG_ATOMIC_VOLATILE_T, sig_atomic_t)
240 else
241     AC_DEFINE(SIG_ATOMIC_VOLATILE_T, [volatile sig_atomic_t])
242 fi
243
244 AC_DECL_SYS_SIGLIST
245 AC_TYPE_PID_T
246
247 AC_CHECK_FUNC(getopt)
248 if test $ac_cv_func_getopt = yes; then
249     AC_CHECK_HEADERS(getopt.h)
250 fi
251
252 AC_CHECK_FUNC(regcomp)
253 if test $ac_cv_func_regcomp = yes; then
254    AC_CHECK_HEADERS(regex.h)
255 fi
256
257 AC_ARG_WITH(homespool,
258             AC_HELP_STRING([--with-homespool[=FILE]],
259                            [File in user's directory where new mail is spooled]),
260                            with_homespool=${withval})
261 if test x$with_homespool != x; then
262     if test $with_homespool = yes; then
263             with_homespool=mailbox
264     fi
265     AC_DEFINE_UNQUOTED(MAILPATH,"$with_homespool",[ Where new mail is spooled. ])
266     AC_DEFINE(HOMESPOOL,1,
267     [   Is mail spooled to the user's home directory?  If defined,
268         MAILPATH should be set to the filename of the spool mailbox
269         relative the the home directory.
270         use: configure --with-homespool=FILE
271     ])
272     AC_DEFINE(USE_DOTLOCK,1,[ Define to use dotlocking for mailboxes. ])
273     mutt_cv_setgid=no
274 else
275     AC_ARG_WITH(mailpath, AC_HELP_STRING([--with-mailpath=DIR], [Directory where spool mailboxes are located]),
276         [mutt_cv_mailpath=$withval],
277         [ AC_CACHE_CHECK(where new mail is stored, mutt_cv_mailpath,
278             [mutt_cv_mailpath=no
279             if test -d /var/mail; then
280                 mutt_cv_mailpath=/var/mail
281             elif test -d /var/spool/mail; then
282                 mutt_cv_mailpath=/var/spool/mail
283             elif test -d /usr/spool/mail; then
284                 mutt_cv_mailpath=/usr/spool/mail
285             elif test -d /usr/mail; then
286                 mutt_cv_mailpath=/usr/mail
287             fi])
288         ])
289     if test "$mutt_cv_mailpath" = no; then
290         AC_MSG_ERROR("Could not determine where new mail is stored.")
291     fi
292     AC_DEFINE_UNQUOTED(MAILPATH,"$mutt_cv_mailpath",[ Where new mail is spooled. ])
293
294     AC_CACHE_CHECK(if $mutt_cv_mailpath is world writable, mutt_cv_worldwrite, [AC_TRY_RUN([#include <sys/types.h>
295 #include <sys/stat.h>
296
297 int main (int argc, char **argv)
298 {
299         struct stat s;
300
301         stat ("$mutt_cv_mailpath", &s);
302         if (s.st_mode & S_IWOTH) exit (0);
303         exit (1);
304 }], mutt_cv_worldwrite=yes, mutt_cv_worldwrite=no, mutt_cv_worldwrite=no)])
305
306         mutt_cv_setgid=no
307         if test $mutt_cv_worldwrite = yes; then
308                 AC_DEFINE(USE_DOTLOCK,1,[ Define to use dotlocking for mailboxes. ])
309         else
310                 AC_CACHE_CHECK(if $mutt_cv_mailpath is group writable, mutt_cv_groupwrite, [AC_TRY_RUN([#include <sys/types.h>
311 #include <sys/stat.h>
312
313 int main (int argc, char **argv)
314 {
315         struct stat s;
316
317         stat ("$mutt_cv_mailpath", &s);
318         if (s.st_mode & S_IWGRP) exit (0);
319         exit (1);
320 }], mutt_cv_groupwrite=yes, mutt_cv_groupwrite=no, mutt_cv_groupwrite=no)])
321
322         if test $mutt_cv_groupwrite = yes; then
323             AC_DEFINE(USE_DOTLOCK,1,[ Define to use dotlocking for mailboxes. ])
324             AC_DEFINE(USE_SETGID,1,[ Define if mutt should run setgid "mail". ])
325             mutt_cv_setgid=yes
326         fi
327     fi
328 fi
329
330 AC_MSG_CHECKING(where to put the documentation)
331 AC_ARG_WITH(docdir, AC_HELP_STRING([--with-docdir=PATH], [Specify where to put the documentation]),
332         [mutt_cv_docdir=$withval],
333         [mutt_cv_docdir="${prefix}/doc/madmutt"])
334 AC_MSG_RESULT($mutt_cv_docdir)
335
336 docdir=$mutt_cv_docdir
337 AC_SUBST(docdir)
338
339 if test x$mutt_cv_setgid = xyes; then
340     DOTLOCK_GROUP='mail'
341     DOTLOCK_PERMISSION=2755
342 else
343     DOTLOCK_GROUP=''
344     DOTLOCK_PERMISSION=755
345 fi
346 AC_SUBST(DOTLOCK_GROUP)
347 AC_SUBST(DOTLOCK_PERMISSION)
348
349 dnl -- socket dependencies --
350
351 AC_ARG_ENABLE(nntp, AC_HELP_STRING([--enable-nntp],[Enable NNTP support]),[
352     if test x$enableval = xyes ; then
353         AC_DEFINE(USE_NNTP,1,[ Compiling with newsreading support with NNTP ])
354         LIBNNTP="-Lnntp -lnntp"
355         LIBNNTPDEPS="\$(top_srcdir)/nntp/nntp.h nntp/libnntp.a"
356         need_nntp="yes"
357     fi
358 ])
359 AM_CONDITIONAL(BUILD_NNTP, test x$need_nntp = xyes)
360
361 dnl -- end socket dependencies --
362
363 AC_MSG_CHECKING([for socklen_t])
364 AC_EGREP_HEADER(socklen_t, sys/socket.h, AC_MSG_RESULT([yes]),
365         AC_MSG_RESULT([no])
366         AC_DEFINE(socklen_t,int, [ Define to 'int' if <sys/socket.h> doesn't have it. ]))
367 AC_CHECK_FUNC(gethostent, , AC_CHECK_LIB(nsl, gethostent))
368 AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
369 AC_CHECK_FUNCS(getaddrinfo)
370
371 dnl -- imap dependencies --
372
373 AC_ARG_WITH(gss, AC_HELP_STRING([--with-gss[=PFX]], [Compile in GSSAPI authentication for IMAP]),
374     gss_prefix="$withval", gss_prefix="no")
375 if test "$gss_prefix" != "no"
376 then
377     MUTT_AM_PATH_GSSAPI(gss_prefix)
378     AC_MSG_CHECKING(GSSAPI implementation)
379     AC_MSG_RESULT($GSSAPI_IMPL)
380     if test "$GSSAPI_IMPL" = "none"
381     then
382       AC_CACHE_SAVE
383       AC_MSG_RESULT([GSSAPI libraries not found])
384     fi
385     if test "$GSSAPI_IMPL" = "Heimdal"
386     then
387       AC_DEFINE(HAVE_HEIMDAL,1,[ Define if your GSSAPI implementation is Heimdal ])
388     fi
389     CPPFLAGS="$CPPFLAGS $GSSAPI_CFLAGS"
390     MUTTLIBS="$MUTTLIBS $GSSAPI_LIBS"
391     AC_DEFINE(USE_GSS,1,[ Define if you have GSSAPI libraries available ])
392     need_gss="yes"
393 fi
394 AM_CONDITIONAL(USE_GSS, test x$need_gss = xyes)
395
396 dnl -- end imap dependencies --
397
398 AC_ARG_WITH(ssl, AC_HELP_STRING([--with-ssl[=PFX]], [Compile in SSL support for POP/IMAP]),
399 [   if test "$with_ssl" != "no"; then
400         if test "$with_ssl" != "yes"; then
401             LDFLAGS="$LDFLAGS -L$withval/lib"
402             CPPFLAGS="$CPPFLAGS -I$withval/include"
403         fi
404         saved_LIBS="$LIBS"
405
406         AC_CHECK_LIB(crypto, X509_new,, AC_MSG_ERROR([Unable to find SSL library]))
407         AC_CHECK_LIB(ssl, SSL_new,, AC_MSG_ERROR([Unable to find SSL library]), -lcrypto)
408
409         AC_CHECK_FUNCS(RAND_status RAND_egd)
410
411         AC_DEFINE(USE_SSL,1,[ Define if you want support for SSL. ])
412         LIBS="$saved_LIBS"
413         MUTTLIBS="$MUTTLIBS -lssl -lcrypto"
414         need_ssl=yes
415     fi
416 ])
417
418 AC_ARG_WITH([gnutls], AC_HELP_STRING([--with-gnutls], [Enable SSL support using gnutls]),
419             [gnutls_prefix="$withval"], [gnutls_prefix="no"])
420 if test "$gnutls_prefix" != "no"; then
421     if test x"$need_ssl" = x"yes"; then
422         AC_MSG_ERROR([Only either OpenSSL or GNUTLS may be used])
423     fi
424     AM_PATH_LIBGNUTLS(,[
425         CPPFLAGS="$CPPFLAGS $LIBGNUTLS_CFLAGS"
426         MUTTLIBS="$MUTTLIBS $LIBGNUTLS_LIBS"
427         AC_DEFINE(USE_GNUTLS, 1, [Define if you want support for SSL via the gnutls library.])
428         need_ssl=yes],
429         [AC_MSG_ERROR([could not find libgnutls])
430     ])
431 fi
432 AM_CONDITIONAL(USE_SSL, test x$need_ssl = xyes)
433 AC_SUBST(MUTT_SSL_OBJECTS)
434
435 AC_ARG_WITH(sasl2, AC_HELP_STRING([--with-sasl2[=PFX]],
436             [Use Cyrus SASL library version 2 for POP/IMAP authentication]),[
437     if test "$with_sasl2" != "no"; then
438         if test "$with_sasl2" != "yes"; then
439             CPPFLAGS="$CPPFLAGS -I$with_sasl2/include"
440             LDFLAGS="$LDFLAGS -L$with_sasl2/lib"
441         fi
442
443         saved_LIBS="$LIBS"
444
445         AC_CHECK_LIB(sasl2, sasl_client_init,,AC_MSG_ERROR([could not find libsasl2]))
446
447         MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS mutt_sasl.o"
448         MUTTLIBS="$MUTTLIBS -lsasl2"
449         LIBS="$saved_LIBS"
450         AC_DEFINE(USE_SASL,1,
451                   [Define if want to use version 2 of the Cyrus SASL library.])
452         need_sasl=yes
453     fi
454 ])
455 AM_CONDITIONAL(USE_SASL, test x$need_sasl = xyes)
456
457 AC_ARG_WITH(idn, AC_HELP_STRING([--with-idn=[PFX]], [Use GNU libidn for domain names]),[
458     if test x$with_idn != xno ; then
459         PKG_CHECK_MODULES(IDN,libidn,[
460             if $PKG_CONFIG --atleast-version=0.6; then
461                 AC_MSG_ERROR([libidn is too old, want 0.6 at least])
462             fi
463             CPPFLAGS="$CPPFLAGS $IDN_CFLAGS"
464             LDFLAGS="$LDFLAGS $IDN_LIBS"
465         ],[AC_MSG_ERROR([could not find libidn])])
466     fi
467 ])
468
469 dnl -- end socket --
470
471 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [Enable debugging support]),
472     [ if test x$enableval = xyes ; then
473             AC_DEFINE(DEBUG,1,[ Define to enable debugging info. ])
474       fi
475      ])
476
477 AC_ARG_ENABLE(flock, AC_HELP_STRING([--enable-flock], [Use flock() to lock files]),
478         [if test $enableval = yes; then
479                 AC_DEFINE(USE_FLOCK,1, [ Define to use flock() to lock mailboxes. ])
480         fi])
481
482 mutt_cv_fcntl=yes
483 AC_ARG_ENABLE(fcntl, AC_HELP_STRING([--disable-fcntl], [Do NOT use fcntl() to lock files]),
484         [if test $enableval = no; then mutt_cv_fcntl=no; fi])
485
486 if test $mutt_cv_fcntl = yes; then
487         AC_DEFINE(USE_FCNTL,1, [ Define to use fcntl() to lock folders. ])
488 fi
489
490 AC_MSG_CHECKING(whether struct dirent defines d_ino)
491 ac_cv_dirent_d_ino=no
492 AC_TRY_LINK([#include <dirent.h>],[struct dirent dp; (void)dp.d_ino],[ac_cv_dirent_d_ino=yes])
493 if test x$ac_cv_dirent_d_ino = xyes ; then
494   AC_DEFINE(HAVE_DIRENT_D_INO,1,
495             [Define to 1 if your system has the dirent::d_ino member])
496 fi
497 AC_MSG_RESULT($ac_cv_dirent_d_ino)
498
499 AC_ARG_ENABLE(buffy-size, AC_HELP_STRING([--enable-buffy-size], [Use file size attribute instead of access time]),
500         [if test x$enableval = xyes; then
501                 AC_DEFINE(BUFFY_SIZE,1,[ Define to enable the "buffy_size" feature. ])
502         fi])
503
504 dnl -- start cache --
505 AC_ARG_ENABLE(hcache, AC_HELP_STRING([--enable-hcache], [Enable header caching]),
506 [if test x$enableval = xyes; then
507     AC_DEFINE(USE_HCACHE, 1, [Enable header caching])
508
509     OLDCPPFLAGS="$CPPFLAGS"
510     OLDLIBS="$LIBS"
511
512     need_md5="yes"
513
514     ac_prefer_qdbm=yes
515     AC_ARG_WITH(qdbm, AC_HELP_STRING([--without-qdbm], [Don't use qdbm even if it is available]),
516         ac_prefer_qdbm=$withval)
517     if test x$ac_prefer_qdbm != xno; then
518         PKG_CHECK_MODULES(QDBM,qdbm,[ac_qdbm_here=yes],[ac_qdbm_here=no])
519     fi
520
521     ac_prefer_gdbm=yes
522     AC_ARG_WITH(gdbm, AC_HELP_STRING([--without-gdbm], [Don't use gdbm even if it is available]),
523         ac_prefer_gdbm=$withval)
524     if test x$ac_prefer_gdbm != xno -a x$ac_qdbm_here != xyes; then
525         ac_cv_gdbmopen=no
526         GDBM_DIRS="$mutt_cv_prefix /usr/local /usr"
527         AC_MSG_CHECKING([for gdbm_open])
528         for d in $GDBM_DIRS; do
529           if test x$ac_cv_gdbmopen = xno && test -d "$d/include" && test -d "$d/lib"; then
530             GDBM_INC="-I$d/include"
531             GDBM_LIB="-L$d/lib"
532             CPPFLAGS="$OLDCPPFLAGS $GDBM_INC"
533             LIBS="$OLDLIBS $GDBM_LIB -lgdbm"
534             AC_TRY_LINK([#include <gdbm.h>],[gdbm_open(0,0,0,0,0);],[ac_cv_gdbmopen=yes])
535           fi
536         done
537         if test x$ac_cv_gdbmopen = xyes; then
538           AC_MSG_RESULT(yes)
539         else
540           AC_MSG_RESULT(no)
541         fi
542     fi
543
544     ac_bdb_prefix=yes
545     AC_ARG_WITH(bdb, AC_HELP_STRING([--with-bdb[=DIR]], [Use BerkeleyDB4 if gdbm is not available ]),
546         ac_bdb_prefix=$withval)
547     if test x$ac_bdb_prefix != xno -a x$ac_cv_gdbmopen != xyes -a x$ac_qdbm_here != xyes; then
548         test x$ac_bdb_prefix = xyes && ac_bdb_prefix="$mutt_cv_prefix /opt/csw/bdb4 /opt /usr/local /usr"
549         for d in $ac_bdb_prefix; do
550             bdbpfx="$bdbpfx $d"
551             for v in BerkeleyDB.4.3 BerkeleyDB.4.2 BerkeleyDB.4.1; do
552                 bdbpfx="$bdbpfx $d/$v"
553             done
554         done
555         BDB_VERSIONS="db-4 db4 db-4.3 db4.3 db43 db-4.2 db4.2 db42 db-4.1 db4.1 db41 db ''"
556         AC_MSG_CHECKING([for BerkeleyDB > 4.0])
557         for d in $bdbpfx; do
558             BDB_INCLUDE_DIR=""
559             BDB_LIB_DIR=""
560             for v in / $BDB_VERSIONS; do
561                 if test -r "$d/include/$v/db.h"; then
562                     BDB_INCLUDE_DIR="$d/include/$v"
563                     if test -d "$d/lib/$v"; then
564                         BDB_LIB_DIR="$d/lib/$v"
565                         for l in `echo $BDB_VERSIONS`; do
566                             CPPFLAGS="-I$BDB_INCLUDE_DIR $OLDCPPFLAGS"
567                             LIBS="$OLDLIBS -L$BDB_LIB_DIR -l$l"
568                             AC_TRY_LINK([
569                                 #include <stdlib.h>
570                                 #include <db.h>
571                             ],[
572                                 DB *db = NULL;
573                                 db->open(db,NULL,NULL,NULL,0,0,0);
574                             ],[
575                                 ac_cv_dbcreate=yes
576                                 BDB_LIB="$l"
577                                 break
578                             ])
579                         done
580                         test x$ac_cv_dbcreate = xyes && break
581                     fi
582                 fi
583             done
584             test x$BDB_LIB != x && break
585         done
586         if test x$ac_cv_dbcreate = xyes; then
587             AC_MSG_RESULT(yes)
588         else
589             AC_MSG_RESULT(no)
590         fi
591     fi
592
593     if test x$ac_qdbm_here = xyes; then
594         CPPFLAGS="$OLDCPPFLAGS $QDBM_CFLAGS"
595         LIBS="$OLDLIBS $QDBM_LIBS"
596         AC_DEFINE(HAVE_QDBM, 1, [QDBM Support])
597     elif test x$ac_cv_gdbmopen = xyes; then
598         CPPFLAGS="$OLDCPPFLAGS $GDBM_INC"
599         LIBS="$OLDLIBS $GDBM_LIB -lgdbm";
600         AC_DEFINE(HAVE_GDBM, 1, [GDBM Support])
601     elif test x$ac_cv_dbcreate = xyes; then
602         CPPFLAGS="-I$BDB_INCLUDE_DIR $OLDCPPFLAGS"
603         LIBS="$OLDLIBS -L$BDB_LIB_DIR -l$BDB_LIB"
604         AC_DEFINE(HAVE_DB4, 1, [Sleepycat DB4 Support])
605     else
606         AC_MSG_ERROR([You need one of: QDBM, GDBM or Sleepycat DB4 for --enable-hcache])
607     fi
608 fi])
609 dnl -- end cache --
610
611 AC_SUBST(MUTTLIBS)
612 AC_SUBST(MUTT_LIB_OBJECTS)
613 AC_SUBST(LIBNNTP)
614 AC_SUBST(LIBNNTPDEPS)
615
616 dnl -- iconv/gettext --
617
618 AC_ARG_ENABLE(iconv, AC_HELP_STRING([--disable-iconv], [Disable iconv support]),
619         [if test x$enableval = xno ; then
620                 am_cv_func_iconv=no
621         fi
622 ])
623
624 AM_GNU_GETTEXT
625
626 if test "$am_cv_func_iconv" != "yes"
627 then
628   AC_MSG_WARN([Configuring without iconv support. See INSTALL for details])
629 else
630
631 AC_CHECK_HEADERS(iconv.h,
632         [AC_MSG_CHECKING(whether iconv.h defines iconv_t)
633          AC_EGREP_HEADER([typedef.*iconv_t],iconv.h,
634                 [AC_MSG_RESULT(yes)
635                  AC_DEFINE(HAVE_ICONV_T_DEF, 1,
636                         [Define if <iconv.h> defines iconv_t.])],
637                  AC_MSG_RESULT(no))])
638
639 dnl (1) Some implementations of iconv won't convert from UTF-8 to UTF-8.
640 dnl (2) In glibc-2.1.2 and earlier there is a bug that messes up ob and
641 dnl     obl when args 2 and 3 are 0 (fixed in glibc-2.1.3).
642 AC_CACHE_CHECK([whether this iconv is good enough], mutt_cv_iconv_good,
643         mutt_save_LIBS="$LIBS"
644         LIBS="$LIBS $LIBICONV"
645         AC_TRY_RUN([
646 #include <iconv.h>
647 int main()
648 {
649   iconv_t cd;
650 changequote(, )dnl
651   char buf[4];
652 changequote([, ])dnl
653   char *ob;
654   size_t obl;
655   ob = buf, obl = sizeof(buf);
656   return ((cd = iconv_open("UTF-8", "UTF-8")) != (iconv_t)(-1) &&
657           (iconv(cd, 0, 0, &ob, &obl) ||
658            !(ob == buf && obl == sizeof(buf)) ||
659            iconv_close(cd)));
660 }
661                 ],
662                 mutt_cv_iconv_good=yes,
663                 mutt_cv_iconv_good=no,
664                 mutt_cv_iconv_good=yes)
665         LIBS="$mutt_save_LIBS")
666 if test "$mutt_cv_iconv_good" = no; then
667   AC_MSG_ERROR(Try using libiconv instead)
668 fi
669
670 dnl This is to detect implementations such as the one in glibc-2.1,
671 dnl which always convert exactly but return the number of characters
672 dnl converted instead of the number converted inexactly.
673 AC_CACHE_CHECK([whether iconv is non-transcribing], mutt_cv_iconv_nontrans,
674         mutt_save_LIBS="$LIBS"
675         LIBS="$LIBS $LIBICONV"
676         AC_TRY_RUN([
677 #include <iconv.h>
678 #include <string.h>
679 int main()
680 {
681   iconv_t cd;
682   const char *ib;
683   char *ob;
684   size_t ibl, obl;
685   const char *s = "\304\211";
686 changequote(, )dnl
687   char t[3];
688 changequote([, ])dnl
689   ib = s, ibl = 2, ob = t, obl = 3;
690   return ((cd = iconv_open("UTF-8", "UTF-8")) == (iconv_t)(-1) ||
691           iconv(cd, &ib, &ibl, &ob, &obl));
692 }
693                 ],
694                 mutt_cv_iconv_nontrans=no,
695                 mutt_cv_iconv_nontrans=yes,
696                 mutt_cv_iconv_nontrans=no)
697         LIBS="$mutt_save_LIBS")
698 if test "$mutt_cv_iconv_nontrans" = yes; then
699     AC_DEFINE(ICONV_NONTRANS, 1)
700 else
701     AC_DEFINE(ICONV_NONTRANS, 0)
702 fi
703
704 CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/intl"
705
706 if test "$BUILD_INCLUDED_LIBINTL" = "yes"; then
707     AC_DEFINE(HAVE_BIND_TEXTDOMAIN_CODESET,1,
708               [ Define if your gettext has bind_textdomain_codeset. ])
709 else
710     AC_CHECK_FUNCS(bind_textdomain_codeset)
711 fi
712
713 fi # libiconv
714
715 dnl -- locales --
716
717 AC_CHECK_HEADERS(wchar.h)
718 AC_CHECK_HEADERS(wctype.h)
719 AC_CHECK_FUNCS(iswalnum iswalpha  iswcntrl iswdigit)
720 AC_CHECK_FUNCS(iswgraph iswlower iswprint iswpunct iswspace iswupper)
721 AC_CHECK_FUNCS(iswxdigit towupper towlower)
722 AC_TYPE_MBSTATE_T
723
724 AC_CACHE_CHECK([for nl_langinfo and CODESET], mutt_cv_langinfo_codeset,
725   [AC_TRY_LINK([#include <langinfo.h>],
726     [char* cs = nl_langinfo(CODESET);],
727     mutt_cv_langinfo_codeset=yes,
728     mutt_cv_langinfo_codeset=no)])
729 if test $mutt_cv_langinfo_codeset = yes; then
730   AC_DEFINE(HAVE_LANGINFO_CODESET,1,[ Define if you have <langinfo.h> and nl_langinfo(CODESET). ])
731 fi
732
733 AC_CACHE_CHECK([for nl_langinfo and YESEXPR], mutt_cv_langinfo_yesexpr,
734   [AC_TRY_LINK([#include <langinfo.h>],
735     [char* cs = nl_langinfo(YESEXPR);],
736     mutt_cv_langinfo_yesexpr=yes,
737     mutt_cv_langinfo_yesexpr=no)])
738 if test $mutt_cv_langinfo_yesexpr = yes; then
739   AC_DEFINE(HAVE_LANGINFO_YESEXPR,1,[ Define if you have <langinfo.h> and nl_langinfo(YESEXPR). ])
740 fi
741
742 dnl -- libesmtp --
743 MUTT_AM_LIBESMTP
744 if test x$use_libesmtp = xyes; then
745     CFLAGS="$CFLAGS $mutt_libesmtp_cflags"
746     MUTTLIBS="$MUTTLIBS $mutt_libesmtp_libs"
747     MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS mutt_libesmtp.o"
748
749     AC_DEFINE(USE_LIBESMTP,
750               1,
751               [Define to enable the use of libesmtp])
752 fi
753 dnl -- end libesmtp --
754
755 dnl -- sgml tools --
756
757 dnl Documentation tools
758 have_openjade="no"
759 AC_PATH_PROG([OSPCAT], [ospcat], [none])
760 if test "$OSPCAT" != "none"
761 then
762   AC_MSG_CHECKING([for openjade docbook stylesheets])
763   dslosfile=`ospcat --public-id="-//Norman Walsh//DOCUMENT DocBook Print Stylesheet//EN"`
764   DSLROOT=`echo $dslosfile | sed -n -e "s/.*SOIBASE='\(@<:@^'@:>@*\)\/catalog'.*/\1/p"`
765   # ospcat may spit out an absolute path without an SOIBASE
766   if test -z "$DSLROOT"
767   then
768     DSLROOT=`echo $dslosfile | sed -e 's|<OSFILE>\(.*\)/print/docbook.dsl|\1|'`
769   fi
770   if test -f $DSLROOT/print/docbook.dsl
771   then
772     AC_MSG_RESULT([in $DSLROOT])
773     have_openjade="yes"
774   else
775     AC_MSG_RESULT([not found: PDF documentation will not be built.])
776   fi
777 fi
778 AC_SUBST(DSLROOT)
779
780 AC_MSG_CHECKING([for lynx])
781 AC_PATH_PROG([HTML2TXT_CMD], [lynx], [none])
782 if test x"$HTML2TXT_CMD" = x"none"
783 then
784   AC_MSG_CHECKING([for w3m])
785   AC_PATH_PROG([HTML2TXT_CMD], [w3m], [none])
786 fi
787 if test x"$HTML2TXT_CMD" = x"none"
788 then
789   AC_MSG_CHECKING([for elinks])
790   AC_PATH_PROG([HTML2TXT_CMD], [elinks], [none])
791 fi
792 case "$HTML2TXT_CMD" in
793   *elinks*)
794     HTML2TXT_CMD="$HTML2TXT_CMD -dump -no-numbering -no-references \$^ > \$@"
795     ;;
796   *lynx*)
797     HTML2TXT_CMD="$HTML2TXT_CMD -dump -nolist -with_backspaces \$^ > \$@"
798     ;;
799   *w3m*)
800     HTML2TXT_CMD="$HTML2TXT_CMD -dump \$^ > \$@"
801     ;;
802   *)
803     HTML2TXT_CMD="true"
804     ;;
805 esac
806 AC_SUBST(HTML2TXT_CMD)
807
808 AC_MSG_CHECKING([for tidy])
809 AC_PATH_PROG([HTMLCLEAN_CMD], [tidy], [none])
810
811 if test x"$HTMLCLEAN_CMD" != x"none"
812 then
813   HTMLCLEAN_CMD="$HTMLCLEAN_CMD -q -i -m -asxml -utf8 "
814 else
815   HTMLCLEAN_CMD="echo "
816 fi
817 AC_SUBST(HTMLCLEAN_CMD)
818
819 AC_OUTPUT(Makefile intl/Makefile m4/Makefile
820         po/Makefile.in doc/Makefile contrib/Makefile
821         lib-lib/Makefile
822         lib-mime/Makefile
823         lib-crypt/Makefile
824         lib-hash/Makefile
825         lib-sys/Makefile
826         lib-ui/Makefile
827         lib/Makefile
828         imap/Makefile
829         pop/Makefile
830         nntp/Makefile
831         Madmuttrc.head
832         doc/instdoc.sh)