Autoconf cleanup to suggested practice (AS_IF & AC_MSG_FAILURE). More to do.
[mmh] / configure.ac
1 dnl
2 dnl configure.ac -- autoconf template for nmh
3 dnl
4
5 dnl Move this up a bit
6 AC_PREREQ([2.61])
7
8 AC_INIT([nmh], m4_normalize(m4_include([VERSION])), [nmh-workers@nongnu.org])
9 AC_CONFIG_SRCDIR([h/nmh.h])
10 AC_CONFIG_HEADER([config.h])
11 AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
12
13 AC_CANONICAL_HOST
14
15 echo "configuring for AC_PACKAGE_NAME-AC_PACKAGE_VERSION"
16 AC_SUBST(VERSION,AC_PACKAGE_VERSION)dnl
17
18 dnl What date of nmh are we building?
19 DATE=`cat ${srcdir}/DATE`
20 echo "configuring for nmh dated $DATE"
21 AC_SUBST([DATE])dnl
22
23 dnl --------------------------
24 dnl CHECK COMMAND LINE OPTIONS
25 dnl --------------------------
26
27 dnl Do you want to debug nmh?
28 AC_ARG_ENABLE([debug],
29   AS_HELP_STRING([--enable-debug],[enable nmh code debugging]))
30 dnl The old redundant --enable-nmh-debug is deprecated and undocumented.
31 AS_IF([test x"$enable_nmh_debug" = x"yes"], [enable_debug=yes])
32
33 dnl Allow users to send email from addresses other than their default?
34 AC_ARG_ENABLE(masquerade,
35   AS_HELP_STRING([--enable-masquerade='draft_from mmailid username_extension'],
36     [enable up to 3 types of address masquerading]),
37   [AS_IF([test x"$enable_masquerade" = x"yes"],
38          [masquerade="draft_from mmailid username_extension"],
39          [masquerade="$enable_masquerade"])],
40   [masquerade="draft_from mmailid username_extension"])
41 AC_SUBST(masquerade)dnl
42
43 dnl Do you want to disable use of locale functions
44 AH_TEMPLATE([LOCALE],
45 [Undefine if you don't want locale features.  By default this is defined.])
46 AC_ARG_ENABLE([locale],
47   [AC_HELP_STRING([--disable-locale], [turn off locale features])],
48   [AS_IF([test x$enableval = xyes], [AC_DEFINE(LOCALE)])],
49   [AC_DEFINE(LOCALE)])
50
51 dnl Do you want client-side support for using SASL for authentication?
52 dnl Note that this code will be enabled for both POP and SMTP
53 AC_ARG_WITH([cyrus-sasl], AS_HELP_STRING([--with-cyrus-sasl],
54   [Enable SASL support via the Cyrus SASL library]))
55 if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != x"no"; then
56   AC_DEFINE([CYRUS_SASL], [1],
57     [Define to use the Cyrus SASL library for authentication of POP and SMTP.])dnl
58   if test x"$with_cyrus_sasl" != xyes; then
59     AC_MSG_WARN([Arguments to --with-cyrus-sasl now ignored])
60     AC_MSG_WARN([Please pass the appropriate arguments to CPPFLAGS/LDFLAGS])
61   fi
62   sasl_support=yes
63 else
64   sasl_support=no
65 fi
66
67 dnl Do you want client-side support for encryption with TLS?
68 AC_ARG_WITH([tls], AS_HELP_STRING([--with-tls], [Enable TLS support]))
69 if test x"$with_tls" != x -a x"$with_tls" != x"no"; then
70   AC_DEFINE([TLS_SUPPORT], [1], [Support TLS for session encryption.])dnl
71   tls_support=yes
72 else
73   tls_support=no
74 fi
75
76 dnl What should be the default editor?
77 AC_ARG_WITH([editor],
78   AS_HELP_STRING([--with-editor=EDITOR],[specify the default editor]))
79
80 if test -n "$with_editor"; then
81   editorpath="$with_editor"
82 fi
83
84 dnl Set the backup prefix
85 AC_ARG_WITH([hash-backup],
86   AS_HELP_STRING([--with-hash-backup],[use # as the backup prefix (default: ,)]))
87 if test x"$with_hash_backup" != x -a x"$with_hash_backup" != x"no"; then
88   backup_prefix="#"
89 else
90   backup_prefix=","
91 fi
92 AC_DEFINE_UNQUOTED([BACKUP_PREFIX], "$backup_prefix",
93     [The prefix that is prepended to the name of message files when they are "removed" by rmm. This should typically be `,' or `#'.])dnl
94
95 dnl What method of locking to use?
96 AC_ARG_WITH(locking,
97   AS_HELP_STRING([--with-locking=@<:@dot|fcntl|flock|lockf@:>@],
98   [specify the file locking method]))
99
100 if test x"$with_locking" = x"dot"; then
101   LOCKTYPE="dot"
102   AC_DEFINE(DOT_LOCKING, 1, [Define to use dot based file locking.])dnl
103 elif test x"$with_locking" = x"flock"; then
104   LOCKTYPE="flock"
105   AC_DEFINE(FLOCK_LOCKING, 1, [Define to use flock() based locking.])dnl
106 elif test x"$with_locking" = x"lockf"; then
107   LOCKTYPE="lockf"
108   AC_DEFINE(LOCKF_LOCKING, 1, [Define to use lockf() based locking.])dnl
109 elif test x"$with_locking" = x"fcntl"; then
110   LOCKTYPE="fcntl"
111   AC_DEFINE(FCNTL_LOCKING, 1, [Define to use fnctl() based locking.])dnl
112 else
113   LOCKTYPE="dot"
114   AC_DEFINE(DOT_LOCKING)dnl
115 fi
116
117 dnl Should we use a locking directory?
118 AC_ARG_ENABLE([lockdir], [
119   AS_HELP_STRING([--enable-lockdir=dir], [Store dot-lock files in "dir"])], [
120   AS_IF([test "x$enableval" = xyes],[
121     AC_MSG_ERROR([--enable-lockdir requires an argument])])
122   AS_IF([test "x$LOCKTYPE" != xdot],[
123     AC_MSG_ERROR([Can only use --enable-lockdir with dot locking])])
124   AC_DEFINE_UNQUOTED([LOCKDIR], ["$enableval"],
125                      [Directory to store dot-locking lock files])
126 ])
127
128 dnl What method of posting should post use?
129 AC_ARG_WITH([mts],
130   AS_HELP_STRING([--with-mts=@<:@smtp|sendmail@:>@],
131   [specify the default mail transport agent/service]))
132
133 AS_IF([test x"$with_mts" = x"smtp"], [MTS="smtp"],
134       [test x"$with_mts" = x"sendmail"], [MTS="sendmail"],
135       [MTS="smtp"])
136 AC_SUBST([MTS])dnl
137
138 dnl Both the smtp and sendmail mail transport services use the smtp code
139 AC_DEFINE([SMTPMTS], [1],
140   [Define if you want SMTP (simple mail transport protocol) support.])dnl
141
142 dnl What should be the default pager?
143 AC_ARG_WITH([pager],
144   AS_HELP_STRING([--with-pager=PAGER],[specify the default pager]))
145
146 if test -n "$with_pager"; then
147   pagerpath="$with_pager"
148 fi
149
150 dnl What should be the default mail server(s)?
151 AC_ARG_WITH(smtpservers,
152   AS_HELP_STRING([--with-smtpservers='SMTPSERVER1@<:@ SMTPSERVER2...@:>@'],
153   [specify the default SMTP server(s) @<:@localhost@:>@]))
154 AS_IF([test -n "$with_smtpservers"], [smtpservers="$with_smtpservers"],
155       [smtpservers="localhost"])
156 AC_SUBST([smtpservers])dnl
157
158 dnl ----------------------------------------------------
159 dnl Default location is /usr/local/nmh/{bin,etc,lib,man}
160 dnl ----------------------------------------------------
161 AC_PREFIX_DEFAULT([/usr/local/nmh])
162
163 dnl ------------------
164 dnl CHECK THE COMPILER
165 dnl ------------------
166 dnl We want these before the checks,
167 dnl so the checks can modify their values.
168 test -z "$CFLAGS" && CFLAGS= auto_cflags=1
169 if test x"$enable_debug" = x"yes"; then
170   test -z "$LDFLAGS" && LDFLAGS=-g
171 fi
172
173 AC_PROG_CC
174 AM_PROG_CC_C_O
175
176 AC_CACHE_CHECK([whether preprocessor supports -Wunused-macros],
177   [nmh_cv_has_unusedmacros],
178   [nmh_saved_cppflags="$CPPFLAGS"
179    CPPFLAGS="$CPPFLAGS -Wunused-macros -Wno-unused-macros"
180    AC_TRY_COMPILE([],[],nmh_cv_has_unusedmacros=yes,nmh_cv_has_unusedmacros=no)
181    CPPFLAGS="$nmh_saved_cppflags"])
182
183 if test "$nmh_cv_has_unusedmacros" = 'yes'; then
184   test -z "$CPPLAGS"  &&  CPPFLAGS=-Wunused-macros \
185                       ||  CPPFLAGS="$CPPFLAGS -Wunused-macros"
186   DISABLE_UNUSED_MACROS_WARNING=-Wno-unused-macros
187 fi
188 AC_SUBST(DISABLE_UNUSED_MACROS_WARNING)dnl
189
190 AC_CACHE_CHECK([whether compiler supports -Wextra], [nmh_cv_has_wextra],
191 [nmh_saved_cflags="$CFLAGS"
192  CFLAGS="$CFLAGS -Wextra -Wno-clobbered"
193  AC_TRY_COMPILE([],[],nmh_cv_has_wextra=yes,nmh_cv_has_wextra=no)
194  CFLAGS="$nmh_saved_cflags"])
195
196 AC_CACHE_CHECK([whether compiler supports -Wno-pointer-sign], [nmh_cv_has_noptrsign],
197 [nmh_saved_cflags="$CFLAGS"
198  CFLAGS="$CFLAGS -Wno-pointer-sign"
199  AC_TRY_COMPILE([],[],nmh_cv_has_noptrsign=yes,nmh_cv_has_noptrsign=no)
200  CFLAGS="$nmh_saved_cflags"])
201
202 dnl if the user hasn't specified CFLAGS, then
203 dnl   if compiler is gcc, then
204 dnl    use -O2 and some warning flags
205 dnl   else use -O
206 dnl We use -Wall and -Wextra if supported.  If the compiler supports it we
207 dnl also use -Wno-pointer-sign, because gcc 4 now produces a lot of new
208 dnl warnings which are probably mostly spurious and which in any case we
209 dnl don't want to deal with now.
210 if test "$nmh_cv_has_noptrsign" = "yes"; then
211     if test "$nmh_cv_has_wextra" = "yes"; then
212         nmh_gcc_warnflags="-Wall -Wextra -Wno-clobbered -Wno-pointer-sign"
213     else
214         nmh_gcc_warnflags="-Wall -Wno-pointer-sign"
215     fi
216 else
217     if test "$nmh_cv_has_wextra" = "yes"; then
218         nmh_gcc_warnflags="-Wall -Wextra -Wno-clobbered"
219     else
220         nmh_gcc_warnflags="-Wall"
221     fi
222 fi
223
224 if test -n "$auto_cflags"; then
225   if test x"$enable_debug" = x"yes"; then
226     if test -n "$GCC"; then
227       test -z "$CFLAGS" && CFLAGS="$nmh_gcc_warnflags -g" || CFLAGS="$CFLAGS $nmh_gcc_warnflags -g"
228     else
229       test -z "$CFLAGS" && CFLAGS=-g || CFLAGS="$CFLAGS -g"
230     fi
231   else
232     if test -z "$LDFLAGS"; then
233       case "$build_os" in
234         darwin*)
235           LDFLAGS=
236           ;;
237         *)
238           LDFLAGS=-s
239           ;;
240       esac
241     fi
242     if test -n "$GCC"; then
243       test -z "$CFLAGS" && CFLAGS="$nmh_gcc_warnflags -O2" || CFLAGS="$CFLAGS $nmh_gcc_warnflags -O2"
244     else
245       test -z "$CFLAGS" && CFLAGS=-O  || CFLAGS="$CFLAGS -O"
246     fi
247   fi
248 fi
249
250 AC_C_CONST              dnl Does compiler support `const'.
251
252 dnl ------------------
253 dnl CHECK FOR PROGRAMS
254 dnl ------------------
255 AC_PROG_MAKE_SET        dnl Does make define $MAKE
256 AC_PROG_INSTALL         dnl Check for BSD compatible `install'
257 AC_PROG_RANLIB          dnl Check for `ranlib'
258 AC_PROG_AWK             dnl Check for mawk,gawk,nawk, then awk
259 AC_PROG_SED             dnl Check for Posix-compliant sed
260 AC_PROG_LEX             dnl Check for lex/flex
261
262 dnl Look for `cut'
263 pathtmp=/usr/bin:/bin:/usr/local/bin:/usr/xpg4/bin:/usr/ucb
264 AC_PATH_PROG(cutpath, cut, no, [$pathtmp])
265
266 dnl ----------------------------------------------
267 dnl check for lclint, and lint if it doesn't exist
268 dnl ----------------------------------------------
269 AC_CHECK_PROG(linttmp1, lclint, lclint, no)dnl
270 if test x$ac_cv_prog_linttmp1 != xno ; then
271   LINT=$ac_cv_prog_linttmp1
272   LINTFLAGS="-weak +posixlib -macrovarprefixexclude"
273 else
274   AC_CHECK_PROG(linttmp2, lint, lint, no)dnl
275   if test x$ac_cv_prog_linttmp2 != xno ; then
276     LINT=$ac_cv_prog_linttmp2
277     LINTFLAGS=""
278   else
279     LINT="echo 'No lint program found'"
280     LINTFLAGS=""
281   fi
282 fi
283 AC_SUBST([LINT])dnl
284 AC_SUBST([LINTFLAGS])dnl
285
286 dnl Look for `ls'
287 pathtmp=/usr/bin:/bin:/usr/local/bin:/usr/xpg4/bin:/usr/ucb
288 AC_PATH_PROG([lspath], [ls], [no], [$pathtmp])
289
290 dnl See how we get ls to display the owner and the group
291 if test "$lspath" != "no"; then
292   AC_CACHE_CHECK([how to get ls to show us the group ownership of a file],
293                  [nmh_cv_ls_grpopt],
294   [if test x"`$lspath -dl / | $AWK '{print $9}'`" = x"/"; then
295     dnl There were 9 parameters, so unless this is a really bizarre, nonstandard
296     dnl ls, it would seem -l gave us both the user and group.  On this type of
297     dnl ls, -g makes _only_ the group be displayed (and not the user).
298     nmh_cv_ls_grpopt="-l"
299   else
300     dnl Looks like -l only gave us the user, so we need -g to get the group too.
301     nmh_cv_ls_grpopt="-lg"
302   fi])
303 fi
304
305 dnl Look for `more'
306 pathtmp=/usr/bin:/bin:/usr/ucb:/usr/local/bin
307 AC_PATH_PROG([morepath], [more], [no], [$pathtmp])
308
309 dnl If pager is not specified yet,
310 dnl then use `more' as the default.
311 if test -z "$pagerpath"; then
312   pagerpath="$morepath"
313 fi
314 AC_SUBST(pagerpath)dnl
315
316 dnl Look for `sendmail'
317 pathtmp=/usr/lib:/usr/sbin:/usr/etc:/usr/ucblib:/usr/bin:/bin
318 AC_PATH_PROG([sendmailpath], [sendmail], [/usr/sbin/sendmail], [$pathtmp])
319
320 dnl Look for `vi'
321 pathtmp=/usr/bin:/bin:/usr/ucb:/usr/local/bin
322 AC_PATH_PROG([vipath], [vi], [/bin/vi], [$pathtmp])
323
324 dnl If editor is not specified yet,
325 dnl then use `vi' as the default.
326 if test -z "$editorpath"; then
327   editorpath="$vipath"
328 fi
329 AC_SUBST([editorpath])dnl
330
331 dnl ----------------------------------------------------------
332 dnl FIND MAIL SPOOL AND SEE IF WE NEED TO MAKE inc SETGID MAIL
333 dnl ----------------------------------------------------------
334 AC_CACHE_CHECK(where mail spool is located, nmh_cv_mailspool,
335 [for mailspool in /var/mail        dnl
336                   /var/spool/mail  dnl
337                   /usr/spool/mail  dnl
338                   /dev/null;       dnl Just in case we fall through
339 do
340   test -d $mailspool && break
341 done
342 nmh_cv_mailspool=$mailspool
343 ])
344 mailspool=$nmh_cv_mailspool
345 AC_SUBST(mailspool)dnl
346
347 dnl See whether the mail spool directory is world-writable.
348 if test "$lspath" != "no" -a "$cutpath" != "no"; then
349   AC_CACHE_CHECK(whether the mail spool is world-writable,
350                  nmh_cv_mailspool_world_writable,
351   [if test "`$lspath -dlL $mailspool | $cutpath -c9`" = "-"; then
352     nmh_cv_mailspool_world_writable=no
353   else
354     nmh_cv_mailspool_world_writable=yes
355   fi])
356 fi
357
358 dnl Also, check for liblockfile (as found on Debian systems)
359 AC_CHECK_HEADER([lockfile.h], AC_CHECK_LIB(lockfile, lockfile_create) )
360
361 dnl and whether its companion program dotlockfile is setgid
362 AC_PATH_PROG(dotlockfilepath, dotlockfile, no)
363 if test "$ac_cv_lib_lockfile_lockfile_create" != "no" ; then
364   if test "$ac_cv_path_dotlockfilepath" != "no" ; then
365     AC_CACHE_CHECK(whether dotlockfile is setgid, nmh_cv_dotlockfile_setgid,
366     [ if test -g "$ac_cv_path_dotlockfilepath" ; then
367         nmh_cv_dotlockfile_setgid=yes
368       else
369         nmh_cv_dotlockfile_setgid=no
370       fi])
371   fi
372 fi
373
374 dnl If mailspool is not world-writable and dotlockfile is not setgid,
375 dnl we need to #define MAILGROUP to 1 and make inc setgid.
376 if test x"$LOCKTYPE" = x"dot" -a x"$nmh_cv_mailspool_world_writable" = x"no" -a x"$nmh_cv_dotlockfile_setgid" != x"yes" ; then
377   dnl do we really need both of these?
378   AC_DEFINE(MAILGROUP,1,
379     [Define to 1 if you need to make `inc' set-group-id because your mail spool is not world writable. There are no guarantees as to the safety of doing this, but this #define will add some extra security checks.])dnl
380   SETGID_MAIL=1
381 fi
382 AC_SUBST(SETGID_MAIL)dnl
383
384 dnl Use ls to see which group owns the mail spool directory.
385 AC_CACHE_CHECK(what group owns the mail spool, nmh_cv_ls_mail_grp,
386 [nmh_cv_ls_mail_grp=`$lspath -dL $nmh_cv_ls_grpopt $mailspool|$AWK '{print $4}'`
387 ])
388 MAIL_SPOOL_GRP=$nmh_cv_ls_mail_grp
389 AC_SUBST(MAIL_SPOOL_GRP)dnl
390
391 dnl ------------------
392 dnl CHECK HEADER FILES
393 dnl ------------------
394
395 dnl On glibc we need to define at least the '_XOPEN_SOURCE' level of features,
396 dnl or wchar.h doesn't declare a prototype for wcwidth(). But if we only define
397 dnl that level then db.h won't compile. So we define _GNU_SOURCE which turns
398 dnl on everything. Perhaps other OSes need some feature switch set to get wcwidth()
399 dnl declared; if so they should have an entry added to this case statement.
400 dnl NB that we must define this on the compiler command line, not in config.h,
401 dnl because it must be set before any system header is included and there's no
402 dnl portable way to make sure that files generated by lex include config.h
403 dnl before system header files.
404
405 case "$host_os" in
406   linux*)
407     # Like DEFS, but doesn't get stomped on by configure when using config.h:
408     test -z "$OURDEFS"  &&  OURDEFS="-D_GNU_SOURCE"  \
409                         ||  OURDEFS="$OURDEFS -D_GNU_SOURCE"
410     ;;
411 esac
412 AC_SUBST(OURDEFS)
413
414 AC_HEADER_STDC
415 AC_HEADER_TIOCGWINSZ
416 AC_CHECK_HEADERS(errno.h fcntl.h crypt.h ncurses/termcap.h termcap.h \
417                  langinfo.h wchar.h wctype.h iconv.h netdb.h \
418                  sys/param.h sys/time.h sys/stream.h)
419
420 dnl
421 dnl Checks for _IO_write_ptr. A Linuxism used by nmh on linux. We
422 dnl really use a whole set of them, but this check should be
423 dnl sufficient.
424 dnl
425 AC_CHECK_HEADER(libio.h, [
426   AC_EGREP_HEADER(_IO_write_ptr, libio.h, [
427     AC_DEFINE(LINUX_STDIO,1,[Use the Linux _IO_*_ptr defines from <libio.h>.]) ]) ])
428
429 AC_CHECK_HEADER([sys/ptem.h], AC_DEFINE(WINSIZE_IN_PTEM,1,
430   [Define to 1 if `struct winsize' requires <sys/ptem.h>.]),,
431 [[#if HAVE_SYS_STREAM_H
432 #  include <sys/stream.h>
433 #endif
434 ]])
435
436 dnl ---------------
437 dnl CHECK FUNCTIONS
438 dnl ---------------
439 AC_CHECK_FUNCS(writev lstat nl_langinfo)
440
441 dnl Check for multibyte character set support
442 if test "x$ac_cv_header_wchar_h" = "xyes" -a "x$ac_cv_header_wctype_h" = "xyes" \
443     -a "x$ac_cv_func_wcwidth" = "xyes" -a "x$ac_cv_func_mbtowc" = "xyes"; then
444   AC_DEFINE(MULTIBYTE_SUPPORT, 1,
445     [Define to enable support for multibyte character sets.])
446 fi
447
448 dnl -------------------
449 dnl CHECK FOR LIBRARIES
450 dnl -------------------
451 dnl Check location of modf
452 AC_CHECK_FUNC([modf], , AC_CHECK_LIB([m], [modf]))
453
454 dnl Checks for network libraries (nsl, socket)
455 NMH_CHECK_NETLIBS
456
457 termcap_curses_order="termcap curses ncurses"
458 for lib in $termcap_curses_order; do
459   AC_CHECK_LIB(${lib}, tgetent, [TERMLIB="-l$lib"; break])
460 done
461 AC_SUBST([TERMLIB])dnl
462 AS_IF([test "x$TERMLIB" = "x"],
463       [AC_MSG_FAILURE([Could not find tgetent in any library.  Is there a curses
464 or ncurses library or package that you can install?])])
465
466
467 dnl ---------------
468 dnl CHECK FOR ICONV
469 dnl ---------------
470
471 dnl Find iconv. It may be in libiconv and may be iconv() or libiconv()
472 if test "x$ac_cv_header_iconv_h" = "xyes"; then
473   AC_CHECK_FUNC(iconv, ac_found_iconv=yes, ac_found_iconv=no)
474   if test "x$ac_found_iconv" = "xno"; then
475     AC_CHECK_LIB(iconv, iconv, ac_found_iconv=yes)
476     if test "x$ac_found_iconv" = "xno"; then
477       AC_CHECK_LIB(iconv, libiconv, ac_found_iconv=yes)
478     fi
479     if test "x$ac_found_iconv" != "xno"; then
480       ICONVLIB="-liconv"
481     fi
482   else
483     dnl Handle case where there is a native iconv but iconv.h is from libiconv
484     AC_CHECK_DECL(_libiconv_version,
485       [ AC_CHECK_LIB(iconv, libiconv, LIBS="-liconv $LIBS") ],,
486       [ #include <iconv.h> ])
487   fi
488 fi
489 if test "x$ac_found_iconv" = xyes; then
490   AC_DEFINE([HAVE_ICONV], [1], [Define if you have the iconv() function.])
491 fi
492 AC_SUBST([ICONVLIB])
493
494 dnl Check if iconv uses const in prototype declaration
495 if test "x$ac_found_iconv" = "xyes"; then
496   AC_CACHE_CHECK(for iconv declaration, ac_cv_iconv_const,
497     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdlib.h>
498         #include <iconv.h>]],
499         [[#ifdef __cplusplus
500           "C"
501           #endif
502           #if defined(__STDC__) || defined(__cplusplus)
503           size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
504           #else
505           size_t iconv();
506           #endif]])],
507       [ac_cv_iconv_const=],
508       [ac_cv_iconv_const=const])])
509   AC_DEFINE_UNQUOTED([ICONV_CONST], $ac_cv_iconv_const,
510     [Define as const if the declaration of iconv() needs const.])
511 fi
512
513 dnl --------------
514 dnl CHECK FOR NDBM
515 dnl --------------
516
517 AC_ARG_WITH([ndbm],AS_HELP_STRING([--with-ndbm=ARG],[use -lARG to link with ndbm]),
518             [nmh_ndbm=$withval],[nmh_ndbm=autodetect])
519 AC_ARG_WITH([ndbmheader],AS_HELP_STRING([--with-ndbmheader=ARG],[#include <ARG> to use ndbm]),
520             [nmh_ndbmheader=$withval],[nmh_ndbmheader=autodetect])
521
522 if test "$nmh_ndbm" = "autodetect"; then
523   if test "$nmh_ndbmheader" != "autodetect"; then
524     AC_MSG_ERROR([must specify both --with-ndbm and --with-ndbmheader or neither])
525   else
526
527     dnl There are at least four implementations of ndbm, and
528     dnl several of those can be in different places at the whim
529     dnl of the system integrator. A good summary of this mess
530     dnl can be found at http://www.unixpapa.com/incnote/dbm.html
531
532     dnl Classic ndbm with no library required (eg NetBSD): try this
533     dnl first so we don't accidentally link in a pointless but harmless
534     dnl library in one of the later ndbm.h+libfoo tests:
535     NMH_CHECK_NDBM(ndbm.h,,,
536     dnl Berkeley DBv2 emulating ndbm: header in db.h:
537       NMH_CHECK_NDBM(db.h,db,,
538     dnl Berkeley DBv1 emulating ndbm:
539         NMH_CHECK_NDBM(ndbm.h,db,,
540           NMH_CHECK_NDBM(ndbm.h,db1,,
541     dnl Classic ndbm:
542             NMH_CHECK_NDBM(ndbm.h,ndbm,,
543     dnl glibc2.1 systems put db1 in a subdir:
544               NMH_CHECK_NDBM(db1/ndbm.h,db1,,
545     dnl GNU gdbm emulating ndbm, with header possibly in gdbm/
546     dnl and possibly needing gbdm_compat library:
547                 NMH_CHECK_NDBM(gdbm/ndbm.h,gdbm,,
548                   NMH_CHECK_NDBM(gdbm/ndbm.h,gdbm_compat -lgdbm,,
549                     NMH_CHECK_NDBM(ndbm.h,gdbm,,
550                       NMH_CHECK_NDBM(ndbm.h,gdbm_compat -lgdbm))))))))))
551
552   fi
553 else
554   dnl We don't really need to check that the user-specified values work,
555   dnl but it is a convenience to the user to bomb out early rather than
556   dnl after configure and half the compile process.
557   NMH_CHECK_NDBM([$nmh_ndbmheader],[$nmh_ndbm])
558 fi
559
560 if test "$nmh_ndbm_found" = "no"; then
561   AC_MSG_ERROR([could not find a working ndbm library/header combination])
562 else
563   dnl Now export the lib/header to our makefile/config.h:
564   if test x"$nmh_ndbmheader" != x; then
565     AC_DEFINE_UNQUOTED(NDBM_HEADER, <$nmh_ndbmheader>,
566       [Define to the header containing the ndbm API prototypes.])
567   fi
568   if test x"$nmh_ndbm" != x; then
569     NDBM_LIBS="-l$nmh_ndbm"
570   else
571     NDBM_LIBS=
572   fi
573   AC_SUBST([NDBM_LIBS])
574 fi
575
576 dnl ------------------
577 dnl Set RPM build root
578 dnl ------------------
579 dnl nmhrpm is used in the final summary, see below.  The default value is
580 dnl reported there as ./RPM, consistent with the reporting of the default
581 dnl source code location as ., but its absolute path is used in the Makefile.
582 AC_ARG_WITH(rpmdir,
583   AS_HELP_STRING([--with-rpmdir=RPMDIR], [RPM build directory @<:@RPM@:>@]))
584   AS_IF([test x"$with_rpmdir" = x], [rpmdir='$(abs_srcdir)/RPM'; nmhrpm=./RPM],
585           [rpmdir="$with_rpmdir"; eval "nmhrpm=${rpmdir}"])
586 AC_SUBST([rpmdir])
587
588
589 dnl --------------------
590 dnl CHECK FOR CYRUS-SASL
591 dnl --------------------
592
593 AS_IF([test x"$sasl_support" = x"yes"],[
594   AC_CHECK_HEADER([sasl/sasl.h], , [AC_MSG_ERROR([sasl.h not found])])
595   AC_CHECK_LIB([sasl2], [sasl_client_new], [SASLLIB="-lsasl2"],
596     [AC_MSG_ERROR([Cyrus SASL library not found])])],[SASLLIB=""])
597 AC_SUBST([SASLLIB])
598
599 dnl -----------------
600 dnl CHECK FOR OPENSSL
601 dnl -----------------
602
603 AS_IF([test x"$tls_support" = x"yes"],[
604   AC_CHECK_HEADER([openssl/ssl.h], , [AC_MSG_ERROR([openssl/ssl.h not found])])
605   AC_CHECK_LIB([crypto], [BIO_write], ,
606     [AC_MSG_ERROR([OpenSSL crypto library not found])])
607   AC_CHECK_LIB([ssl], [SSL_library_init], ,
608     [AC_MSG_ERROR([OpenSSL library not found])])])
609
610 dnl ---------------------
611 dnl CHECK TERMCAP LIBRARY
612 dnl ---------------------
613
614 dnl Add the termcap library, so that the following configure
615 dnl tests will find it when it tries to link test programs.
616 nmh_save_LIBS="$LIBS"
617 LIBS="$TERMLIB $LIBS"
618
619 dnl Check if tgetent accepts NULL (and will allocate its own termcap buffer)
620 dnl Some termcaps reportedly accept a zero buffer, but then dump core
621 dnl in tgetstr().
622 dnl Under Cygwin test program crashes but exit code is still 0. So,
623 dnl we test for a file that porgram should create
624 AH_TEMPLATE([TGETENT_ACCEPTS_NULL],
625 [Define to 1 if tgetent() accepts NULL as a buffer.])
626 AC_CACHE_CHECK(if tgetent accepts NULL,
627 nmh_cv_func_tgetent_accepts_null,
628 [AC_TRY_RUN([
629 main()
630 {
631     char buf[4096];
632     int r1 = tgetent(buf, "vt100");
633     int r2 = tgetent((char*)0,"vt100");
634     if (r1 >= 0 && r1 == r2) {
635         char tbuf[1024], *u;
636         u = tbuf;
637         tgetstr("cl", &u);
638         creat("conftest.tgetent", 0640);
639     }
640     exit((r1 != r2) || r2 == -1);
641 }
642 ],
643   if test -f conftest.tgetent; then
644     nmh_cv_func_tgetent_accepts_null=yes
645   else
646     nmh_cv_func_tgetent_accepts_null=no
647   fi,
648   nmh_cv_func_tgetent_accepts_null=no,
649   nmh_cv_func_tgetent_accepts_null=no)])
650 if test x$nmh_cv_func_tgetent_accepts_null = xyes; then
651   AC_DEFINE(TGETENT_ACCEPTS_NULL)
652 fi
653 AC_CACHE_CHECK(if tgetent returns 0 on success,
654 nmh_cv_func_tgetent_zero_success,
655 [AC_TRY_RUN([
656 main()
657 {
658     char buf[4096];
659     int r1 = tgetent(buf, "!@#$%^&*");
660     int r2 = tgetent(buf, "vt100");
661     if (r1 < 0 && r2 == 0) {
662         char tbuf[1024], *u;
663         u = tbuf;
664         tgetstr("cl", &u);
665         creat("conftest.tgetent0", 0640);
666     }
667     exit(r1 == r2);
668 }
669 ],
670   if test -f conftest.tgetent0; then
671     nmh_cv_func_tgetent_zero_success=yes
672   else
673     nmh_cv_func_tgetent_zero_success=no
674   fi,
675   nmh_cv_func_tgetent_zero_success=no,
676   nmh_cv_func_tgetent_zero_success=no)])
677 AH_TEMPLATE([TGETENT_SUCCESS],
678 [Define to what tgetent() returns on success (0 on HP-UX X/Open curses).])
679 if test x$nmh_cv_func_tgetent_zero_success = xyes; then
680   AC_DEFINE(TGETENT_SUCCESS, 0)
681 else
682   AC_DEFINE(TGETENT_SUCCESS, 1)
683 fi
684
685 dnl Now put the libraries back to what it was before we
686 dnl starting checking the termcap library.
687 LIBS="$nmh_save_LIBS"
688
689 dnl --------------
690 dnl CHECK TYPEDEFS
691 dnl --------------
692 AC_TYPE_PID_T
693 AC_TYPE_OFF_T
694 AC_TYPE_UID_T
695 AC_TYPE_MODE_T
696 AC_TYPE_SIZE_T
697
698 dnl ----------------
699 dnl CHECK STRUCTURES
700 dnl ----------------
701
702 dnl For platforms such as FreeBSD that have tm_gmtoff in struct tm.
703 dnl (FreeBSD has a timezone() function but not a timezone global
704 dnl variable that is visible).
705 AC_CHECK_MEMBERS([struct tm.tm_gmtoff],,,[#include <time.h>])
706
707 AC_STRUCT_DIRENT_D_TYPE
708
709 dnl Where is <signal.h> located?  Needed as input for signames.awk
710 AC_CACHE_CHECK(where signal.h is located, nmh_cv_path_signal_h,
711 [for SIGNAL_H in /usr/include/bsd/sys/signal.h  dnl Next
712                  /usr/include/asm/signal.h      dnl Linux 1.3.0 and above
713                  /usr/include/asm/signum.h      dnl some versions of Linux/Alpha
714                  /usr/include/linux/signal.h    dnl Linux up to 1.2.11
715                  /usr/include/sys/signal.h      dnl Almost everybody else
716                  /dev/null;                     dnl Just in case we fall through
717 do
718   test -f $SIGNAL_H && \
719   grep '#[      ]*define[       ][      ]*SIG[0-9A-Z]*[         ]*[0-9][0-9]*' $SIGNAL_H > /dev/null && \
720   break
721 done
722 nmh_cv_path_signal_h=$SIGNAL_H
723 ])
724 SIGNAL_H=$nmh_cv_path_signal_h
725 AC_SUBST(SIGNAL_H)dnl
726
727 dnl
728 dnl Sigh, this is required because under the new world order autoconf has
729 dnl nothing to create in a few of the build directories when doing an object
730 dnl tree build.  So make sure we created certain directories if they don't
731 dnl exist.
732 dnl
733
734 AC_CONFIG_COMMANDS([build-directories],
735 [test -d etc || ${MKDIR_P} etc
736 test -d man || ${MKDIR_P} man])
737
738 AC_CONFIG_COMMANDS_POST([
739
740 dnl These odd looking assignments are done to expand out unexpanded
741 dnl variables in bindir et al (for instance mandir is '${datarootdir}/man',
742 dnl but expanding that gives '${prefix}/share/man', so we need to expand
743 dnl again to get the final answer.
744 dnl We only use the expanded versions to print the install paths in
745 dnl the final summary and should use them nowhere else (see the autoconf
746 dnl docs for the rationale for bindir etc being unexpanded).
747 eval "nmhbin=${bindir}";         eval "nmhbin=${nmhbin}"
748 eval "nmhsysconf=${sysconfdir}"; eval "nmhsysconf=${nmhsysconf}"
749 eval "nmhlib=${libdir}";         eval "nmhlib=${nmhlib}"
750 eval "nmhman=${mandir}";         eval "nmhman=${nmhman}"
751 eval "nmhrpm=${nmhrpm}";
752
753 echo "
754 nmh configuration
755 -----------------
756 nmh version                : AC_PACKAGE_VERSION
757 host os                    : ${host}
758 compiler                   : ${CC}
759 compiler flags             : ${CFLAGS}
760 linker flags               : ${LDFLAGS}
761 definitions                : ${OURDEFS}
762 source code location       : ${srcdir}
763 binary install path        : ${nmhbin}
764 library install path       : ${nmhlib}
765 config files install path  : ${nmhsysconf}
766 man page install path      : ${nmhman}
767 RPM build root             : ${nmhrpm}
768 backup prefix              : ${backup_prefix}
769 transport system           : ${MTS}
770 file locking type          : ${LOCKTYPE}
771 default smtp servers       : ${smtpservers}
772 default editor             : ${editorpath}
773 default pager              : ${pagerpath}
774 email address masquerading : ${masquerade}
775 SASL support               : ${sasl_support}
776 TLS support                : ${tls_support}"
777 echo ""])
778
779 dnl ---------------
780 dnl OUTPUT MAKEFILE
781 dnl ---------------
782 AC_CONFIG_FILES([Makefile])
783 AC_OUTPUT