2 dnl configure.ac -- autoconf template for nmh
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])
15 echo "configuring for AC_PACKAGE_NAME-AC_PACKAGE_VERSION"
16 AC_SUBST(VERSION,AC_PACKAGE_VERSION)dnl
18 dnl What date of nmh are we building?
19 DATE=`cat ${srcdir}/DATE`
20 echo "configuring for nmh dated $DATE"
23 dnl --------------------------
24 dnl CHECK COMMAND LINE OPTIONS
25 dnl --------------------------
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
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"
42 masquerade="$enable_masquerade"
43 fi], [masquerade="draft_from mmailid username_extension"])
44 AC_SUBST(masquerade)dnl
46 dnl Do you want to disable use of locale functions
48 [Undefine if you don't want locale features. By default this is defined.])
49 AC_ARG_ENABLE([locale],
50 AC_HELP_STRING([--disable-locale], [turn off locale features]),
51 [if test x$enableval = xyes; then
57 dnl Do you want client-side support for using SASL for authentication?
58 dnl Note that this code will be enabled for both POP and SMTP
59 AC_ARG_WITH([cyrus-sasl], AS_HELP_STRING([--with-cyrus-sasl],
60 [Enable SASL support via the Cyrus SASL library]))
61 if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != x"no"; then
62 AC_DEFINE([CYRUS_SASL], [1],
63 [Define to use the Cyrus SASL library for authentication of POP and SMTP.])dnl
64 if test x"$with_cyrus_sasl" != xyes; then
65 AC_MSG_WARN([Arguments to --with-cyrus-sasl now ignored])
66 AC_MSG_WARN([Please pass the appropriate arguments to CPPFLAGS/LDFLAGS])
73 dnl Do you want client-side support for encryption with TLS?
74 AC_ARG_WITH([tls], AS_HELP_STRING([--with-tls], [Enable TLS support]))
75 if test x"$with_tls" != x -a x"$with_tls" != x"no"; then
76 AC_DEFINE([TLS_SUPPORT], [1], [Support TLS for session encryption.])dnl
82 dnl What should be the default editor?
84 AS_HELP_STRING([--with-editor=EDITOR],[specify the default editor]))
86 if test -n "$with_editor"; then
87 editorpath="$with_editor"
90 dnl Set the backup prefix
91 AC_ARG_WITH([hash-backup],
92 AS_HELP_STRING([--with-hash-backup],[use # as the backup prefix (default: ,)]))
93 if test x"$with_hash_backup" != x -a x"$with_hash_backup" != x"no"; then
98 AC_DEFINE_UNQUOTED([BACKUP_PREFIX], "$backup_prefix",
99 [The prefix that is prepended to the name of message files when they are "removed" by rmm. This should typically be `,' or `#'.])dnl
101 dnl What method of locking to use?
103 AS_HELP_STRING([--with-locking=@<:@dot|fcntl|flock|lockf@:>@],
104 [specify the file locking method]))
106 if test x"$with_locking" = x"dot"; then
108 AC_DEFINE(DOT_LOCKING, 1, [Define to use dot based file locking.])dnl
109 elif test x"$with_locking" = x"flock"; then
111 AC_DEFINE(FLOCK_LOCKING, 1, [Define to use flock() based locking.])dnl
112 elif test x"$with_locking" = x"lockf"; then
114 AC_DEFINE(LOCKF_LOCKING, 1, [Define to use lockf() based locking.])dnl
115 elif test x"$with_locking" = x"fcntl"; then
117 AC_DEFINE(FCNTL_LOCKING, 1, [Define to use fnctl() based locking.])dnl
120 AC_DEFINE(DOT_LOCKING)dnl
123 dnl Should we use a locking directory?
124 AC_ARG_ENABLE([lockdir], [
125 AS_HELP_STRING([--enable-lockdir=dir], [Store dot-lock files in "dir"])], [
126 AS_IF([test "x$enableval" = xyes],[
127 AC_MSG_ERROR([--enable-lockdir requires an argument])])
128 AS_IF([test "x$LOCKTYPE" != xdot],[
129 AC_MSG_ERROR([Can only use --enable-lockdir with dot locking])])
130 AC_DEFINE_UNQUOTED([LOCKDIR], ["$enableval"],
131 [Directory to store dot-locking lock files])
134 dnl What method of posting should post use?
136 AS_HELP_STRING([--with-mts=@<:@smtp|sendmail@:>@],
137 [specify the default mail transport agent/service]))
139 if test x"$with_mts" = x"smtp"; then
141 elif test x"$with_mts" = x"sendmail"; then
148 dnl Both the smtp and sendmail mail transport services use the smtp code
149 AC_DEFINE([SMTPMTS], [1],
150 [Define if you want SMTP (simple mail transport protocol) support.])dnl
152 dnl What should be the default pager?
154 AS_HELP_STRING([--with-pager=PAGER],[specify the default pager]))
156 if test -n "$with_pager"; then
157 pagerpath="$with_pager"
160 dnl What should be the default mail server(s)?
161 AC_ARG_WITH(smtpservers,
162 AS_HELP_STRING([--with-smtpservers='SMTPSERVER1@<:@ SMTPSERVER2...@:>@'],
163 [specify the default SMTP server(s) @<:@localhost@:>@]))
164 if test -n "$with_smtpservers"; then
165 smtpservers="$with_smtpservers"
167 smtpservers="localhost"
169 AC_SUBST([smtpservers])dnl
171 dnl ----------------------------------------------------
172 dnl Default location is /usr/local/nmh/{bin,etc,lib,man}
173 dnl ----------------------------------------------------
174 AC_PREFIX_DEFAULT([/usr/local/nmh])
176 dnl ------------------
177 dnl CHECK THE COMPILER
178 dnl ------------------
179 dnl We want these before the checks,
180 dnl so the checks can modify their values.
181 test -z "$CFLAGS" && CFLAGS= auto_cflags=1
182 if test x"$enable_debug" = x"yes"; then
183 test -z "$LDFLAGS" && LDFLAGS=-g
189 AC_CACHE_CHECK([whether preprocessor supports -Wunused-macros],
190 [nmh_cv_has_unusedmacros],
191 [nmh_saved_cppflags="$CPPFLAGS"
192 CPPFLAGS="$CPPFLAGS -Wunused-macros -Wno-unused-macros"
193 AC_TRY_COMPILE([],[],nmh_cv_has_unusedmacros=yes,nmh_cv_has_unusedmacros=no)
194 CPPFLAGS="$nmh_saved_cppflags"])
196 if test "$nmh_cv_has_unusedmacros" = 'yes'; then
197 test -z "$CPPLAGS" && CPPFLAGS=-Wunused-macros \
198 || CPPFLAGS="$CPPFLAGS -Wunused-macros"
199 DISABLE_UNUSED_MACROS_WARNING=-Wno-unused-macros
201 AC_SUBST(DISABLE_UNUSED_MACROS_WARNING)dnl
203 AC_CACHE_CHECK([whether compiler supports -Wextra], [nmh_cv_has_wextra],
204 [nmh_saved_cflags="$CFLAGS"
205 CFLAGS="$CFLAGS -Wextra -Wno-clobbered"
206 AC_TRY_COMPILE([],[],nmh_cv_has_wextra=yes,nmh_cv_has_wextra=no)
207 CFLAGS="$nmh_saved_cflags"])
209 AC_CACHE_CHECK([whether compiler supports -Wno-pointer-sign], [nmh_cv_has_noptrsign],
210 [nmh_saved_cflags="$CFLAGS"
211 CFLAGS="$CFLAGS -Wno-pointer-sign"
212 AC_TRY_COMPILE([],[],nmh_cv_has_noptrsign=yes,nmh_cv_has_noptrsign=no)
213 CFLAGS="$nmh_saved_cflags"])
215 dnl if the user hasn't specified CFLAGS, then
216 dnl if compiler is gcc, then
217 dnl use -O2 and some warning flags
219 dnl We use -Wall and -Wextra if supported. If the compiler supports it we
220 dnl also use -Wno-pointer-sign, because gcc 4 now produces a lot of new
221 dnl warnings which are probably mostly spurious and which in any case we
222 dnl don't want to deal with now.
223 if test "$nmh_cv_has_noptrsign" = "yes"; then
224 if test "$nmh_cv_has_wextra" = "yes"; then
225 nmh_gcc_warnflags="-Wall -Wextra -Wno-clobbered -Wno-pointer-sign"
227 nmh_gcc_warnflags="-Wall -Wno-pointer-sign"
230 if test "$nmh_cv_has_wextra" = "yes"; then
231 nmh_gcc_warnflags="-Wall -Wextra -Wno-clobbered"
233 nmh_gcc_warnflags="-Wall"
237 if test -n "$auto_cflags"; then
238 if test x"$enable_debug" = x"yes"; then
239 if test -n "$GCC"; then
240 test -z "$CFLAGS" && CFLAGS="$nmh_gcc_warnflags -g" || CFLAGS="$CFLAGS $nmh_gcc_warnflags -g"
242 test -z "$CFLAGS" && CFLAGS=-g || CFLAGS="$CFLAGS -g"
245 if test -z "$LDFLAGS"; then
255 if test -n "$GCC"; then
256 test -z "$CFLAGS" && CFLAGS="$nmh_gcc_warnflags -O2" || CFLAGS="$CFLAGS $nmh_gcc_warnflags -O2"
258 test -z "$CFLAGS" && CFLAGS=-O || CFLAGS="$CFLAGS -O"
263 AC_C_CONST dnl Does compiler support `const'.
265 dnl ------------------
266 dnl CHECK FOR PROGRAMS
267 dnl ------------------
268 AC_PROG_MAKE_SET dnl Does make define $MAKE
269 AC_PROG_INSTALL dnl Check for BSD compatible `install'
270 AC_PROG_RANLIB dnl Check for `ranlib'
271 AC_PROG_AWK dnl Check for mawk,gawk,nawk, then awk
272 AC_PROG_SED dnl Check for Posix-compliant sed
273 AC_PROG_LEX dnl Check for lex/flex
276 pathtmp=/usr/bin:/bin:/usr/local/bin:/usr/xpg4/bin:/usr/ucb
277 AC_PATH_PROG(cutpath, cut, no, [$pathtmp])
279 dnl ----------------------------------------------
280 dnl check for lclint, and lint if it doesn't exist
281 dnl ----------------------------------------------
282 AC_CHECK_PROG(linttmp1, lclint, lclint, no)dnl
283 if test x$ac_cv_prog_linttmp1 != xno ; then
284 LINT=$ac_cv_prog_linttmp1
285 LINTFLAGS="-weak +posixlib -macrovarprefixexclude"
287 AC_CHECK_PROG(linttmp2, lint, lint, no)dnl
288 if test x$ac_cv_prog_linttmp2 != xno ; then
289 LINT=$ac_cv_prog_linttmp2
292 LINT="echo 'No lint program found'"
297 AC_SUBST([LINTFLAGS])dnl
300 pathtmp=/usr/bin:/bin:/usr/local/bin:/usr/xpg4/bin:/usr/ucb
301 AC_PATH_PROG([lspath], [ls], [no], [$pathtmp])
303 dnl See how we get ls to display the owner and the group
304 if test "$lspath" != "no"; then
305 AC_CACHE_CHECK([how to get ls to show us the group ownership of a file],
307 [if test x"`$lspath -dl / | $AWK '{print $9}'`" = x"/"; then
308 dnl There were 9 parameters, so unless this is a really bizarre, nonstandard
309 dnl ls, it would seem -l gave us both the user and group. On this type of
310 dnl ls, -g makes _only_ the group be displayed (and not the user).
311 nmh_cv_ls_grpopt="-l"
313 dnl Looks like -l only gave us the user, so we need -g to get the group too.
314 nmh_cv_ls_grpopt="-lg"
319 pathtmp=/usr/bin:/bin:/usr/ucb:/usr/local/bin
320 AC_PATH_PROG([morepath], [more], [no], [$pathtmp])
322 dnl If pager is not specified yet,
323 dnl then use `more' as the default.
324 if test -z "$pagerpath"; then
325 pagerpath="$morepath"
327 AC_SUBST(pagerpath)dnl
329 dnl Look for `sendmail'
330 pathtmp=/usr/lib:/usr/sbin:/usr/etc:/usr/ucblib:/usr/bin:/bin
331 AC_PATH_PROG([sendmailpath], [sendmail], [/usr/sbin/sendmail], [$pathtmp])
334 pathtmp=/usr/bin:/bin:/usr/ucb:/usr/local/bin
335 AC_PATH_PROG([vipath], [vi], [/bin/vi], [$pathtmp])
337 dnl If editor is not specified yet,
338 dnl then use `vi' as the default.
339 if test -z "$editorpath"; then
342 AC_SUBST([editorpath])dnl
344 dnl ----------------------------------------------------------
345 dnl FIND MAIL SPOOL AND SEE IF WE NEED TO MAKE inc SETGID MAIL
346 dnl ----------------------------------------------------------
347 AC_CACHE_CHECK(where mail spool is located, nmh_cv_mailspool,
348 [for mailspool in /var/mail dnl
351 /dev/null; dnl Just in case we fall through
353 test -d $mailspool && break
355 nmh_cv_mailspool=$mailspool
357 mailspool=$nmh_cv_mailspool
358 AC_SUBST(mailspool)dnl
360 dnl See whether the mail spool directory is world-writable.
361 if test "$lspath" != "no" -a "$cutpath" != "no"; then
362 AC_CACHE_CHECK(whether the mail spool is world-writable,
363 nmh_cv_mailspool_world_writable,
364 [if test "`$lspath -dlL $mailspool | $cutpath -c9`" = "-"; then
365 nmh_cv_mailspool_world_writable=no
367 nmh_cv_mailspool_world_writable=yes
371 dnl Also, check for liblockfile (as found on Debian systems)
372 AC_CHECK_HEADER([lockfile.h], AC_CHECK_LIB(lockfile, lockfile_create) )
374 dnl and whether its companion program dotlockfile is setgid
375 AC_PATH_PROG(dotlockfilepath, dotlockfile, no)
376 if test "$ac_cv_lib_lockfile_lockfile_create" != "no" ; then
377 if test "$ac_cv_path_dotlockfilepath" != "no" ; then
378 AC_CACHE_CHECK(whether dotlockfile is setgid, nmh_cv_dotlockfile_setgid,
379 [ if test -g "$ac_cv_path_dotlockfilepath" ; then
380 nmh_cv_dotlockfile_setgid=yes
382 nmh_cv_dotlockfile_setgid=no
387 dnl If mailspool is not world-writable and dotlockfile is not setgid,
388 dnl we need to #define MAILGROUP to 1 and make inc setgid.
389 if test x"$LOCKTYPE" = x"dot" -a x"$nmh_cv_mailspool_world_writable" = x"no" -a x"$nmh_cv_dotlockfile_setgid" != x"yes" ; then
390 dnl do we really need both of these?
391 AC_DEFINE(MAILGROUP,1,
392 [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
395 AC_SUBST(SETGID_MAIL)dnl
397 dnl Use ls to see which group owns the mail spool directory.
398 AC_CACHE_CHECK(what group owns the mail spool, nmh_cv_ls_mail_grp,
399 [nmh_cv_ls_mail_grp=`$lspath -dL $nmh_cv_ls_grpopt $mailspool|$AWK '{print $4}'`
401 MAIL_SPOOL_GRP=$nmh_cv_ls_mail_grp
402 AC_SUBST(MAIL_SPOOL_GRP)dnl
404 dnl ------------------
405 dnl CHECK HEADER FILES
406 dnl ------------------
408 dnl On glibc we need to define at least the '_XOPEN_SOURCE' level of features,
409 dnl or wchar.h doesn't declare a prototype for wcwidth(). But if we only define
410 dnl that level then db.h won't compile. So we define _GNU_SOURCE which turns
411 dnl on everything. Perhaps other OSes need some feature switch set to get wcwidth()
412 dnl declared; if so they should have an entry added to this case statement.
413 dnl NB that we must define this on the compiler command line, not in config.h,
414 dnl because it must be set before any system header is included and there's no
415 dnl portable way to make sure that files generated by lex include config.h
416 dnl before system header files.
420 # Like DEFS, but doesn't get stomped on by configure when using config.h:
421 test -z "$OURDEFS" && OURDEFS="-D_GNU_SOURCE" \
422 || OURDEFS="$OURDEFS -D_GNU_SOURCE"
429 AC_CHECK_HEADERS(errno.h fcntl.h crypt.h ncurses/termcap.h termcap.h \
430 langinfo.h wchar.h wctype.h iconv.h netdb.h \
431 sys/param.h sys/time.h sys/stream.h)
434 dnl Checks for _IO_write_ptr. A Linuxism used by nmh on linux. We
435 dnl really use a whole set of them, but this check should be
438 AC_CHECK_HEADER(libio.h, [
439 AC_EGREP_HEADER(_IO_write_ptr, libio.h, [
440 AC_DEFINE(LINUX_STDIO,1,[Use the Linux _IO_*_ptr defines from <libio.h>.]) ]) ])
442 AC_CHECK_HEADER([sys/ptem.h], AC_DEFINE(WINSIZE_IN_PTEM,1,
443 [Define to 1 if `struct winsize' requires <sys/ptem.h>.]),,
444 [[#if HAVE_SYS_STREAM_H
445 # include <sys/stream.h>
452 AC_CHECK_FUNCS(writev lstat nl_langinfo)
454 dnl Check for multibyte character set support
455 if test "x$ac_cv_header_wchar_h" = "xyes" -a "x$ac_cv_header_wctype_h" = "xyes" \
456 -a "x$ac_cv_func_wcwidth" = "xyes" -a "x$ac_cv_func_mbtowc" = "xyes"; then
457 AC_DEFINE(MULTIBYTE_SUPPORT, 1,
458 [Define to enable support for multibyte character sets.])
461 dnl -------------------
462 dnl CHECK FOR LIBRARIES
463 dnl -------------------
464 dnl Check location of modf
465 AC_CHECK_FUNC(modf, , AC_CHECK_LIB(m, modf))
467 dnl Checks for network libraries (nsl, socket)
470 termcap_curses_order="termcap curses ncurses"
471 for lib in $termcap_curses_order; do
472 AC_CHECK_LIB(${lib}, tgetent, [TERMLIB="-l$lib"; break])
474 AC_SUBST([TERMLIB])dnl
480 dnl Find iconv. It may be in libiconv and may be iconv() or libiconv()
481 if test "x$ac_cv_header_iconv_h" = "xyes"; then
482 AC_CHECK_FUNC(iconv, ac_found_iconv=yes, ac_found_iconv=no)
483 if test "x$ac_found_iconv" = "xno"; then
484 AC_CHECK_LIB(iconv, iconv, ac_found_iconv=yes)
485 if test "x$ac_found_iconv" = "xno"; then
486 AC_CHECK_LIB(iconv, libiconv, ac_found_iconv=yes)
488 if test "x$ac_found_iconv" != "xno"; then
492 dnl Handle case where there is a native iconv but iconv.h is from libiconv
493 AC_CHECK_DECL(_libiconv_version,
494 [ AC_CHECK_LIB(iconv, libiconv, LIBS="-liconv $LIBS") ],,
495 [ #include <iconv.h> ])
498 if test "x$ac_found_iconv" = xyes; then
499 AC_DEFINE([HAVE_ICONV], [1], [Define if you have the iconv() function.])
503 dnl Check if iconv uses const in prototype declaration
504 if test "x$ac_found_iconv" = "xyes"; then
505 AC_CACHE_CHECK(for iconv declaration, ac_cv_iconv_const,
506 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdlib.h>
507 #include <iconv.h>]],
511 #if defined(__STDC__) || defined(__cplusplus)
512 size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
516 [ac_cv_iconv_const=],
517 [ac_cv_iconv_const=const])])
518 AC_DEFINE_UNQUOTED([ICONV_CONST], $ac_cv_iconv_const,
519 [Define as const if the declaration of iconv() needs const.])
526 AC_ARG_WITH([ndbm],AS_HELP_STRING([--with-ndbm=ARG],[use -lARG to link with ndbm]),
527 [nmh_ndbm=$withval],[nmh_ndbm=autodetect])
528 AC_ARG_WITH([ndbmheader],AS_HELP_STRING([--with-ndbmheader=ARG],[#include <ARG> to use ndbm]),
529 [nmh_ndbmheader=$withval],[nmh_ndbmheader=autodetect])
531 if test "$nmh_ndbm" = "autodetect"; then
532 if test "$nmh_ndbmheader" != "autodetect"; then
533 AC_MSG_ERROR([must specify both --with-ndbm and --with-ndbmheader or neither])
536 dnl There are at least four implementations of ndbm, and
537 dnl several of those can be in different places at the whim
538 dnl of the system integrator. A good summary of this mess
539 dnl can be found at http://www.unixpapa.com/incnote/dbm.html
541 dnl Classic ndbm with no library required (eg NetBSD): try this
542 dnl first so we don't accidentally link in a pointless but harmless
543 dnl library in one of the later ndbm.h+libfoo tests:
544 NMH_CHECK_NDBM(ndbm.h,,,
545 dnl Berkeley DBv2 emulating ndbm: header in db.h:
546 NMH_CHECK_NDBM(db.h,db,,
547 dnl Berkeley DBv1 emulating ndbm:
548 NMH_CHECK_NDBM(ndbm.h,db,,
549 NMH_CHECK_NDBM(ndbm.h,db1,,
551 NMH_CHECK_NDBM(ndbm.h,ndbm,,
552 dnl glibc2.1 systems put db1 in a subdir:
553 NMH_CHECK_NDBM(db1/ndbm.h,db1,,
554 dnl GNU gdbm emulating ndbm, with header possibly in gdbm/
555 dnl and possibly needing gbdm_compat library:
556 NMH_CHECK_NDBM(gdbm/ndbm.h,gdbm,,
557 NMH_CHECK_NDBM(gdbm/ndbm.h,gdbm_compat -lgdbm,,
558 NMH_CHECK_NDBM(ndbm.h,gdbm,,
559 NMH_CHECK_NDBM(ndbm.h,gdbm_compat -lgdbm))))))))))
563 dnl We don't really need to check that the user-specified values work,
564 dnl but it is a convenience to the user to bomb out early rather than
565 dnl after configure and half the compile process.
566 NMH_CHECK_NDBM([$nmh_ndbmheader],[$nmh_ndbm])
569 if test "$nmh_ndbm_found" = "no"; then
570 AC_MSG_ERROR([could not find a working ndbm library/header combination])
572 dnl Now export the lib/header to our makefile/config.h:
573 if test x"$nmh_ndbmheader" != x; then
574 AC_DEFINE_UNQUOTED(NDBM_HEADER, <$nmh_ndbmheader>,
575 [Define to the header containing the ndbm API prototypes.])
577 if test x"$nmh_ndbm" != x; then
578 NDBM_LIBS="-l$nmh_ndbm"
582 AC_SUBST([NDBM_LIBS])
585 dnl ------------------
586 dnl Set RPM build root
587 dnl ------------------
588 dnl nmhrpm is used in the final summary, see below. The default value is
589 dnl reported there as ./RPM, consistent with the reporting of the default
590 dnl source code location as ., but its absolute path is used in the Makefile.
592 AS_HELP_STRING([--with-rpmdir=RPMDIR], [RPM build directory @<:@RPM@:>@]))
593 AS_IF([test x"$with_rpmdir" = x], [rpmdir='$(abs_srcdir)/RPM'; nmhrpm=./RPM],
594 [rpmdir="$with_rpmdir"; eval "nmhrpm=${rpmdir}"])
598 dnl --------------------
599 dnl CHECK FOR CYRUS-SASL
600 dnl --------------------
602 AS_IF([test x"$sasl_support" = x"yes"],[
603 AC_CHECK_HEADER([sasl/sasl.h], , [AC_MSG_ERROR([sasl.h not found])])
604 AC_CHECK_LIB([sasl2], [sasl_client_new], [SASLLIB="-lsasl2"],
605 [AC_MSG_ERROR([Cyrus SASL library not found])])],[SASLLIB=""])
608 dnl -----------------
609 dnl CHECK FOR OPENSSL
610 dnl -----------------
612 AS_IF([test x"$tls_support" = x"yes"],[
613 AC_CHECK_HEADER([openssl/ssl.h], , [AC_MSG_ERROR([openssl/ssl.h not found])])
614 AC_CHECK_LIB([crypto], [BIO_write], ,
615 [AC_MSG_ERROR([OpenSSL crypto library not found])])
616 AC_CHECK_LIB([ssl], [SSL_library_init], ,
617 [AC_MSG_ERROR([OpenSSL library not found])])])
619 dnl ---------------------
620 dnl CHECK TERMCAP LIBRARY
621 dnl ---------------------
623 dnl Add the termcap library, so that the following configure
624 dnl tests will find it when it tries to link test programs.
625 nmh_save_LIBS="$LIBS"
626 LIBS="$TERMLIB $LIBS"
628 dnl Check if tgetent accepts NULL (and will allocate its own termcap buffer)
629 dnl Some termcaps reportedly accept a zero buffer, but then dump core
631 dnl Under Cygwin test program crashes but exit code is still 0. So,
632 dnl we test for a file that porgram should create
633 AH_TEMPLATE([TGETENT_ACCEPTS_NULL],
634 [Define to 1 if tgetent() accepts NULL as a buffer.])
635 AC_CACHE_CHECK(if tgetent accepts NULL,
636 nmh_cv_func_tgetent_accepts_null,
641 int r1 = tgetent(buf, "vt100");
642 int r2 = tgetent((char*)0,"vt100");
643 if (r1 >= 0 && r1 == r2) {
647 creat("conftest.tgetent", 0640);
649 exit((r1 != r2) || r2 == -1);
652 if test -f conftest.tgetent; then
653 nmh_cv_func_tgetent_accepts_null=yes
655 nmh_cv_func_tgetent_accepts_null=no
657 nmh_cv_func_tgetent_accepts_null=no,
658 nmh_cv_func_tgetent_accepts_null=no)])
659 if test x$nmh_cv_func_tgetent_accepts_null = xyes; then
660 AC_DEFINE(TGETENT_ACCEPTS_NULL)
662 AC_CACHE_CHECK(if tgetent returns 0 on success,
663 nmh_cv_func_tgetent_zero_success,
668 int r1 = tgetent(buf, "!@#$%^&*");
669 int r2 = tgetent(buf, "vt100");
670 if (r1 < 0 && r2 == 0) {
674 creat("conftest.tgetent0", 0640);
679 if test -f conftest.tgetent0; then
680 nmh_cv_func_tgetent_zero_success=yes
682 nmh_cv_func_tgetent_zero_success=no
684 nmh_cv_func_tgetent_zero_success=no,
685 nmh_cv_func_tgetent_zero_success=no)])
686 AH_TEMPLATE([TGETENT_SUCCESS],
687 [Define to what tgetent() returns on success (0 on HP-UX X/Open curses).])
688 if test x$nmh_cv_func_tgetent_zero_success = xyes; then
689 AC_DEFINE(TGETENT_SUCCESS, 0)
691 AC_DEFINE(TGETENT_SUCCESS, 1)
694 dnl Now put the libraries back to what it was before we
695 dnl starting checking the termcap library.
696 LIBS="$nmh_save_LIBS"
711 dnl For platforms such as FreeBSD that have tm_gmtoff in struct tm.
712 dnl (FreeBSD has a timezone() function but not a timezone global
713 dnl variable that is visible).
714 AC_CHECK_MEMBERS([struct tm.tm_gmtoff],,,[#include <time.h>])
716 AC_STRUCT_DIRENT_D_TYPE
718 dnl Where is <signal.h> located? Needed as input for signames.awk
719 AC_CACHE_CHECK(where signal.h is located, nmh_cv_path_signal_h,
720 [for SIGNAL_H in /usr/include/bsd/sys/signal.h dnl Next
721 /usr/include/asm/signal.h dnl Linux 1.3.0 and above
722 /usr/include/asm/signum.h dnl some versions of Linux/Alpha
723 /usr/include/linux/signal.h dnl Linux up to 1.2.11
724 /usr/include/sys/signal.h dnl Almost everybody else
725 /dev/null; dnl Just in case we fall through
727 test -f $SIGNAL_H && \
728 grep '#[ ]*define[ ][ ]*SIG[0-9A-Z]*[ ]*[0-9][0-9]*' $SIGNAL_H > /dev/null && \
731 nmh_cv_path_signal_h=$SIGNAL_H
733 SIGNAL_H=$nmh_cv_path_signal_h
734 AC_SUBST(SIGNAL_H)dnl
736 dnl These odd looking assignments are done to expand out unexpanded
737 dnl variables in bindir et al (for instance mandir is '${datarootdir}/man',
738 dnl but expanding that gives '${prefix}/share/man', so we need to expand
739 dnl again to get the final answer.
740 dnl We only use the expanded versions to print the install paths in
741 dnl the final summary and should use them nowhere else (see the autoconf
742 dnl docs for the rationale for bindir etc being unexpanded).
743 eval "nmhbin=${bindir}"; eval "nmhbin=${nmhbin}"
744 eval "nmhsysconf=${sysconfdir}"; eval "nmhsysconf=${nmhsysconf}"
745 eval "nmhlib=${libdir}"; eval "nmhlib=${nmhlib}"
746 eval "nmhman=${mandir}"; eval "nmhman=${nmhman}"
747 eval "nmhrpm=${nmhrpm}";
750 dnl Sigh, this is required because under the new world order autoconf has
751 dnl nothing to create in a few of the build directories when doing an object
752 dnl tree build. So make sure we created certain directories if they don't
756 AC_CONFIG_COMMANDS([build-directories],
757 [test -d etc || ${MKDIR_P} etc
758 test -d man || ${MKDIR_P} man])
760 AC_CONFIG_COMMANDS_POST([
764 nmh version : AC_PACKAGE_VERSION
767 compiler flags : ${CFLAGS}
768 linker flags : ${LDFLAGS}
769 definitions : ${OURDEFS}
770 source code location : ${srcdir}
771 binary install path : ${nmhbin}
772 library install path : ${nmhlib}
773 config files install path : ${nmhsysconf}
774 man page install path : ${nmhman}
775 RPM build root : ${nmhrpm}
776 backup prefix : ${backup_prefix}
777 transport system : ${MTS}
778 file locking type : ${LOCKTYPE}
779 default smtp servers : ${smtpservers}
780 default editor : ${editorpath}
781 default pager : ${pagerpath}
782 email address masquerading : ${masquerade}
783 SASL support : ${sasl_support}
784 TLS support : ${tls_support}"
790 AC_CONFIG_FILES([Makefile])