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