Removed remaining absolute mmh program path names from the binaries.
[mmh] / configure.ac
1 dnl
2 dnl configure.ac -- autoconf template for mmh
3 dnl
4
5 dnl Move this up a bit
6 AC_PREREQ(2.61)
7
8 AC_INIT(mmh, 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 mmh are we building?
32 DATE=`cat ${srcdir}/DATE`
33 echo "configuring for mmh 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 mmh?
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 Do you want mhe support?
49 AC_ARG_ENABLE(mhe,
50   AS_HELP_STRING([--disable-mhe],[disable mhe support]))
51
52 dnl mhe support is on by default, so define it unless --disable-mhe or the
53 dnl deprecated, undocumented --disable-nmh-mhe are specified.
54 if test x"$enable_mhe" != x"no" -a x"$enable_nmh_mhe" != x"no"; then
55   AC_DEFINE(MHE, 1,
56     [Define to compile in support for the Emacs front-end mh-e.])dnl
57 fi
58
59 dnl Do you want to disable use of locale functions
60 AH_TEMPLATE([LOCALE],
61 [Undefine if you don't want locale features.  By default this is defined.])
62 AC_ARG_ENABLE([locale],
63 AC_HELP_STRING([--disable-locale], [turn off locale features]),
64 [if test x$enableval = xyes; then
65   AC_DEFINE(LOCALE)
66 fi],
67 AC_DEFINE(LOCALE)
68 )
69
70 dnl What method of locking to use?
71 AC_ARG_WITH(locking,
72   AS_HELP_STRING([--with-locking=@<:@dot|fcntl|flock|lockf@:>@],
73   [specify the file locking method]))
74
75 if test x"$with_locking" = x"dot"; then
76   LOCKTYPE="dot"
77   AC_DEFINE(DOT_LOCKING, 1, [Define to use dot based file locking.])dnl
78 elif test x"$with_locking" = x"flock"; then
79   LOCKTYPE="flock"
80   AC_DEFINE(FLOCK_LOCKING, 1, [Define to use flock() based locking.])dnl
81 elif test x"$with_locking" = x"lockf"; then
82   LOCKTYPE="lockf"
83   AC_DEFINE(LOCKF_LOCKING, 1, [Define to use lockf() based locking.])dnl
84 elif test x"$with_locking" = x"fcntl"; then
85   LOCKTYPE="fcntl"
86   AC_DEFINE(FCNTL_LOCKING, 1, [Define to use fnctl() based locking.])dnl
87 else
88   LOCKTYPE="dot"
89   AC_DEFINE(DOT_LOCKING)dnl
90 fi
91
92
93 dnl ----------------------------------------------------
94 dnl Default location is /usr/local/mmh/{bin,etc,lib,share/man}
95 dnl ----------------------------------------------------
96 AC_PREFIX_DEFAULT(/usr/local/mmh)
97
98
99 dnl ------------------
100 dnl CHECK THE COMPILER
101 dnl ------------------
102 dnl We want these before the checks,
103 dnl so the checks can modify their values.
104 test -z "$CFLAGS" && CFLAGS= auto_cflags=1
105 if test x"$enable_debug" = x"yes"; then
106   test -z "$LDFLAGS" && LDFLAGS=-g
107 fi
108
109 AC_PROG_CC
110
111 AC_CACHE_CHECK(whether compiler supports -Wno-pointer-sign, nmh_cv_has_noptrsign,
112 [nmh_saved_cflags="$CFLAGS"
113  CFLAGS="$CFLAGS -Wno-pointer-sign"
114  AC_TRY_COMPILE([],[],nmh_cv_has_noptrsign=yes,nmh_cv_has_noptrsign=no)
115  CFLAGS="$nmh_saved_cflags"])
116
117 dnl if the user hasn't specified CFLAGS, then
118 dnl   if compiler is gcc, then
119 dnl     use -O2 and some warning flags
120 dnl   else use -O
121 dnl We use -Wall; if the compiler supports it we also use -Wno-pointer-sign,
122 dnl because gcc 4 now produces a lot of new warnings which are probably mostly
123 dnl spurious and which in any case we don't want to deal with now.
124 if test "$nmh_cv_has_noptrsign" = "yes"; then
125   nmh_gcc_warnflags="-Wall -Wno-pointer-sign"
126 else
127   nmh_gcc_warnflags="-Wall"
128 fi
129
130 if test -n "$auto_cflags"; then
131   if test x"$enable_debug" = x"yes"; then
132     if test -n "$GCC"; then
133       test -z "$CFLAGS" && CFLAGS="$nmh_gcc_warnflags -g" || CFLAGS="$CFLAGS $nmh_gcc_warnflags -g"
134     else
135       test -z "$CFLAGS" && CFLAGS=-g || CFLAGS="$CFLAGS -g"
136     fi
137   else
138     if test -z "$LDFLAGS"; then
139       case "$build_os" in
140         darwin*)
141           LDFLAGS=
142           ;;
143         *)
144           LDFLAGS=-s
145           ;;
146       esac
147     fi
148     if test -n "$GCC"; then
149       test -z "$CFLAGS" && CFLAGS="$nmh_gcc_warnflags -O2" || CFLAGS="$CFLAGS $nmh_gcc_warnflags -O2"
150     else
151       test -z "$CFLAGS" && CFLAGS=-O  || CFLAGS="$CFLAGS -O"
152     fi
153   fi
154 fi
155
156 AC_C_CONST          dnl Does compiler support `const'.
157
158 dnl ------------------
159 dnl CHECK FOR PROGRAMS
160 dnl ------------------
161 AC_PROG_MAKE_SET    dnl Does make define $MAKE
162 AC_PROG_INSTALL     dnl Check for BSD compatible `install'
163 AC_PROG_RANLIB      dnl Check for `ranlib'
164 AC_PROG_AWK         dnl Check for mawk,gawk,nawk, then awk
165 AC_PROG_LEX         dnl Check for lex/flex
166
167 dnl Look for `cut'
168 pathtmp=/usr/bin:/bin:/usr/local/bin:/usr/xpg4/bin:/usr/ucb
169 AC_PATH_PROG(cutpath, cut, no, [$pathtmp])
170
171 dnl ----------------------------------------------
172 dnl check for lclint, and lint if it doesn't exist
173 dnl ----------------------------------------------
174 AC_CHECK_PROG(linttmp1, lclint, lclint, no)dnl
175 if test x$ac_cv_prog_linttmp1 != xno ; then
176   LINT=$ac_cv_prog_linttmp1
177   LINTFLAGS="-weak +posixlib -macrovarprefixexclude"
178 else
179   AC_CHECK_PROG(linttmp2, lint, lint, no)dnl
180   if test x$ac_cv_prog_linttmp2 != xno ; then
181     LINT=$ac_cv_prog_linttmp2
182     LINTFLAGS=""
183   else
184     LINT="echo 'No lint program found'"
185     LINTFLAGS=""
186   fi
187 fi
188 AC_SUBST(LINT)dnl
189 AC_SUBST(LINTFLAGS)dnl
190
191 dnl try to figure out which one we've got
192 AC_CHECK_PROG(LIBTOOL, libtool, libtool, , [$pathtmp])
193 NMH_PROG_GNU_LIBTOOL
194
195 dnl Check for lorder and tsort commands
196 AC_CHECK_PROG(LORDER, lorder, lorder, no)dnl
197 AC_CHECK_PROG(TSORT, tsort, tsort, no)dnl
198
199 dnl If either doesn't exist, replace them with echo and cat
200 if test x$ac_cv_prog_LORDER != xlorder -o x$ac_cv_prog_TSORT != xtsort; then
201   LORDER=echo
202   TSORT=cat
203   AC_SUBST(LORDER)dnl
204   AC_SUBST(TSORT)dnl
205 dnl Mac OS X has lorder, but sh is too broken for it to work
206 dnl elif test -z "`lorder config/config.c 2>&1 | grep config/config.c`" ; then
207 dnl   LORDER=echo
208 dnl   TSORT=cat
209 dnl   AC_SUBST(LORDER)dnl
210 dnl   AC_SUBST(TSORT)dnl
211 fi
212
213 dnl Check whether tsort can deal with loops
214 AC_CACHE_CHECK(whether tsort can deal with loops, nmh_cv_tsort_loop,
215   [if test -z "`echo a b b a | tsort 2>/dev/null | grep a`" ; then
216     nmh_cv_tsort_loop=no
217   else
218     nmh_cv_tsort_loop=yes
219   fi])
220 if test x$nmh_cv_tsort_loop = xno ; then
221   LORDER=echo
222   TSORT=cat
223   AC_SUBST(LORDER)dnl
224   AC_SUBST(TSORT)dnl
225 fi
226
227 dnl Look for `ls'
228 pathtmp=/usr/bin:/bin:/usr/local/bin:/usr/xpg4/bin:/usr/ucb
229 AC_PATH_PROG(lspath, ls, no, [$pathtmp])
230
231 dnl See how we get ls to display the owner and the group
232 if test "$lspath" != "no"; then
233   AC_CACHE_CHECK(how to get ls to show us the group ownership of a file,
234                  nmh_cv_ls_grpopt,
235   [if test x"`$lspath -dl / | $AWK '{print $9}'`" = x"/"; then
236     dnl There were 9 parameters, so unless this is a really bizarre, nonstandard
237     dnl ls, it would seem -l gave us both the user and group.  On this type of
238     dnl ls, -g makes _only_ the group be displayed (and not the user).
239     nmh_cv_ls_grpopt="-l"
240   else
241     dnl Looks like -l only gave us the user, so we need -g to get the group too.
242     nmh_cv_ls_grpopt="-lg"
243   fi])
244 fi
245
246 dnl Look for `sendmail'
247 pathtmp=/usr/lib:/usr/sbin:/usr/etc:/usr/ucblib:/usr/bin:/bin
248 AC_PATH_PROG(sendmailpath, sendmail, /usr/sbin/sendmail, [$pathtmp])
249
250 dnl Look for `vi'
251 pathtmp=/usr/bin:/bin:/usr/ucb:/usr/local/bin
252 AC_PATH_PROG(vipath, vi, /bin/vi, [$pathtmp])
253
254 dnl ----------------------------------------------------------
255 dnl FIND MAIL SPOOL AND SEE IF WE NEED TO MAKE inc SETGID MAIL
256 dnl ----------------------------------------------------------
257 AC_CACHE_CHECK(where mail spool is located, nmh_cv_mailspool,
258 [for mailspool in /var/mail        dnl
259                   /var/spool/mail  dnl
260                   /usr/spool/mail  dnl
261                   /dev/null;       dnl Just in case we fall through
262 do
263   test -d $mailspool && break
264 done
265 nmh_cv_mailspool=$mailspool
266 ])
267 mailspool=$nmh_cv_mailspool
268 AC_SUBST(mailspool)dnl
269
270 dnl See whether the mail spool directory is world-writable.
271 if test "$lspath" != "no" -a "$cutpath" != "no"; then
272   AC_CACHE_CHECK(whether the mail spool is world-writable,
273                  nmh_cv_mailspool_world_writable,
274   [if test "`$lspath -dlL $mailspool | $cutpath -c9`" = "-"; then
275     nmh_cv_mailspool_world_writable=no
276   else
277     nmh_cv_mailspool_world_writable=yes
278   fi])
279 fi
280
281 dnl Also, check for liblockfile (as found on Debian systems)
282 AC_CHECK_HEADER(lockfile.h, AC_CHECK_LIB(lockfile, lockfile_create) )
283
284 dnl and whether its companion program dotlockfile is setgid
285 AC_PATH_PROG(dotlockfilepath, dotlockfile, no)
286 if test "$ac_cv_lib_lockfile_lockfile_create" != "no" ; then
287   if test "$ac_cv_path_dotlockfilepath" != "no" ; then
288     AC_CACHE_CHECK(whether dotlockfile is setgid, nmh_cv_dotlockfile_setgid,
289     [ if test -g "$ac_cv_path_dotlockfilepath" ; then
290         nmh_cv_dotlockfile_setgid=yes
291       else
292         nmh_cv_dotlockfile_setgid=no
293       fi])
294   fi
295 fi
296
297 dnl If mailspool is not world-writable and dotlockfile is not setgid,
298 dnl we need to #define MAILGROUP to 1 and make inc setgid.
299 if test x"$LOCKTYPE" = x"dot" -a x"$nmh_cv_mailspool_world_writable" = x"no" -a x"$nmh_cv_dotlockfile_setgid" != x"yes" ; then
300   dnl do we really need both of these?
301   AC_DEFINE(MAILGROUP,1,
302     [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
303   SETGID_MAIL=1
304 fi
305 AC_SUBST(SETGID_MAIL)dnl
306
307 dnl Use ls to see which group owns the mail spool directory.
308 AC_CACHE_CHECK(what group owns the mail spool, nmh_cv_ls_mail_grp,
309 [nmh_cv_ls_mail_grp=`$lspath -dL $nmh_cv_ls_grpopt $mailspool|$AWK '{print $4}'`
310 ])
311 MAIL_SPOOL_GRP=$nmh_cv_ls_mail_grp
312 AC_SUBST(MAIL_SPOOL_GRP)dnl
313
314 dnl ------------------
315 dnl CHECK HEADER FILES
316 dnl ------------------
317
318 dnl On glibc we need to define at least the '_XOPEN_SOURCE' level of features,
319 dnl or wchar.h doesn't declare a prototype for wcwidth(). But if we only define
320 dnl that level then db.h won't compile. So we define _GNU_SOURCE which turns
321 dnl on everything. Perhaps other OSes need some feature switch set to get wcwidth()
322 dnl declared; if so they should have an entry added to this case statement.
323 dnl NB that we must define this on the compiler command line, not in config.h,
324 dnl because it must be set before any system header is included and there's no
325 dnl portable way to make sure that files generated by lex include config.h
326 dnl before system header files.
327
328 case "$target_os" in
329   linux*)
330     # Like DEFS, but doesn't get stomped on by configure when using config.h:
331     OURDEFS="$OURDEFS -D_GNU_SOURCE"
332     ;;
333 esac
334 AC_SUBST(OURDEFS)
335
336 AC_HEADER_DIRENT
337 AC_HEADER_STDC
338 AC_HEADER_TIME
339 AC_HEADER_SYS_WAIT
340 AC_HEADER_STAT
341 AC_HEADER_TIOCGWINSZ
342 AC_CHECK_HEADERS(string.h memory.h stdlib.h unistd.h errno.h fcntl.h \
343                  limits.h crypt.h termcap.h termio.h termios.h locale.h \
344                  langinfo.h wchar.h wctype.h iconv.h netdb.h \
345                  sys/param.h sys/time.h sys/utsname.h sys/stream.h \
346                  arpa/inet.h arpa/ftp.h)
347
348 dnl
349 dnl Checks for _IO_write_ptr. A Linuxism used by nmh on linux. We
350 dnl really use a whole set of them, but this check should be
351 dnl sufficient.
352 dnl
353 AC_CHECK_HEADER(libio.h, [
354   AC_EGREP_HEADER(_IO_write_ptr, libio.h, [
355     AC_DEFINE(LINUX_STDIO,1,[Use the Linux _IO_*_ptr defines from <libio.h>.]) ]) ])
356
357 AC_CHECK_HEADER([sys/ptem.h], AC_DEFINE(WINSIZE_IN_PTEM,1,
358   [Define to 1 if `struct winsize' requires <sys/ptem.h>.]),,
359 [[#if HAVE_SYS_STREAM_H
360 #  include <sys/stream.h>
361 #endif
362 ]])
363
364 dnl ---------------
365 dnl CHECK FUNCTIONS
366 dnl ---------------
367 AC_CHECK_LIB(mkstemp,mkstemp)
368 AC_CHECK_FUNCS(waitpid sigaction sigprocmask sigblock sigsetmask \
369                sighold sigrelse lstat uname tzset killpg mkstemp \
370                getutent nl_langinfo mbtowc wcwidth)
371
372 dnl sigsetjmp may be a macro
373 AC_MSG_CHECKING(for sigsetjmp)
374 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <setjmp.h>]],
375   [[sigsetjmp((void *)0, 0);]])],[AC_DEFINE(HAVE_SIGSETJMP, 1,
376     [Define to 1 if you have the `sigsetjmp'.]) AC_MSG_RESULT(yes)],
377   [AC_MSG_RESULT(no)])
378
379 AC_REPLACE_FUNCS(snprintf strdup)
380
381 dnl Look for the initgroups() declaration.  On AIX 4.[13], Solaris 4.1.3, and
382 dnl ULTRIX 4.2A the function is defined in libc but there's no declaration in
383 dnl any system header.
384 dnl
385 dnl On Solaris 2.[456], the declaration is in <grp.h>.  On HP-UX 9-11 and
386 dnl (reportedly) FreeBSD 3.[23], it's in <unistd.h>.  Any other locations we
387 dnl need to check?
388 AH_TEMPLATE(INITGROUPS_HEADER, [Define to the header containing the declaration of `initgroups'.])
389 AC_EGREP_HEADER(initgroups, grp.h, AC_DEFINE(INITGROUPS_HEADER, <grp.h>),
390                 AC_EGREP_HEADER(initgroups, unistd.h,
391                                 AC_DEFINE(INITGROUPS_HEADER, <unistd.h>)))
392
393 dnl On AIX 4.1, snprintf() is defined in libc.a but there's no prototype in
394 dnl <stdio.h> or elsewhere.  Apparently it's not officially supported (though it
395 dnl seems to work perfectly and IBM apparently uses it in internal code).
396 dnl Anyhow, if we omit our own snprintf() and vsnprintf() prototypes when we
397 dnl HAVE_SNPRINTF, we get a billion warnings at compile time.  Use the C
398 dnl preprocessor to preprocess stdio.h and make sure that there's actually a
399 dnl prototype.
400 AC_EGREP_HEADER(snprintf, stdio.h, AC_DEFINE(HAVE_SNPRINTF_PROTOTYPE,1,
401   [Define to 1 if <stdio.h> has a prototype for snprintf().]))
402
403 dnl Check for multibyte character set support
404 if test "x$ac_cv_header_wchar_h" = "xyes" -a "x$ac_cv_header_wctype_h" = "xyes" \
405     -a "x$ac_cv_func_wcwidth" = "xyes" -a "x$ac_cv_func_mbtowc" = "xyes"; then
406   AC_DEFINE(MULTIBYTE_SUPPORT, 1,
407     [Define to enable support for multibyte character sets.])
408 fi
409
410 dnl -------------------
411 dnl CHECK FOR LIBRARIES
412 dnl -------------------
413 dnl Check location of modf
414 AC_CHECK_FUNC(modf, , AC_CHECK_LIB(m, modf))
415
416 dnl Checks for network libraries (nsl, socket)
417 AC_CHECK_NETLIBS
418
419 termcap_curses_order="termcap curses ncurses"
420 for lib in $termcap_curses_order; do
421   AC_CHECK_LIB(${lib}, tgetent, [TERMLIB="-l$lib"; break])
422 done
423 AC_SUBST(TERMLIB)dnl
424
425 dnl ---------------
426 dnl CHECK FOR ICONV
427 dnl ---------------
428
429 dnl Find iconv. It may be in libiconv and may be iconv() or libiconv()
430 if test "x$ac_cv_header_iconv_h" = "xyes"; then
431   AC_CHECK_FUNC(iconv, ac_found_iconv=yes, ac_found_iconv=no)
432   if test "x$ac_found_iconv" = "xno"; then
433     AC_CHECK_LIB(iconv, iconv, ac_found_iconv=yes)
434     if test "x$ac_found_iconv" = "xno"; then
435       AC_CHECK_LIB(iconv, libiconv, ac_found_iconv=yes)
436     fi
437     if test "x$ac_found_iconv" != "xno"; then
438       LIBS="-liconv $LIBS"
439     fi
440   else
441     dnl Handle case where there is a native iconv but iconv.h is from libiconv
442     AC_CHECK_DECL(_libiconv_version,
443       [ AC_CHECK_LIB(iconv, libiconv, LIBS="-liconv $LIBS") ],,
444       [ #include <iconv.h> ])
445   fi
446 fi
447 if test "x$ac_found_iconv" = xyes; then
448   AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.])
449 fi
450
451 dnl Check if iconv uses const in prototype declaration
452 if test "x$ac_found_iconv" = "xyes"; then
453   AC_CACHE_CHECK(for iconv declaration, ac_cv_iconv_const,
454     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdlib.h>
455         #include <iconv.h>]],
456         [[#ifdef __cplusplus
457           "C"
458           #endif
459           #if defined(__STDC__) || defined(__cplusplus)
460           size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
461           #else
462           size_t iconv();
463           #endif]])],
464       [ac_cv_iconv_const=],
465       [ac_cv_iconv_const=const])])
466   AC_DEFINE_UNQUOTED([ICONV_CONST], $ac_cv_iconv_const,
467     [Define as const if the declaration of iconv() needs const.])
468 fi
469
470
471 dnl ---------------------
472 dnl CHECK TERMCAP LIBRARY
473 dnl ---------------------
474
475 dnl Add the termcap library, so that the following configure
476 dnl tests will find it when it tries to link test programs.
477 nmh_save_LIBS="$LIBS"
478 LIBS="$TERMLIB $LIBS"
479
480 dnl Checks for external variable ospeed in the termcap library.
481 AC_CACHE_CHECK(if an include file defines ospeed,
482 nmh_cv_decl_ospeed_include_defines,
483 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
484 #if HAVE_TERMIOS_H
485 # include <termios.h>
486 #endif
487 #if HAVE_TERMCAP_H
488 # include <termcap.h>
489 #endif]], [[ospeed = 0;]])],
490 nmh_cv_decl_ospeed_include_defines=yes,nmh_cv_decl_ospeed_include_defines=no)])
491
492 if test $nmh_cv_decl_ospeed_include_defines = no; then
493   AC_CACHE_CHECK(if you must define ospeed,
494   nmh_cv_decl_ospeed_must_define,
495   [AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
496   [[extern short ospeed; ospeed = 0;]])],
497   nmh_cv_decl_ospeed_must_define=yes,nmh_cv_decl_ospeed_must_define=no)])
498 fi
499
500 AH_TEMPLATE(HAVE_OSPEED, [Define to 1 if your termcap library has the ospeed variable.])
501 if test $nmh_cv_decl_ospeed_include_defines = yes; then
502   AC_DEFINE(HAVE_OSPEED)dnl
503 elif test $nmh_cv_decl_ospeed_must_define = yes; then
504   AC_DEFINE(HAVE_OSPEED)
505   AC_DEFINE(MUST_DEFINE_OSPEED, 1,
506     [Define to 1 if you have ospeed, but it is not defined in termcap.h.])
507 fi
508
509 dnl Check if tgetent accepts NULL (and will allocate its own termcap buffer)
510 dnl Some termcaps reportedly accept a zero buffer, but then dump core
511 dnl in tgetstr().
512 dnl Under Cygwin test program crashes but exit code is still 0. So,
513 dnl we test for a file that porgram should create
514 AH_TEMPLATE([TGETENT_ACCEPTS_NULL],
515 [Define to 1 if tgetent() accepts NULL as a buffer.])
516 AC_CACHE_CHECK(if tgetent accepts NULL,
517 nmh_cv_func_tgetent_accepts_null,
518 [AC_TRY_RUN([
519 main()
520 {
521         char buf[4096];
522         int r1 = tgetent(buf, "vt100");
523         int r2 = tgetent(NULL,"vt100");
524         if (r1 >= 0 && r1 == r2) {
525                 char tbuf[1024], *u;
526                 u = tbuf;
527                         tgetstr("cl", &u);
528                 creat("conftest.tgetent", 0640);
529         }
530         exit((r1 != r2) || r2 == -1);
531 }
532 ],
533   if test -f conftest.tgetent; then
534     nmh_cv_func_tgetent_accepts_null=yes
535   else
536     nmh_cv_func_tgetent_accepts_null=no
537   fi,
538   nmh_cv_func_tgetent_accepts_null=no,
539   nmh_cv_func_tgetent_accepts_null=no)])
540 if test x$nmh_cv_func_tgetent_accepts_null = xyes; then
541   AC_DEFINE(TGETENT_ACCEPTS_NULL)
542 fi
543 AC_CACHE_CHECK(if tgetent returns 0 on success,
544 nmh_cv_func_tgetent_zero_success,
545 [AC_TRY_RUN([
546 main()
547 {
548         char buf[4096];
549         int r1 = tgetent(buf, "!@#$%^&*");
550         int r2 = tgetent(buf, "vt100");
551         if (r1 < 0 && r2 == 0) {
552                 char tbuf[1024], *u;
553                 u = tbuf;
554                         tgetstr("cl", &u);
555                 creat("conftest.tgetent0", 0640);
556         }
557         exit(r1 == r2);
558 }
559 ],
560   if test -f conftest.tgetent0; then
561     nmh_cv_func_tgetent_zero_success=yes
562   else
563     nmh_cv_func_tgetent_zero_success=no
564   fi,
565   nmh_cv_func_tgetent_zero_success=no,
566   nmh_cv_func_tgetent_zero_success=no)])
567 AH_TEMPLATE([TGETENT_SUCCESS],
568 [Define to what tgetent() returns on success (0 on HP-UX X/Open curses).])
569 if test x$nmh_cv_func_tgetent_zero_success = xyes; then
570   AC_DEFINE(TGETENT_SUCCESS, 0)
571 else
572   AC_DEFINE(TGETENT_SUCCESS, 1)
573 fi
574
575 dnl Now put the libraries back to what it was before we
576 dnl starting checking the termcap library.
577 LIBS="$nmh_save_LIBS"
578
579 dnl --------------
580 dnl CHECK TYPEDEFS
581 dnl --------------
582 AC_TYPE_SIGNAL
583 AC_TYPE_PID_T
584 AC_TYPE_OFF_T
585 AC_TYPE_UID_T
586 AC_TYPE_MODE_T
587 AC_TYPE_SIZE_T
588
589 dnl Check for sigset_t.  Currently I'm looking in
590 dnl <sys/types.h> and <signal.h>.  Others might need
591 dnl to be added.
592 AC_CACHE_CHECK(for sigset_t, nmh_cv_type_sigset_t,
593 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
594 #include <signal.h>]], [[sigset_t tempsigset;]])],
595 nmh_cv_type_sigset_t=yes,nmh_cv_type_sigset_t=no)])
596 if test $nmh_cv_type_sigset_t = no; then
597   AC_DEFINE(sigset_t, unsigned int,
598     [Define to `unsigned int' if <sys/types.h> or <signal.h> doesn't define.])
599 fi
600
601 dnl ----------------
602 dnl CHECK STRUCTURES
603 dnl ----------------
604 AC_CHECK_MEMBERS(struct stat.st_blksize)
605
606 AC_CHECK_MEMBERS(struct tm.tm_gmtoff,,,
607   [#ifdef TIME_WITH_SYS_TIME
608 # include <sys/time.h>
609 # include <time.h>
610 #else
611 # ifdef TM_IN_SYS_TIME
612 #  include <sys/time.h>
613 # else
614 #  include <time.h>
615 # endif
616 #endif])
617
618 AC_CHECK_MEMBERS(struct utmp.ut_type,,,[#include <utmp.h>])
619
620 AC_MSG_CHECKING(for union wait)
621 AC_CACHE_VAL(nmh_cv_union_wait, [dnl
622   AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
623 #include <sys/wait.h>]],
624     [[union wait status; int pid; pid = wait (&status);
625 #ifdef WEXITSTATUS
626 /* Some POSIXoid systems have both the new-style macros and the old
627    union wait type, and they do not work together.  If union wait
628    conflicts with WEXITSTATUS et al, we don't want to use it at all.  */
629         if (WEXITSTATUS (status) != 0) pid = -1;
630 #ifdef WTERMSIG
631         /* If we have WEXITSTATUS and WTERMSIG, just use them on ints.  */
632         -- blow chunks here --
633 #endif
634 #endif
635 #ifdef HAVE_WAITPID
636         /* Make sure union wait works with waitpid.  */
637         pid = waitpid (-1, &status, 0);
638 #endif
639       ]])],
640     [nmh_cv_union_wait=yes],
641     [nmh_cv_union_wait=no])])
642 if test "$nmh_cv_union_wait" = yes; then
643   AC_DEFINE(HAVE_UNION_WAIT, 1,
644     [Define to 1 if you have the \`union wait' type in <sys/wait.h>.])
645 fi
646 AC_MSG_RESULT($nmh_cv_union_wait)
647
648 CHECK_TYPE_STRUCT_DIRENT_D_TYPE()
649
650 dnl -------------
651 dnl CHECK SIGNALS
652 dnl -------------
653 dnl What style of signal do you have (POSIX, BSD, or SYSV)?
654 AH_TEMPLATE(RELIABLE_SIGNALS, [Define to 1 if you have reliable signals.])
655 AC_MSG_CHECKING(what style of signals to use)
656 if test $ac_cv_func_sigaction = yes -a $ac_cv_func_sigprocmask = yes; then
657   signals_style=POSIX_SIGNALS
658   AC_DEFINE(POSIX_SIGNALS, 1,
659     [Define to 1 if you use POSIX style signal handling.])
660   AC_DEFINE(RELIABLE_SIGNALS)
661 elif test $ac_cv_func_sigblock = yes -a $ac_cv_func_sigsetmask = yes; then
662   signals_style=BSD_SIGNALS
663   AC_DEFINE(BSD_SIGNALS,1,
664     [Define to 1 if you use BSD style signal handling (and can block signals).])
665   AC_DEFINE(RELIABLE_SIGNALS)
666 elif test $ac_cv_func_sighold = yes -a $ac_cv_func_sigrelse = yes; then
667   signals_style=SYSV_SIGNALS
668   AC_DEFINE(SYSV_SIGNALS,1,
669     [Define to 1 if you use SYSV style signal handling (and can block signals).])
670 else
671   signals_style=NO_SIGNAL_BLOCKING
672   AC_DEFINE(NO_SIGNAL_BLOCKING,1,
673     [Define to 1 if you have no signal blocking at all (bummer).])
674 fi
675
676 AC_MSG_RESULT($signals_style)
677
678 dnl Where is <signal.h> located?  Needed as input for signames.awk
679 AC_CACHE_CHECK(where signal.h is located, nmh_cv_path_signal_h,
680 [for SIGNAL_H in /usr/include/bsd/sys/signal.h  dnl Next
681                  /usr/include/asm/signal.h      dnl Linux 1.3.0 and above
682                  /usr/include/asm/signum.h      dnl some versions of Linux/Alpha
683                  /usr/include/linux/signal.h    dnl Linux up to 1.2.11
684                  /usr/include/sys/signal.h      dnl Almost everybody else
685                  /dev/null;                     dnl Just in case we fall through
686 do
687   test -f $SIGNAL_H && \
688   grep '#[         ]*define[         ][         ]*SIG[0-9A-Z]*[         ]*[0-9][0-9]*' $SIGNAL_H > /dev/null && \
689   break
690 done
691 nmh_cv_path_signal_h=$SIGNAL_H
692 ])
693 SIGNAL_H=$nmh_cv_path_signal_h
694 AC_SUBST(SIGNAL_H)dnl
695
696 dnl ----------------
697 dnl OS SPECIFIC DEFINES
698 dnl ----------------
699 AH_TEMPLATE(BSD42, [Defined for SunOS 4, FreeBSD, NetBSD, OpenBSD, BSD/OS, Mac OS X/Rhapsody -- does PicoBSD have uname?])
700 AH_TEMPLATE(SCO_5_STDIO, [Defined for SCO5.])
701
702 case "$target_os" in
703
704   sunos4*)
705     AC_DEFINE(BSD42)
706     ;;
707   freebsd*)
708     AC_DEFINE(BSD42)
709     ;;
710   netbsd*)
711     AC_DEFINE(BSD42)
712     ;;
713   openbsd*)
714     AC_DEFINE(BSD42)
715     ;;
716   bsd/os*)
717     AC_DEFINE(BSD42)
718     ;;
719   sco5*)
720     AC_DEFINE(SCO_5_STDIO)
721     ;;
722 esac
723
724
725 dnl ----------------
726 dnl OUTPUT MAKEFILES
727 dnl ----------------
728 AC_CONFIG_FILES(Makefile config/Makefile h/Makefile sbr/Makefile uip/Makefile \
729                 etc/Makefile docs/Makefile man/Makefile)
730 AC_CONFIG_COMMANDS([stamp],[test -z "$CONFIG_HEADERS" || echo > stamp-h])
731 AC_OUTPUT
732
733 dnl These odd looking assignments are done to expand out unexpanded
734 dnl variables in bindir et al (for instance mandir is '${datarootdir}/man',
735 dnl but expanding that gives '${prefix}/share/man', so we need to expand
736 dnl again to get the final answer.
737 dnl We only use the expanded versions to print the install paths in
738 dnl the final summary and should use them nowhere else (see the autoconf
739 dnl docs for the rationale for bindir etc being unexpanded).
740 eval "nmhbin=${bindir}";         eval "nmhbin=${nmhbin}"
741 eval "nmhsysconf=${sysconfdir}"; eval "nmhsysconf=${nmhsysconf}"
742 eval "nmhlib=${libdir}";         eval "nmhlib=${nmhlib}"
743 eval "nmhman=${mandir}";         eval "nmhman=${nmhman}"
744
745 echo "
746 mmh configuration
747 -----------------
748 mmh version            : AC_PACKAGE_VERSION
749 target os              : ${target}
750 compiler               : ${CC}
751 compiler flags         : ${CFLAGS}
752 linker flags           : ${LDFLAGS}
753 definitions            : ${OURDEFS}
754 source code location   : ${srcdir}
755
756 binary install path    : ${nmhbin}
757 library install path   : ${nmhlib}
758 config install path    : ${nmhsysconf}
759 man page install path  : ${nmhman}
760
761 sendmail path          : ${sendmailpath}
762 mail spool             : ${mailspool}
763
764 file locking type      : ${LOCKTYPE}
765 "