]> diplodocus.org Git - nmh/blob - configure.in
Added -proxy option to inc and msgchk
[nmh] / configure.in
1 dnl
2 dnl configure.in -- autoconf template for nmh
3 dnl
4 dnl $Id$
5 dnl
6
7 AC_INIT(h/nmh.h)
8 AC_CONFIG_HEADER(config.h)
9
10 AC_CANONICAL_SYSTEM
11
12 dnl ---------------------
13 dnl define a macro or two
14 dnl ---------------------
15
16 AC_DEFUN(NMH_PROG_GNU_LIBTOOL, [
17 if test -n "$LIBTOOL" ; then
18 tmptest=`$LIBTOOL --version 2>&1 | grep GNU`
19 if test x"$tmptest" != x ; then
20 GNU_LIBTOOL=1
21 AC_SUBST(GNU_LIBTOOL)dnl
22 fi
23 fi
24 ] )
25
26
27 dnl What version of nmh are we building?
28 VERSION=`sed -e 's/nmh-//' ${srcdir}/VERSION`
29 echo "configuring for nmh-$VERSION"
30 AC_SUBST(VERSION)dnl
31
32 dnl What date of nmh are we building?
33 DATE=`cat ${srcdir}/DATE`
34 echo "configuring for nmh dated $DATE"
35 AC_SUBST(DATE)dnl
36
37 dnl --------------------------
38 dnl CHECK COMMAND LINE OPTIONS
39 dnl --------------------------
40
41 dnl Do you want client-side support for apop?
42 AC_ARG_ENABLE(apop,
43 [ --enable-apop enable client-side support for POP3 and APOP])
44 if test x"$enable_apop" = x"yes"; then
45 AC_DEFINE(APOP)dnl
46 APOPLIB=md5.o
47 enable_pop=yes
48 fi
49 AC_SUBST(APOPLIB)dnl
50
51 dnl Do you want to debug nmh?
52 AC_ARG_ENABLE(debug,
53 [ --enable-debug enable nmh code debugging])
54 dnl The old redundant --enable-nmh-debug is deprecated and undocumented.
55 if test x"$enable_nmh_debug" = x"yes"; then
56 enable_debug=yes
57 fi
58
59 dnl Allow users to send email from addresses other than their default?
60 AC_ARG_ENABLE(masquerade,
61 [ --enable-masquerade[='draft_from mmailid username_extension']
62 enable up to 3 types of address masquerading [none]],
63 [if test x"$enable_masquerade" = x"yes"; then
64 masquerade="draft_from mmailid username_extension"
65 else
66 masquerade="$enable_masquerade"
67 fi])
68 AC_SUBST(masquerade)dnl
69
70 dnl Do you want mhe support?
71 AC_ARG_ENABLE(mhe,
72 [ --enable-mhe enable mhe support (DEFAULT)])
73
74 dnl mhe support is on by default, so define it unless --disable-mhe or the
75 dnl deprecated, undocumented --disable-nmh-mhe are specified.
76 if test x"$enable_mhe" != x"no" -a x"$enable_nmh_mhe" != x"no"; then
77 AC_DEFINE(MHE)dnl
78 fi
79
80 dnl Do you want client-side support for pop?
81 AC_ARG_ENABLE(pop,
82 [ --enable-pop enable client-side support for plain POP3])
83 dnl The old redundant --enable-nmh-pop is deprecated and undocumented.
84 if test x"$enable_nmh_pop" = x"yes"; then
85 enable_pop=yes
86 fi
87
88 dnl Do you want client-side support for using SASL for authentication?
89 dnl Note that this code will be enabled for both POP and SMTP
90 AC_ARG_WITH(cyrus-sasl,
91 [ --with-cyrus-sasl=<dir> Specify location of Cyrus SASL library for auth])
92 if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != x"no"; then
93 AC_DEFINE(CYRUS_SASL)dnl
94 sasl_support=yes
95 else
96 sasl_support=no
97 fi
98
99 dnl What should be the default editor?
100 AC_ARG_WITH(editor,
101 [ --with-editor=EDITOR specify the default editor])
102
103 if test -n "$with_editor"; then
104 editorpath="$with_editor"
105 fi
106
107 dnl Set the backup prefix
108 AC_ARG_WITH([hash-backup],
109 [ --with-hash-backup use # as the backup prefix (default: ,)])
110 if test x"$with_hash_backup" != x -a x"$with_hash_backup" != x"no"; then
111 backup_prefix="#"
112 else
113 backup_prefix=","
114 fi
115 AC_DEFINE_UNQUOTED(BACKUP_PREFIX, "$backup_prefix")dnl
116
117 dnl Do you want support for hesiod
118 AC_ARG_WITH(hesiod,
119 [ --with-hesiod=PREFIX specify location of Hesiod])
120 if test x"$with_hesiod" != x -a x"$with_hesiod" != x"no"; then
121 AC_DEFINE(HESIOD)dnl
122 fi
123
124 dnl Do you want client-side support for kpop
125 AC_ARG_WITH(krb4,
126 [ --with-krb4=PREFIX specify location of Kerberos V4 for KPOP support])
127 if test x"$with_krb4" != x -a x"$with_krb4" != x"no"; then
128 enable_pop=yes
129 AC_DEFINE(KPOP)dnl
130 AC_DEFINE(KPOP_PRINCIPAL, "pop")dnl
131 fi
132
133 dnl After we know if we're including apop and kpop support, do pop stuff
134 if test x"$enable_pop" = x"yes"; then
135 AC_DEFINE(POP)dnl
136 POPLIB=popsbr.o
137 POPSED='/^%nmhbeginpop%/d;/^%nmhendpop%/d'
138 else
139 POPSED='/^%nmhbeginpop%/,/^%nmhendpop%/d'
140 fi
141 AC_SUBST(POPLIB)dnl
142 AC_SUBST(POPSED)dnl
143
144 dnl What method of locking to use?
145 AC_ARG_WITH(locking,
146 [ --with-locking=LOCKTYPE specify the file locking method
147 (one of dot, fcntl, flock, lockf)])
148
149 if test x"$with_locking" = x"dot"; then
150 LOCKTYPE="dot"
151 AC_DEFINE(DOT_LOCKING)dnl
152 elif test x"$with_locking" = x"flock"; then
153 LOCKTYPE="flock"
154 AC_DEFINE(FLOCK_LOCKING)dnl
155 elif test x"$with_locking" = x"lockf"; then
156 LOCKTYPE="lockf"
157 AC_DEFINE(LOCKF_LOCKING)dnl
158 elif test x"$with_locking" = x"fcntl"; then
159 LOCKTYPE="fcntl"
160 AC_DEFINE(FCNTL_LOCKING)dnl
161 else
162 LOCKTYPE="dot"
163 AC_DEFINE(DOT_LOCKING)dnl
164 fi
165
166 dnl What method of posting should post use?
167 AC_ARG_WITH(mts,
168 [ --with-mts=MTS specify the default mail transport agent/service])
169
170 if test x"$with_mts" = x"smtp"; then
171 MTS="smtp"
172 elif test x"$with_mts" = x"sendmail"; then
173 MTS="sendmail"
174 else
175 MTS="smtp"
176 fi
177 AC_SUBST(MTS)dnl
178
179 dnl Both the smtp and sendmail mail transport services use the smtp code
180 AC_DEFINE(SMTPMTS)dnl
181
182 dnl What should be the default pager?
183 AC_ARG_WITH(pager,
184 [ --with-pager=PAGER specify the default pager])
185
186 if test -n "$with_pager"; then
187 pagerpath="$with_pager"
188 fi
189
190 dnl What should be the default mail server(s)?
191 AC_ARG_WITH(smtpservers,
192 [ --with-smtpservers='SMTPSERVER1[ SMTPSERVER2...]'
193 specify the default SMTP server(s) [localhost]])
194 if test -n "$with_smtpservers"; then
195 smtpservers="$with_smtpservers"
196 else
197 smtpservers="localhost"
198 fi
199 AC_SUBST(smtpservers)dnl
200
201 dnl ----------------------------------------------------
202 dnl Default location is /usr/local/nmh/{bin,etc,lib,man}
203 dnl ----------------------------------------------------
204 AC_PREFIX_DEFAULT(/usr/local/nmh)
205
206 dnl ------------------
207 dnl CHECK THE COMPILER
208 dnl ------------------
209 dnl We want these before the checks,
210 dnl so the checks can modify their values.
211 test -z "$CFLAGS" && CFLAGS= auto_cflags=1
212 if test x"$enable_debug" = x"yes"; then
213 test -z "$LDFLAGS" && LDFLAGS=-g
214 fi
215
216 AC_PROG_CC
217
218 dnl if the user hasn't specified CFLAGS, then
219 dnl if compiler is gcc, then
220 dnl use -O2 and some warning flags
221 dnl else use -O
222 if test -n "$auto_cflags"; then
223 if test x"$enable_debug" = x"yes"; then
224 if test -n "$GCC"; then
225 test -z "$CFLAGS" && CFLAGS="-Wall -g" || CFLAGS="$CFLAGS -Wall -g"
226 else
227 test -z "$CFLAGS" && CFLAGS=-g || CFLAGS="$CFLAGS -g"
228 fi
229 else
230 if test -z "$LDFLAGS"; then
231 case "$build_os" in
232 darwin*)
233 LDFLAGS=
234 ;;
235 *)
236 LDFLAGS=-s
237 ;;
238 esac
239 fi
240 if test -n "$GCC"; then
241 test -z "$CFLAGS" && CFLAGS="-Wall -O2" || CFLAGS="$CFLAGS -Wall -O2"
242 else
243 test -z "$CFLAGS" && CFLAGS=-O || CFLAGS="$CFLAGS -O"
244 fi
245 fi
246 fi
247
248 AC_C_CONST dnl Does compiler support `const'.
249
250 dnl ------------------
251 dnl CHECK FOR PROGRAMS
252 dnl ------------------
253 AC_PROG_MAKE_SET dnl Does make define $MAKE
254 AC_PROG_INSTALL dnl Check for BSD compatible `install'
255 AC_PROG_RANLIB dnl Check for `ranlib'
256 AC_PROG_AWK dnl Check for mawk,gawk,nawk, then awk
257 AC_PROG_LEX dnl Check for lex/flex
258
259 dnl Look for `cut'
260 pathtmp=/usr/bin:/bin:/usr/local/bin:/usr/xpg4/bin:/usr/ucb
261 AC_PATH_PROG(cutpath, cut, no, [$pathtmp])
262
263 dnl ----------------------------------------------
264 dnl check for lclint, and lint if it doesn't exist
265 dnl ----------------------------------------------
266 AC_CHECK_PROG(linttmp1, lclint, lclint, no)dnl
267 if test x$ac_cv_prog_linttmp1 != xno ; then
268 LINT=$ac_cv_prog_linttmp1
269 LINTFLAGS="-weak +posixlib -macrovarprefixexclude"
270 else
271 AC_CHECK_PROG(linttmp2, lint, lint, no)dnl
272 if test x$ac_cv_prog_linttmp2 != xno ; then
273 LINT=$ac_cv_prog_linttmp2
274 LINTFLAGS=""
275 else
276 LINT="echo 'No lint program found'"
277 LINTFLAGS=""
278 fi
279 fi
280 AC_SUBST(LINT)dnl
281 AC_SUBST(LINTFLAGS)dnl
282
283 dnl try to figure out which one we've got
284 AC_CHECK_PROG(LIBTOOL, libtool, libtool, , [$pathtmp])
285 NMH_PROG_GNU_LIBTOOL
286
287 dnl Check for lorder and tsort commands
288 AC_CHECK_PROG(LORDER, lorder, lorder, no)dnl
289 AC_CHECK_PROG(TSORT, tsort, tsort, no)dnl
290
291 dnl If either doesn't exist, replace them with echo and cat
292 if test x$ac_cv_prog_LORDER != xlorder -o x$ac_cv_prog_TSORT != xtsort; then
293 LORDER=echo
294 TSORT=cat
295 AC_SUBST(LORDER)dnl
296 AC_SUBST(TSORT)dnl
297 dnl Mac OS X has lorder, but sh is too broken for it to work
298 dnl elif test -z "`lorder config/config.c 2>&1 | grep config/config.c`" ; then
299 dnl LORDER=echo
300 dnl TSORT=cat
301 dnl AC_SUBST(LORDER)dnl
302 dnl AC_SUBST(TSORT)dnl
303 fi
304
305 dnl Check whether tsort can deal with loops
306 AC_CACHE_CHECK(whether tsort can deal with loops, nmh_cv_tsort_loop,
307 [if test -z "`echo a b b a | tsort 2>/dev/null | grep a`" ; then
308 nmh_cv_tsort_loop=no
309 else
310 nmh_cv_tsort_loop=yes
311 fi])
312 if test x$nmh_cv_tsort_loop = xno ; then
313 LORDER=echo
314 TSORT=cat
315 AC_SUBST(LORDER)dnl
316 AC_SUBST(TSORT)dnl
317 fi
318
319 dnl Look for `ls'
320 pathtmp=/usr/bin:/bin:/usr/local/bin:/usr/xpg4/bin:/usr/ucb
321 AC_PATH_PROG(lspath, ls, no, [$pathtmp])
322
323 dnl See how we get ls to display the owner and the group
324 if test "$lspath" != "no"; then
325 AC_CACHE_CHECK(how to get ls to show us the group ownership of a file,
326 nmh_cv_ls_grpopt,
327 [if test x"`$lspath -dl / | $AWK '{print $9}'`" = x"/"; then
328 dnl There were 9 parameters, so unless this is a really bizarre, nonstandard
329 dnl ls, it would seem -l gave us both the user and group. On this type of
330 dnl ls, -g makes _only_ the group be displayed (and not the user).
331 nmh_cv_ls_grpopt="-l"
332 else
333 dnl Looks like -l only gave us the user, so we need -g to get the group too.
334 nmh_cv_ls_grpopt="-lg"
335 fi])
336 fi
337
338 dnl Look for `more'
339 pathtmp=/usr/bin:/bin:/usr/ucb:/usr/local/bin
340 AC_PATH_PROG(morepath, more, no, [$pathtmp])
341
342 dnl If pager is not specified yet,
343 dnl then use `more' as the default.
344 if test -z "$pagerpath"; then
345 pagerpath="$morepath"
346 fi
347 AC_SUBST(pagerpath)dnl
348
349 dnl Look for `sendmail'
350 pathtmp=/usr/lib:/usr/sbin:/usr/etc:/usr/ucblib:/usr/bin:/bin
351 AC_PATH_PROG(sendmailpath, sendmail, no, [$pathtmp])
352
353 dnl Look for `vi'
354 pathtmp=/usr/bin:/bin:/usr/ucb:/usr/local/bin
355 AC_PATH_PROG(vipath, vi, no, [$pathtmp])
356
357 dnl If editor is not specified yet,
358 dnl then use `vi' as the default.
359 if test -z "$editorpath"; then
360 editorpath="$vipath"
361 fi
362 AC_SUBST(editorpath)dnl
363
364 dnl Check for broken vi
365 AC_CACHE_CHECK(for broken vi, nmh_cv_attvibug,
366 [if echo 'r /nonexist-file
367 q' | ex > /dev/null
368 then
369 nmh_cv_attvibug=no
370 else
371 nmh_cv_attvibug=yes
372 fi])
373
374 if test "$nmh_cv_attvibug" = yes; then
375 AC_DEFINE(ATTVIBUG)dnl
376 fi
377
378 dnl ----------------------------------------------------------
379 dnl FIND MAIL SPOOL AND SEE IF WE NEED TO MAKE inc SETGID MAIL
380 dnl ----------------------------------------------------------
381 AC_CACHE_CHECK(where mail spool is located, nmh_cv_mailspool,
382 [for mailspool in /var/mail dnl
383 /var/spool/mail dnl
384 /usr/spool/mail dnl
385 /dev/null; dnl Just in case we fall through
386 do
387 test -d $mailspool && break
388 done
389 nmh_cv_mailspool=$mailspool
390 ])
391 mailspool=$nmh_cv_mailspool
392 AC_SUBST(mailspool)dnl
393
394 dnl See whether the mail spool directory is world-writable.
395 if test "$lspath" != "no" -a "$cutpath" != "no"; then
396 AC_CACHE_CHECK(whether the mail spool is world-writable,
397 nmh_cv_mailspool_world_writable,
398 [if test "`$lspath -dlL $mailspool | $cutpath -c9`" = "-"; then
399 nmh_cv_mailspool_world_writable=no
400 else
401 nmh_cv_mailspool_world_writable=yes
402 fi])
403 fi
404
405 dnl Also, check for liblockfile (as found on Debian systems)
406 AC_CHECK_HEADER(lockfile.h, AC_CHECK_LIB(lockfile, lockfile_create) )
407
408 dnl and whether its companion program dotlockfile is setgid
409 AC_PATH_PROG(dotlockfilepath, dotlockfile, no)
410 if test "$ac_cv_lib_lockfile_lockfile_create" != "no" ; then
411 if test "$ac_cv_path_dotlockfilepath" != "no" ; then
412 AC_CACHE_CHECK(whether dotlockfile is setgid, nmh_cv_dotlockfile_setgid,
413 [ if test -g "$ac_cv_path_dotlockfilepath" ; then
414 nmh_cv_dotlockfile_setgid=yes
415 else
416 nmh_cv_dotlockfile_setgid=no
417 fi])
418 fi
419 fi
420
421 dnl If mailspool is not world-writable and dotlockfile is not setgid,
422 dnl we need to #define MAILGROUP to 1 and make inc setgid.
423 if test x"$nmh_cv_mailspool_world_writable" = x"no" -a x"$nmh_cv_dotlockfile_setgid" != x"yes" ; then
424 dnl do we really need both of these?
425 AC_DEFINE(MAILGROUP)dnl
426 SETGID_MAIL=1
427 fi
428 AC_SUBST(SETGID_MAIL)dnl
429
430 dnl Use ls to see which group owns the mail spool directory.
431 AC_CACHE_CHECK(what group owns the mail spool, nmh_cv_ls_mail_grp,
432 [nmh_cv_ls_mail_grp=`$lspath -dL $nmh_cv_ls_grpopt $mailspool|$AWK '{print $4}'`
433 ])
434 MAIL_SPOOL_GRP=$nmh_cv_ls_mail_grp
435 AC_SUBST(MAIL_SPOOL_GRP)dnl
436
437 dnl ------------------
438 dnl CHECK HEADER FILES
439 dnl ------------------
440 AC_HEADER_DIRENT
441 AC_HEADER_STDC
442 AC_HEADER_TIME
443 AC_HEADER_SYS_WAIT
444 AC_HEADER_STAT
445 AC_CHECK_HEADERS(string.h memory.h stdlib.h unistd.h errno.h fcntl.h \
446 limits.h crypt.h termcap.h termio.h termios.h locale.h \
447 langinfo.h netdb.h sys/param.h sys/time.h sys/utsname.h \
448 arpa/inet.h arpa/ftp.h)
449
450
451 AC_CACHE_CHECK(POSIX termios, nmh_cv_sys_posix_termios,
452 [AC_TRY_LINK([#include <sys/types.h>
453 #include <unistd.h>
454 #include <termios.h>],
455 [/* SunOS 4.0.3 has termios.h but not the library calls. */
456 tcgetattr(0, 0);],
457 nmh_cv_sys_posix_termios=yes, nmh_cv_sys_posix_termios=no)])
458
459 if test $nmh_cv_sys_posix_termios = yes; then
460 AC_CACHE_CHECK(TIOCGWINSZ in termios.h,
461 nmh_cv_header_termios_h_tiocgwinsz,
462 [AC_TRY_LINK([#include <sys/types.h>
463 #include <termios.h>],
464 [int x = TIOCGWINSZ;],
465 nmh_cv_header_termios_h_tiocgwinsz=yes,
466 nmh_cv_header_termios_h_tiocgwinsz=no)])
467 else
468 nmh_cv_header_termios_h_tiocgwinsz=no
469 fi
470
471 if test $nmh_cv_header_termios_h_tiocgwinsz = no; then
472 AC_CACHE_CHECK(TIOCGWINSZ in sys/ioctl.h,
473 nmh_cv_header_sys_ioctl_h_tiocgwinsz,
474 [AC_TRY_LINK([#include <sys/types.h>
475 #include <sys/ioctl.h>],
476 [int x = TIOCGWINSZ;],
477 nmh_cv_header_sys_ioctl_h_tiocgwinsz=yes,
478 nmh_cv_header_sys_ioctl_h_tiocgwinsz=no)])
479 if test $nmh_cv_header_sys_ioctl_h_tiocgwinsz = yes; then
480 AC_DEFINE(GWINSZ_IN_SYS_IOCTL)dnl
481 fi
482 fi
483
484 dnl
485 dnl Checks for _IO_write_ptr. A Linuxism used by nmh on linux. We
486 dnl really use a whole set of them, but this check should be
487 dnl sufficient.
488 dnl
489 AC_CHECK_HEADER(libio.h, [
490 AC_EGREP_HEADER(_IO_write_ptr, libio.h, [
491 AC_DEFINE(LINUX_STDIO) ]) ])
492
493 AC_CHECK_HEADER([sys/ptem.h], AC_DEFINE(WINSIZE_IN_PTEM))
494
495 dnl ---------------
496 dnl CHECK FUNCTIONS
497 dnl ---------------
498 AC_FUNC_VFORK
499 AC_CHECK_LIB(mkstemp,mkstemp)
500 AC_CHECK_FUNCS(waitpid wait3 sigaction sigprocmask sigblock sigsetmask \
501 sighold sigrelse writev lstat uname tzset killpg mkstemp \
502 sethostent getutent nl_langinfo)
503
504 dnl solaris screws this up
505 AC_CHECK_FUNC(gethostbyname, [AC_DEFINE(HAVE_GETHOSTBYNAME)],
506 AC_CHECK_LIB(nsl, gethostbyname, [AC_DEFINE(HAVE_GETHOSTBYNAME)] ) )
507
508 dnl sigsetjmp may be a macro
509 AC_MSG_CHECKING(for sigsetjmp)
510 AC_TRY_LINK([#include <setjmp.h>], [sigsetjmp((void *)0, 0);],
511 [AC_DEFINE(HAVE_SIGSETJMP) AC_MSG_RESULT(yes)], AC_MSG_RESULT(no))
512
513 AC_REPLACE_FUNCS(snprintf strerror strdup)
514
515 dnl Look for the initgroups() declaration. On AIX 4.[13], Solaris 4.1.3, and
516 dnl ULTRIX 4.2A the function is defined in libc but there's no declaration in
517 dnl any system header.
518 dnl
519 dnl On Solaris 2.[456], the declaration is in <grp.h>. On HP-UX 9-11 and
520 dnl (reportedly) FreeBSD 3.[23], it's in <unistd.h>. Any other locations we
521 dnl need to check?
522 AC_EGREP_HEADER(initgroups, grp.h, AC_DEFINE(INITGROUPS_HEADER, <grp.h>),
523 AC_EGREP_HEADER(initgroups, unistd.h,
524 AC_DEFINE(INITGROUPS_HEADER, <unistd.h>)))
525
526 dnl On AIX 4.1, snprintf() is defined in libc.a but there's no prototype in
527 dnl <stdio.h> or elsewhere. Apparently it's not officially supported (though it
528 dnl seems to work perfectly and IBM apparently uses it in internal code).
529 dnl Anyhow, if we omit our own snprintf() and vsnprintf() prototypes when we
530 dnl HAVE_SNPRINTF, we get a billion warnings at compile time. Use the C
531 dnl preprocessor to preprocess stdio.h and make sure that there's actually a
532 dnl prototype.
533 AC_EGREP_HEADER(snprintf, stdio.h, AC_DEFINE(HAVE_SNPRINTF_PROTOTYPE))
534
535 dnl -------------------
536 dnl CHECK FOR LIBRARIES
537 dnl -------------------
538 dnl Check location of modf
539 AC_CHECK_FUNC(modf, , AC_CHECK_LIB(m, modf))
540
541 dnl Checks for network libraries (nsl, socket)
542 AC_CHECK_NETLIBS
543
544 termcap_curses_order="termcap curses ncurses"
545 for lib in $termcap_curses_order; do
546 AC_CHECK_LIB(${lib}, tgetent, [TERMLIB="-l$lib"; break])
547 done
548 AC_SUBST(TERMLIB)dnl
549
550 dnl --------------
551 dnl CHECK FOR NDBM
552 dnl --------------
553 dnl Checks for ndbm
554 AC_CHECK_FUNC(dbm_open, ,
555 AC_CHECK_LIB(ndbm, dbm_open, ,
556 AC_CHECK_LIB(dbm, dbm_open, ,
557 AC_CHECK_LIB(db1, dbm_open, ,
558 AC_CHECK_LIB(gdbm, dbm_open, ,
559 AC_CHECK_LIB(db, __db_ndbm_open))))))
560
561 dnl ----------------
562 dnl CHECK FOR NDBM.H
563 dnl ----------------
564
565 AC_CHECK_HEADERS(db1/ndbm.h gdbm/ndbm.h db.h, break, )
566
567 dnl ----------------
568 dnl CHECK FOR HESIOD
569 dnl ----------------
570 if test x"$with_hesiod" != x -a x"$with_hesiod" != x"no"; then
571 if test x"$with_hesiod" != x"yes"; then
572 HESIOD_INCLUDES="-I$with_hesiod/include"
573 HESIOD_LIBS="-L$with_hesiod/lib"
574 fi
575 AC_CHECK_FUNC(res_send,
576 [AC_CHECK_LIB(hesiod, hes_resolve,
577 [HESIOD_LIBS="$HESIOD_LIBS -lhesiod"],
578 [AC_MSG_ERROR(Hesiod library not found)],
579 $HESIOD_LIBS)],
580 [AC_CHECK_LIB(hesiod, hes_resolve,
581 [HESIOD_LIBS="$HESIOD_LIBS -lhesiod -lresolv"],
582 [AC_MSG_ERROR(Hesiod library not found)],
583 $HESIOD_LIBS -lresolv)])
584
585 fi
586 AC_SUBST(HESIOD_INCLUDES)dnl
587 AC_SUBST(HESIOD_LIBS)dnl
588
589 dnl ----------------------------------
590 dnl CHECK FOR KRB4 (Kerberos4 support)
591 dnl ----------------------------------
592 if test x"$with_krb4" != x -a x"$with_krb4" != x"no"; then
593 if test x"$with_krb4" != x"yes"; then
594 KRB4_INCLUDES="-I$with_krb4/include"
595 if test -d "$with_krb4/include/kerberosIV"; then
596 KRB4_INCLUDES="$KRB4_INCLUDES -I$with_krb4/include/kerberosIV"
597 fi
598 KRB4_LIBS="-L$with_krb4/lib"
599 elif test -d /usr/include/kerberosIV; then
600 KRB4_INCLUDES="-I/usr/include/kerberosIV"
601 fi
602 dnl First, check if we have -lk5crypto, since that means we have a recent krb5
603
604 AC_CHECK_LIB(k5crypto, krb5_encrypt,
605 [AC_CHECK_LIB(krb4, krb_rd_req,
606 [KRB4_LIBS="$KRB4_LIBS -lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"],
607 [AC_MSG_ERROR(Kerberos 4 compatibility libraries not found)],
608 $KRB4_LIBS -ldes425 -lkrb5 -lk5crypto -lcom_err)],
609
610 [AC_CHECK_LIB(krb4, krb_rd_req,
611 [KRB4_LIBS="$KRB4_LIBS -lkrb4 -ldes425 -lkrb5 -lcrypto -lcom_err"],
612 [AC_CHECK_LIB(krb, krb_rd_req,
613 [KRB4_LIBS="$KRB4_LIBS -lkrb -ldes"],
614 [AC_MSG_ERROR(Kerberos 4 libraries not found)],
615 $KRB4_LIBS -ldes)],
616 $KRB4_LIBS -ldes425 -lkrb5 -lcrypto -lcom_err)],
617 $KRB4_LIBS)
618
619 fi
620 AC_SUBST(KRB4_INCLUDES)dnl
621 AC_SUBST(KRB4_LIBS)dnl
622
623 dnl --------------------
624 dnl CHECK FOR CYRUS SASL
625 dnl --------------------
626 if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != x"no"; then
627 if test x"$with_cyrus_sasl" != x"yes"; then
628 SASL_INCLUDES="-I$with_cyrus_sasl/include"
629 SASL_LIBS="-L$with_cyrus_sasl/lib"
630
631 dnl Do OS-specific hardcoding of SASL shared library path into executables,
632 dnl so user isn't forced to set environment variables like Solaris'
633 dnl LD_LIBRARY_PATH.
634 case "$target_os" in
635 solaris*)
636 SASL_LIBS="$SASL_LIBS -R$with_cyrus_sasl/lib"
637 ;;
638 esac
639 fi
640 save_LDFLAGS="$LDFLAGS"
641 LDFLAGS="$LDFLAGS $SASL_LIBS"
642 AC_CHECK_LIB(sasl2, sasl_client_new,
643 [SASL_LIBS="$SASL_LIBS -lsasl2"],
644 [AC_MSG_ERROR(Cyrus SASL library not found)])
645 LDFLAGS="$save_LDFLAGS"
646 fi
647 AC_SUBST(SASL_INCLUDES)dnl
648 AC_SUBST(SASL_LIBS)dnl
649
650 dnl ---------------------
651 dnl CHECK TERMCAP LIBRARY
652 dnl ---------------------
653
654 dnl Add the termcap library, so that the following configure
655 dnl tests will find it when it tries to link test programs.
656 nmh_save_LIBS="$LIBS"
657 LIBS="$TERMLIB $LIBS"
658
659 dnl Checks for external variable ospeed in the termcap library.
660 AC_CACHE_CHECK(if an include file defines ospeed,
661 nmh_cv_decl_ospeed_include_defines,
662 [AC_TRY_LINK(
663 [#include <sys/types.h>
664 #if HAVE_TERMIOS_H
665 #include <termios.h>
666 #endif
667 #if HAVE_TERMCAP_H
668 #include <termcap.h>
669 #endif], [ospeed = 0;],
670 nmh_cv_decl_ospeed_include_defines=yes,
671 nmh_cv_decl_ospeed_include_defines=no)])
672
673 if test $nmh_cv_decl_ospeed_include_defines = no; then
674 AC_CACHE_CHECK(if you must define ospeed,
675 nmh_cv_decl_ospeed_must_define,
676 [AC_TRY_LINK( ,[extern short ospeed; ospeed = 0;],
677 nmh_cv_decl_ospeed_must_define=yes,
678 nmh_cv_decl_ospeed_must_define=no)])
679 fi
680
681 if test $nmh_cv_decl_ospeed_include_defines = yes; then
682 AC_DEFINE(HAVE_OSPEED)dnl
683 elif test $nmh_cv_decl_ospeed_must_define = yes; then
684 AC_DEFINE(HAVE_OSPEED)
685 AC_DEFINE(MUST_DEFINE_OSPEED)
686 fi
687
688 dnl dnl Checks if tgetent accepts NULL and will
689 dnl dnl allocate its own termcap buffer.
690 dnl AC_CACHE_CHECK(if tgetent accepts NULL,
691 dnl nmh_cv_func_tgetent_accepts_null,
692 dnl [AC_TRY_RUN([main(){int i = tgetent((char*)0,"vt100");exit(!i || i == -1);}],
693 dnl nmh_cv_func_tgetent_accepts_null=yes,
694 dnl nmh_cv_func_tgetent_accepts_null=no,
695 dnl nmh_cv_func_tgetent_accepts_null=no)])
696 dnl if test $nmh_cv_func_tgetent_accepts_null = yes; then
697 dnl AC_DEFINE(TGETENT_ACCEPTS_NULL)
698 dnl fi
699
700 dnl Now put the libraries back to what it was before we
701 dnl starting checking the termcap library.
702 LIBS="$nmh_save_LIBS"
703
704 dnl --------------
705 dnl CHECK TYPEDEFS
706 dnl --------------
707 AC_TYPE_SIGNAL
708 AC_TYPE_PID_T
709 AC_TYPE_OFF_T
710 AC_TYPE_UID_T
711 AC_TYPE_MODE_T
712 AC_TYPE_SIZE_T
713
714 dnl Check for sigset_t. Currently I'm looking in
715 dnl <sys/types.h> and <signal.h>. Others might need
716 dnl to be added.
717 AC_CACHE_CHECK(for sigset_t, nmh_cv_type_sigset_t,
718 [AC_TRY_COMPILE(
719 [#include <sys/types.h>
720 #include <signal.h>], [sigset_t tempsigset;],
721 nmh_cv_type_sigset_t=yes, nmh_cv_type_sigset_t=no)])
722 if test $nmh_cv_type_sigset_t = no; then
723 AC_DEFINE(sigset_t, unsigned int)
724 fi
725
726 dnl ----------------
727 dnl CHECK STRUCTURES
728 dnl ----------------
729 AC_STRUCT_ST_BLKSIZE
730
731 AC_CACHE_CHECK(for tm_gmtoff in struct tm, nmh_cv_struct_tm_gmtoff,
732 [AC_TRY_COMPILE(
733 [#ifdef TIME_WITH_SYS_TIME
734 # include <sys/time.h>
735 # include <time.h>
736 #else
737 # ifdef TM_IN_SYS_TIME
738 # include <sys/time.h>
739 # else
740 # include <time.h>
741 # endif
742 #endif],
743 [struct tm temptm; temptm.tm_gmtoff = 0;],
744 nmh_cv_struct_tm_gmtoff=yes, nmh_cv_struct_tm_gmtoff=no)])
745 if test $nmh_cv_struct_tm_gmtoff = yes; then
746 AC_DEFINE(HAVE_TM_GMTOFF)
747 fi
748
749 dnl -------------
750 dnl CHECK SIGNALS
751 dnl -------------
752 dnl What style of signal do you have (POSIX, BSD, or SYSV)?
753 AC_MSG_CHECKING(what style of signals to use)
754 if test $ac_cv_func_sigaction = yes -a $ac_cv_func_sigprocmask = yes; then
755 signals_style=POSIX_SIGNALS
756 AC_DEFINE(POSIX_SIGNALS)
757 AC_DEFINE(RELIABLE_SIGNALS)
758 elif test $ac_cv_func_sigblock = yes -a $ac_cv_func_sigsetmask = yes; then
759 signals_style=BSD_SIGNALS
760 AC_DEFINE(BSD_SIGNALS)
761 AC_DEFINE(RELIABLE_SIGNALS)
762 elif test $ac_cv_func_sighold = yes -a $ac_cv_func_sigrelse = yes; then
763 signals_style=SYSV_SIGNALS
764 AC_DEFINE(SYSV_SIGNALS)
765 else
766 signals_style=NO_SIGNAL_BLOCKING
767 AC_DEFINE(NO_SIGNAL_BLOCKING)
768 fi
769
770 AC_MSG_RESULT($signals_style)
771
772 dnl Where is <signal.h> located? Needed as input for signames.awk
773 AC_CACHE_CHECK(where signal.h is located, nmh_cv_path_signal_h,
774 [for SIGNAL_H in /usr/include/bsd/sys/signal.h dnl Next
775 /usr/include/asm/signal.h dnl Linux 1.3.0 and above
776 /usr/include/asm/signum.h dnl some versions of Linux/Alpha
777 /usr/include/linux/signal.h dnl Linux up to 1.2.11
778 /usr/include/sys/signal.h dnl Almost everybody else
779 /dev/null; dnl Just in case we fall through
780 do
781 test -f $SIGNAL_H && \
782 grep '#[ ]*define[ ][ ]*SIG[0-9A-Z]*[ ]*[0-9][0-9]*' $SIGNAL_H > /dev/null && \
783 break
784 done
785 nmh_cv_path_signal_h=$SIGNAL_H
786 ])
787 SIGNAL_H=$nmh_cv_path_signal_h
788 AC_SUBST(SIGNAL_H)dnl
789
790 dnl ----------------
791 dnl OS SPECIFIC DEFINES
792 dnl ----------------
793 case "$target_os" in
794
795 solaris2*)
796 AC_DEFINE(SYS5)
797 AC_DEFINE(SVR4)
798 ;;
799 irix*)
800 AC_DEFINE(SYS5)
801 AC_DEFINE(SVR4)
802 ;;
803 osf*)
804 AC_DEFINE(SYS5)
805 AC_DEFINE(SVR4)
806 ;;
807 aix*)
808 AC_DEFINE(SYS5)
809 AC_DEFINE(SVR4)
810 ;;
811 sunos4*)
812 AC_DEFINE(BSD42)
813 ;;
814 freebsd*)
815 AC_DEFINE(BSD42)
816 AC_DEFINE(BSD44)
817 ;;
818 netbsd*)
819 AC_DEFINE(BSD42)
820 AC_DEFINE(BSD44)
821 ;;
822 openbsd*)
823 AC_DEFINE(BSD42)
824 AC_DEFINE(BSD44)
825 ;;
826 bsd/os*)
827 AC_DEFINE(BSD42)
828 AC_DEFINE(BSD44)
829 ;;
830 sco5*)
831 AC_DEFINE(SYS5)
832 AC_DEFINE(SCO_5_STDIO)
833 ;;
834 esac
835
836
837 dnl ----------------
838 dnl OUTPUT MAKEFILES
839 dnl ----------------
840 AC_OUTPUT(Makefile config/Makefile h/Makefile sbr/Makefile uip/Makefile \
841 mts/Makefile mts/smtp/Makefile \
842 etc/Makefile docs/Makefile man/Makefile, \
843 [test -z "$CONFIG_HEADERS" || echo > stamp-h])
844
845 dnl Umm, what's the point of these assignments?? -- <dan-nmh@dilvish.speed.net>
846 eval "nmhbin=${bindir}"; eval "nmhbin2=${nmhbin}"
847 eval "nmhsysconf=${sysconfdir}"; eval "nmhsysconf2=${nmhsysconf}"
848 eval "nmhlib=${libdir}"; eval "nmhlib2=${nmhlib}"
849 eval "nmhman=${mandir}"
850
851 pop_kinds=no
852 if test x"$enable_pop" = x"yes"; then
853 pop_kinds="yes ("
854
855 if test x"$enable_apop" = x"yes"; then
856 pop_kinds="${pop_kinds}APOP "
857 fi
858
859 if test x"$with_krb4" != x -a x"$with_krb4" != x"no"; then
860 pop_kinds="${pop_kinds}KPOP "
861 fi
862
863 pop_kinds="${pop_kinds}POP3)"
864 fi
865
866 echo "
867 nmh configuration
868 -----------------
869 nmh version : ${VERSION}
870 target os : ${target}
871 compiler : ${CC}
872 compiler flags : ${CFLAGS}
873 linker flags : ${LDFLAGS}
874 source code location : ${srcdir}
875 binary install path : ${nmhbin2}
876 libary install path : ${nmhlib2}
877 config files install path : ${nmhsysconf2}
878 man page install path : ${nmhman}
879 backup prefix : ${backup_prefix}
880 transport system : ${MTS}
881 file locking type : ${LOCKTYPE}
882 default smtp servers : ${smtpservers}
883 default editor : ${editorpath}
884 default pager : ${pagerpath}
885 email address masquerading : ${masquerade}
886 pop is enabled : ${pop_kinds}
887 SASL support : ${sasl_support}"
888 echo ""