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