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