mk-conf.sh: check for va_copy(3); diversify v?nprintf(3) tests
[s-mailx.git] / mk-conf.sh
blobc94b2c0dff401c8ac71321f46ed8d52efc13f72a
1 #!/bin/sh -
2 #@ Please see `INSTALL' and `make.rc' instead.
4 LC_ALL=C
5 export LC_ALL
7 option_reset() {
8 WANT_ICONV=0
9 WANT_SOCKETS=0
10 WANT_SSL=0 WANT_ALL_SSL_ALGORITHMS=0
11 WANT_SMTP=0 WANT_POP3=0
12 WANT_GSSAPI=0 WANT_NETRC=0 WANT_AGENT=0
13 #WANT_MD5=0
14 WANT_IDNA=0
15 WANT_IMAP_SEARCH=0
16 WANT_REGEX=0
17 WANT_READLINE=0 WANT_MLE=0
18 WANT_HISTORY=0 WANT_KEY_BINDINGS=0
19 WANT_TERMCAP=0 WANT_TERMCAP_PREFER_TERMINFO=0
20 WANT_ERRORS=0
21 WANT_SPAM_SPAMC=0 WANT_SPAM_SPAMD=0 WANT_SPAM_FILTER=0
22 WANT_DOCSTRINGS=0
23 WANT_QUOTE_FOLD=0
24 WANT_FILTER_HTML_TAGSOUP=0
25 WANT_COLOUR=0
26 WANT_DOTLOCK=0
29 option_maximal() {
30 WANT_ICONV=require
31 WANT_SOCKETS=1
32 WANT_SSL=1 WANT_ALL_SSL_ALGORITHMS=1
33 WANT_SMTP=1 WANT_POP3=1
34 WANT_GSSAPI=1 WANT_NETRC=1 WANT_AGENT=1
35 #WANT_MD5=1
36 WANT_IDNA=1
37 WANT_IMAP_SEARCH=1
38 WANT_REGEX=require
39 WANT_MLE=1
40 WANT_HISTORY=1 WANT_KEY_BINDINGS=1
41 WANT_TERMCAP=1 WANT_TERMCAP_PREFER_TERMINFO=1
42 WANT_ERRORS=1
43 WANT_SPAM_SPAMC=1 WANT_SPAM_SPAMD=1 WANT_SPAM_FILTER=1
44 WANT_DOCSTRINGS=1
45 WANT_QUOTE_FOLD=1
46 WANT_FILTER_HTML_TAGSOUP=1
47 WANT_COLOUR=1
48 WANT_DOTLOCK=require
51 # Predefined CONFIG= urations take precedence over anything else
52 if [ -n "${CONFIG}" ]; then
53 case "${CONFIG}" in
54 [nN][uU][lL][lL])
55 option_reset
57 [nN][uU][lL][lL][iI])
58 option_reset
59 WANT_ICONV=require
61 [mM][iI][nN][iI][mM][aA][lL])
62 option_reset
63 WANT_ICONV=1
64 WANT_REGEX=1
65 WANT_DOTLOCK=require
67 [mM][eE][dD][iI][uU][mM])
68 option_reset
69 WANT_ICONV=require
70 WANT_IDNA=1
71 WANT_REGEX=1
72 WANT_MLE=1
73 WANT_HISTORY=1 WANT_KEY_BINDINGS=1
74 WANT_ERRORS=1
75 WANT_SPAM_FILTER=1
76 WANT_DOCSTRINGS=1
77 WANT_COLOUR=1
78 WANT_DOTLOCK=require
80 [nN][eE][tT][sS][eE][nN][dD])
81 option_reset
82 WANT_ICONV=require
83 WANT_SOCKETS=1
84 WANT_SSL=require
85 WANT_SMTP=require
86 WANT_GSSAPI=1 WANT_NETRC=1 WANT_AGENT=1
87 WANT_IDNA=1
88 WANT_REGEX=1
89 WANT_MLE=1
90 WANT_HISTORY=1 WANT_KEY_BINDINGS=1
91 WANT_DOCSTRINGS=1
92 WANT_COLOUR=1
93 WANT_DOTLOCK=require
95 [mM][aA][xX][iI][mM][aA][lL])
96 option_reset
97 option_maximal
99 [dD][eE][vV][eE][lL])
100 WANT_DEVEL=1 WANT_DEBUG=1 WANT_NYD2=1
101 option_maximal
103 [oO][dD][eE][vV][eE][lL])
104 WANT_DEVEL=1
105 option_maximal
108 echo >&2 "Unknown CONFIG= setting: ${CONFIG}"
109 echo >&2 'Possible values: NULL, NULLI, MINIMAL, MEDIUM, NETSEND, MAXIMAL'
110 exit 1
112 esac
115 # Inter-relationships
116 option_update() {
117 if feat_no SMTP && feat_no POP3; then
118 WANT_SOCKETS=0
120 if feat_no SOCKETS; then
121 if feat_require SMTP; then
122 msg 'ERROR: need SOCKETS for required feature SMTP'
123 config_exit 13
125 if feat_require POP3; then
126 msg 'ERROR: need SOCKETS for required feature POP3'
127 config_exit 13
129 WANT_SSL=0 WANT_ALL_SSL_ALGORITHMS=0
130 WANT_SMTP=0 WANT_POP3=0
131 WANT_GSSAPI=0 WANT_NETRC=0 WANT_AGENT=0
133 if feat_no SMTP; then
134 WANT_GSSAPI=0
137 if feat_no READLINE && feat_no MLE; then
138 WANT_HISTORY=0 WANT_KEY_BINDINGS=0
141 # If we don't need MD5 leave it alone
142 if feat_no SOCKETS; then
143 WANT_MD5=0
146 if feat_yes DEVEL; then
147 WANT_DEBUG=1
149 if feat_yes DEBUG; then
150 WANT_NOALLOCA=1 WANT_DEVEL=1
154 # Note that potential duplicates in PATH, C_INCLUDE_PATH etc. will be cleaned
155 # via path_check() later on once possible
157 # TODO cc_maxopt is brute simple, we should compile test program and dig real
158 # compiler versions for known compilers, then be more specific
159 cc_maxopt=100
160 _CFLAGS= _LDFLAGS=
162 os_early_setup() {
163 i="${OS:-`uname -s`}"
165 if [ ${i} = SunOS ]; then
166 msg 'SunOS / Solaris? Applying some "early setup" rules ...'
167 _os_early_setup_sunos
171 os_setup() {
172 # OSFULLSPEC is used to recognize changes (i.e., machine type, updates etc.)
173 OSFULLSPEC="${OS:-`uname -a | ${tr} '[A-Z]' '[a-z]'`}"
174 OS="${OS:-`uname -s | ${tr} '[A-Z]' '[a-z]'`}"
175 msg 'Operating system is "%s"' ${OS}
177 if [ ${OS} = sunos ]; then
178 msg ' . have special SunOS / Solaris "setup" rules ...'
179 _os_setup_sunos
180 elif [ ${OS} = unixware ]; then
181 msg ' . have special UnixWare environmental rules ...'
182 if feat_yes AUTOCC && command -v cc >/dev/null 2>&1; then
183 CC=cc
184 feat_yes DEBUG && _CFLAGS='-v -Xa -g' || _CFLAGS='-Xa -O'
186 CFLAGS="${_CFLAGS} ${EXTRA_CFLAGS}"
187 LDFLAGS="${_LDFLAGS} ${EXTRA_LDFLAGS}"
188 export CC CFLAGS LDFLAGS
189 WANT_AUTOCC=0 had_want_autocc=1 need_R_ldflags=-R
191 elif [ -n "${VERBOSE}" ]; then
192 msg ' . no special treatment for this system necessary or known'
195 # Sledgehammer: better set _GNU_SOURCE
196 # And in general: oh, boy!
197 OS_DEFINES="${OS_DEFINES}#define _GNU_SOURCE\n"
198 #OS_DEFINES="${OS_DEFINES}#define _POSIX_C_SOURCE 200809L\n"
199 #OS_DEFINES="${OS_DEFINES}#define _XOPEN_SOURCE 700\n"
200 #[ ${OS} = darwin ] && OS_DEFINES="${OS_DEFINES}#define _DARWIN_C_SOURCE\n"
202 # On pkgsrc(7) systems automatically add /usr/pkg/*
203 if [ -d /usr/pkg ]; then
204 C_INCLUDE_PATH="${C_INCLUDE_PATH}:/usr/pkg/include"
205 LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:/usr/pkg/lib"
209 _os_early_setup_sunos() {
210 # According to standards(5), this is what we need to do
211 if [ -d /usr/xpg4 ]; then :; else
212 msg 'ERROR: On SunOS / Solaris we need /usr/xpg4 environment! Sorry.'
213 config_exit 1
215 PATH="/usr/xpg4/bin:/usr/ccs/bin:/usr/bin:${PATH}"
216 [ -d /usr/xpg6 ] && PATH="/usr/xpg6/bin:${PATH}"
217 export PATH
220 _os_setup_sunos() {
221 C_INCLUDE_PATH="/usr/xpg4/include:${C_INCLUDE_PATH}"
222 LD_LIBRARY_PATH="/usr/xpg4/lib:${LD_LIBRARY_PATH}"
224 # Include packages
225 if [ -d /opt/csw ]; then
226 C_INCLUDE_PATH="${C_INCLUDE_PATH}:/opt/csw/include"
227 LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:/opt/csw/lib"
230 OS_DEFINES="${OS_DEFINES}#define __EXTENSIONS__\n"
231 #OS_DEFINES="${OS_DEFINES}#define _POSIX_C_SOURCE 200112L\n"
233 [ -n "${cksum}" ] || cksum=/opt/csw/gnu/cksum
234 if [ -x "${cksum}" ]; then :; else
235 msg 'ERROR: Not an executable program: "%s"' "${cksum}"
236 msg 'ERROR: We need a CRC-32 cksum(1), as specified in POSIX.'
237 msg 'ERROR: However, we do so only for tests.'
238 msg 'ERROR: If that is ok, set "cksum=/usr/bin/true", then rerun'
239 config_exit 1
242 if feat_yes AUTOCC; then
243 if command -v cc >/dev/null 2>&1; then
244 CC=cc
245 feat_yes DEBUG && _CFLAGS="-v -Xa -g" || _CFLAGS="-Xa -O"
247 CFLAGS="${_CFLAGS} ${EXTRA_CFLAGS}"
248 LDFLAGS="${_LDFLAGS} ${EXTRA_LDFLAGS}"
249 export CC CFLAGS LDFLAGS
250 WANT_AUTOCC=0 had_want_autocc=1 need_R_ldflags=-R
251 else
252 # Assume gcc(1), which supports -R for compat
253 cc_maxopt=2 force_no_stackprot=1 need_R_ldflags=-Wl,-R
258 # Check out compiler ($CC) and -flags ($CFLAGS)
259 cc_setup() {
260 # Even though it belongs into cc_flags we will try to compile and link
261 # something, so ensure we have a clean state regarding CFLAGS/LDFLAGS or
262 # EXTRA_CFLAGS/EXTRA_LDFLAGS
263 if feat_no AUTOCC; then
264 _cc_default
265 # Ensure those don't do any harm
266 EXTRA_CFLAGS= EXTRA_LDFLAGS=
267 export EXTRA_CFLAGS EXTRA_LDFLAGS
268 return
269 else
270 CFLAGS= LDFLAGS=
271 export CFLAGS LDFLAGS
274 [ -n "${CC}" ] && [ "${CC}" != cc ] && { _cc_default; return; }
276 printf >&2 'Searching for a usable C compiler .. $CC='
277 if { i="`command -v clang`"; }; then
278 CC=${i}
279 elif { i="`command -v gcc`"; }; then
280 CC=${i}
281 elif { i="`command -v c99`"; }; then
282 CC=${i}
283 elif { i="`command -v tcc`"; }; then
284 CC=${i}
285 elif { i="`command -v pcc`"; }; then
286 CC=${i}
287 else
288 if [ "${CC}" = cc ]; then
290 elif { i="`command -v c89`"; }; then
291 CC=${i}
292 else
293 printf >&2 'boing booom tschak\n'
294 msg 'ERROR: I cannot find a compiler!'
295 msg ' Neither of clang(1), gcc(1), tcc(1), pcc(1), c89(1) and c99(1).'
296 msg ' Please set ${CC} environment variable, maybe ${CFLAGS}, rerun.'
297 config_exit 1
300 printf >&2 -- '"%s"\n' "${CC}"
301 export CC
304 _cc_default() {
305 if [ -z "${CC}" ]; then
306 printf >&2 'To go on like you have chosen, please set $CC, rerun.'
307 config_exit 1
310 if [ -z "${VERBOSE}" ] && [ -f ${lst} ] && feat_no DEBUG; then
312 else
313 msg 'Using C compiler ${CC}=%s' "${CC}"
317 cc_flags() {
318 if feat_yes AUTOCC; then
319 if [ -f ${lst} ] && feat_no DEBUG && [ -z "${VERBOSE}" ]; then
320 cc_check_silent=1
321 msg 'Detecting ${CFLAGS}/${LDFLAGS} for ${CC}="%s", just a second..' \
322 "${CC}"
323 else
324 cc_check_silent=
325 msg 'Testing usable ${CFLAGS}/${LDFLAGS} for ${CC}=%s' "${CC}"
328 i=`echo "${CC}" | ${awk} 'BEGIN{FS="/"}{print $NF}'`
329 if { echo "${i}" | ${grep} tcc; } >/dev/null 2>&1; then
330 msg ' . have special tcc(1) environmental rules ...'
331 _cc_flags_tcc
332 else
333 # As of pcc CVS 2016-04-02, stack protection support is announced but
334 # will break if used on Linux
335 if { echo "${i}" | ${grep} pcc; } >/dev/null 2>&1; then
336 force_no_stackprot=1
338 _cc_flags_generic
341 feat_no DEBUG && _CFLAGS="-DNDEBUG ${_CFLAGS}"
342 CFLAGS="${_CFLAGS} ${EXTRA_CFLAGS}"
343 LDFLAGS="${_LDFLAGS} ${EXTRA_LDFLAGS}"
344 else
345 if feat_no DEBUG; then
346 CFLAGS="-DNDEBUG ${CFLAGS}"
349 msg ''
350 export CFLAGS LDFLAGS
353 _cc_flags_tcc() {
354 __cflags=${_CFLAGS} __ldflags=${_LDFLAGS}
355 _CFLAGS= _LDFLAGS=
357 cc_check -Wall
358 cc_check -Wextra
359 cc_check -pedantic
361 if feat_yes DEBUG; then
362 # May have problems to find libtcc cc_check -b
363 cc_check -g
366 if ld_check -Wl,-rpath =./ no; then
367 need_R_ldflags=-Wl,-rpath=
368 ld_runtime_flags # update!
371 _CFLAGS="${_CFLAGS} ${__cflags}" _LDFLAGS="${_LDFLAGS} ${__ldflags}"
372 unset __cflags __ldflags
375 _cc_flags_generic() {
376 __cflags=${_CFLAGS} __ldflags=${_LDFLAGS}
377 _CFLAGS= _LDFLAGS=
378 feat_yes DEVEL && cc_check -std=c89 || cc_check -std=c99
380 # Check -g first since some others may rely upon -g / optim. level
381 if feat_yes DEBUG; then
382 cc_check -O
383 cc_check -g
384 elif [ ${cc_maxopt} -gt 2 ] && cc_check -O3; then
386 elif [ ${cc_maxopt} -gt 1 ] && cc_check -O2; then
388 elif [ ${cc_maxopt} -gt 0 ] && cc_check -O1; then
390 else
391 cc_check -O
394 if feat_yes DEVEL && cc_check -Weverything; then
396 else
397 cc_check -Wall
398 cc_check -Wextra
399 cc_check -Wbad-function-cast
400 cc_check -Wcast-align
401 cc_check -Wcast-qual
402 cc_check -Winit-self
403 cc_check -Wmissing-prototypes
404 cc_check -Wshadow
405 cc_check -Wunused
406 cc_check -Wwrite-strings
407 cc_check -Wno-long-long
409 cc_check -pedantic
411 if feat_yes AMALGAMATION && feat_no DEVEL; then
412 cc_check -Wno-unused-function
414 feat_no DEVEL && cc_check -Wno-unused-result # XXX do right way (pragma too)
416 cc_check -fno-unwind-tables
417 cc_check -fno-asynchronous-unwind-tables
418 cc_check -fstrict-aliasing
419 if cc_check -fstrict-overflow && feat_yes DEVEL; then
420 cc_check -Wstrict-overflow=5
423 if feat_yes DEBUG || feat_yes FORCED_STACKPROT; then
424 if [ -z "${force_no_stackprot}" ]; then
425 if cc_check -fstack-protector-strong ||
426 cc_check -fstack-protector-all; then
427 cc_check -D_FORTIFY_SOURCE=2
429 else
430 msg 'Not checking for -fstack-protector compiler option,'
431 msg 'since that caused errors in a "similar" configuration.'
432 msg 'You may turn off WANT_AUTOCC and use your own settings, rerun'
436 if feat_yes AMALGAMATION; then
437 cc_check -pipe
440 # LD (+ dependend CC)
442 if feat_yes DEVEL; then
443 _ccfg=${_CFLAGS}
444 # -fsanitize=address
445 #if cc_check -fsanitize=memory &&
446 # ld_check -fsanitize=memory &&
447 # cc_check -fsanitize-memory-track-origins=2 &&
448 # ld_check -fsanitize-memory-track-origins=2; then
450 #else
451 # _CFLAGS=${_ccfg}
455 ld_check -Wl,-z,relro
456 ld_check -Wl,-z,now
457 ld_check -Wl,-z,noexecstack
458 if ld_check -Wl,-rpath =./ no; then
459 need_R_ldflags=-Wl,-rpath=
460 ld_runtime_flags # update!
461 elif ld_check -Wl,-R ./ no; then
462 need_R_ldflags=-Wl,-R
463 ld_runtime_flags # update!
466 # Address randomization
467 _ccfg=${_CFLAGS}
468 if cc_check -fPIE || cc_check -fpie; then
469 ld_check -pie || _CFLAGS=${_ccfg}
471 unset _ccfg
473 _CFLAGS="${_CFLAGS} ${__cflags}" _LDFLAGS="${_LDFLAGS} ${__ldflags}"
474 unset __cflags __ldflags
477 ## -- >8 -- 8< -- ##
479 ## Notes:
480 ## - Heirloom sh(1) (and same origin) have _sometimes_ problems with ': >'
481 ## redirection, so use "printf '' >" instead
483 ## Very first: we undergo several states regarding I/O redirection etc.,
484 ## but need to deal with option updates from within all. Since all the
485 ## option stuff should be above the scissor line, define utility functions
486 ## and redefine them as necessary.
487 ## And, since we have those functions, simply use them for whatever
489 config_exit() {
490 exit ${1}
493 msg() {
494 fmt=${1}
495 shift
496 printf >&2 -- "${fmt}\\n" "${@}"
499 ## First of all, create new configuration and check wether it changed
501 rc=./make.rc
502 lst=./config.lst
503 ev=./config.ev
504 h=./config.h h_name=config.h
505 mk=./mk.mk
507 newlst=./config.lst-new
508 newmk=./config.mk-new
509 newev=./config.ev-new
510 newh=./config.h-new
511 tmp0=___tmp
512 tmp=./${tmp0}1$$
513 tmp2=./${tmp0}2$$
515 t1=ten10one1ten10one1
516 if ( [ ${t1##*ten10} = one1 ] && [ ${t1#*ten10} = one1ten10one1 ] &&
517 [ ${t1%%one1*} = ten10 ] && [ ${t1%one1*} = ten10one1ten10 ]
518 ) > /dev/null 2>&1; then
519 good_shell=1
520 else
521 unset good_shell
523 unset t1
525 # We need some standard utilities
526 unset -f command
527 check_tool() {
528 n=${1} i=${2} opt=${3:-0}
529 # Evaluate, just in case user comes in with shell snippets (..well..)
530 eval i="${i}"
531 if type "${i}" >/dev/null 2>&1; then # XXX why have i type not command -v?
532 [ -n "${VERBOSE}" ] && msg ' . ${%s} ... %s' "${n}" "${i}"
533 eval ${n}=${i}
534 return 0
536 if [ ${opt} -eq 0 ]; then
537 msg 'ERROR: no trace of utility "%s"' "${n}"
538 config_exit 1
540 return 1
543 # Very easy checks for the operating system in order to be able to adjust paths
544 # or similar very basic things which we need to be able to go at all
545 os_early_setup
547 # Check those tools right now that we need before including $rc
548 msg 'Checking for basic utility set'
549 check_tool awk "${awk:-`command -v awk`}"
550 check_tool rm "${rm:-`command -v rm`}"
551 check_tool tr "${tr:-`command -v tr`}"
553 # Our feature check environment
554 feat_val_no() {
555 [ "x${1}" = x0 ] || [ "x${1}" = xn ] ||
556 [ "x${1}" = xfalse ] || [ "x${1}" = xno ] || [ "x${1}" = xoff ]
559 feat_val_yes() {
560 [ "x${1}" = x1 ] || [ "x${1}" = xy ] ||
561 [ "x${1}" = xtrue ] || [ "x${1}" = xyes ] || [ "x${1}" = xon ] ||
562 [ "x${1}" = xrequire ]
565 feat_val_require() {
566 [ "x${1}" = xrequire ]
569 _feat_check() {
570 eval i=\$WANT_${1}
571 i="`echo ${i} | ${tr} '[A-Z]' '[a-z]'`"
572 if feat_val_no "${i}"; then
573 return 1
574 elif feat_val_yes "${i}"; then
575 return 0
576 else
577 msg "ERROR: %s: 0/n/false/no/off or 1/y/true/yes/on/require, got: %s" \
578 "${1}" "${i}"
579 config_exit 11
583 feat_yes() {
584 _feat_check ${1}
587 feat_no() {
588 _feat_check ${1} && return 1
589 return 0
592 feat_require() {
593 eval i=\$WANT_${1}
594 i="`echo ${i} | ${tr} '[A-Z]' '[a-z]'`"
595 [ "x${i}" = xrequire ] || [ "x${i}" = xrequired ]
598 feat_bail_required() {
599 if feat_require ${1}; then
600 msg 'ERROR: feature WANT_%s is required but not available' "${1}"
601 config_exit 13
603 eval WANT_${1}=0
604 option_update # XXX this is rather useless here (dependency chain..)
607 path_check() {
608 # "path_check VARNAME" or "path_check VARNAME FLAG VARNAME"
609 varname=${1} addflag=${2} flagvarname=${3}
610 j=${IFS}
611 IFS=:
612 eval "set -- \$${1}"
613 IFS=${j}
614 j= k= y= z=
615 for i
617 [ -z "${i}" ] && continue
618 [ -d "${i}" ] || continue
619 # Skip any fakeroot packager environment
620 case "${i}" in *fakeroot*) continue;; esac
621 if [ -n "${j}" ]; then
622 if { z=${y}; echo "${z}"; } | ${grep} ":${i}:" >/dev/null 2>&1; then
624 else
625 y="${y} :${i}:"
626 j="${j}:${i}"
627 [ -n "${addflag}" ] && k="${k} ${addflag}${i}"
629 else
630 y=" :${i}:"
631 j="${i}"
632 [ -n "${addflag}" ] && k="${addflag}${i}"
634 done
635 eval "${varname}=\"${j}\""
636 [ -n "${addflag}" ] && eval "${flagvarname}=\"${k}\""
637 unset varname
640 ld_runtime_flags() {
641 if [ -n "${need_R_ldflags}" ]; then
642 i=${IFS}
643 IFS=:
644 set -- ${LD_LIBRARY_PATH}
645 IFS=${i}
646 for i
648 LDFLAGS="${LDFLAGS} ${need_R_ldflags}${i}"
649 _LDFLAGS="${_LDFLAGS} ${need_R_ldflags}${i}"
650 done
651 export LDFLAGS
653 # Disable it for a possible second run.
654 need_R_ldflags=
657 cc_check() {
658 [ -n "${cc_check_silent}" ] || printf >&2 ' . CC %s .. ' "${1}"
659 if "${CC}" ${INCS} \
660 ${_CFLAGS} ${1} ${EXTRA_CFLAGS} ${_LDFLAGS} ${EXTRA_LDFLAGS} \
661 -o ${tmp2} ${tmp}.c ${LIBS} >/dev/null 2>&1; then
662 _CFLAGS="${_CFLAGS} ${1}"
663 [ -n "${cc_check_silent}" ] || printf >&2 'yes\n'
664 return 0
666 [ -n "${cc_check_silent}" ] || printf >&2 'no\n'
667 return 1
670 ld_check() {
671 # $1=option [$2=option argument] [$3=if set, shall NOT be added to _LDFLAGS]
672 [ -n "${cc_check_silent}" ] || printf >&2 ' . LD %s .. ' "${1}"
673 if "${CC}" ${INCS} ${_CFLAGS} ${_LDFLAGS} ${1}${2} ${EXTRA_LDFLAGS} \
674 -o ${tmp2} ${tmp}.c ${LIBS} >/dev/null 2>&1; then
675 [ -n "${3}" ] || _LDFLAGS="${_LDFLAGS} ${1}"
676 [ -n "${cc_check_silent}" ] || printf >&2 'yes\n'
677 return 0
679 [ -n "${cc_check_silent}" ] || printf >&2 'no\n'
680 return 1
683 # Include $rc, but only take from it what wasn't overwritten by the user from
684 # within the command line or from a chosen fixed CONFIG=
685 # Note we leave alone the values
686 trap "exit 1" HUP INT TERM
687 trap "${rm} -f ${tmp}" EXIT
689 printf >&2 'Reading and preparing configuration from "%s" ... ' ${rc}
690 ${rm} -f ${tmp}
691 # We want read(1) to perform backslash escaping in order to be able to use
692 # multiline values in make.rc; the resulting sh(1)/sed(1) code was very slow in
693 # VMs (see [fa2e248]), Aharon Robbins suggested the following
694 < ${rc} ${awk} 'BEGIN{line = ""}{
695 gsub(/^[[:space:]]+/, "", $0)
696 gsub(/[[:space:]]+$/, "", $0)
697 if(gsub(/\\$/, "", $0)){
698 line = line $0
699 next
700 }else
701 line = line $0
702 if(index(line, "#") == 1){
703 line = ""
704 }else if(length(line)){
705 print line
706 line = ""
708 }' |
709 while read line; do
710 if [ -n "${good_shell}" ]; then
711 i=${line%%=*}
712 else
713 i=`${awk} -v LINE="${line}" 'BEGIN{
714 gsub(/=.*$/, "", LINE)
715 print LINE
718 if [ "${i}" = "${line}" ]; then
719 msg 'ERROR: invalid syntax in "%s"' "${line}"
720 continue
723 eval j="\$${i}" jx="\${${i}+x}"
724 if [ -n "${j}" ] || [ "${jx}" = x ]; then
725 : # Yet present
726 else
727 j=`${awk} -v LINE="${line}" 'BEGIN{
728 gsub(/^[^=]*=/, "", LINE)
729 gsub(/^\"*/, "", LINE)
730 gsub(/\"*$/, "", LINE)
731 print LINE
734 [ "${i}" = "DESTDIR" ] && continue
735 echo "${i}=\"${j}\""
736 done > ${tmp}
737 # Reread the mixed version right now
738 . ./${tmp}
739 printf >&2 'done\n'
741 # We need to know about that now, in order to provide utility overwrites etc.
742 os_setup
744 msg 'Checking for remaining set of utilities'
745 check_tool grep "${grep:-`command -v grep`}"
747 # Before we step ahead with the other utilities perform a path cleanup first.
748 path_check PATH
750 # awk(1) above
751 check_tool cat "${cat:-`command -v cat`}"
752 check_tool chmod "${chmod:-`command -v chmod`}"
753 check_tool cp "${cp:-`command -v cp`}"
754 check_tool cmp "${cmp:-`command -v cmp`}"
755 # grep(1) above
756 check_tool mkdir "${mkdir:-`command -v mkdir`}"
757 check_tool mv "${mv:-`command -v mv`}"
758 # rm(1) above
759 check_tool sed "${sed:-`command -v sed`}"
760 check_tool sort "${sort:-`command -v sort`}"
761 check_tool tee "${tee:-`command -v tee`}"
763 check_tool chown "${chown:-`command -v chown`}" 1 ||
764 check_tool chown "/sbin/chown" 1 ||
765 check_tool chown "/usr/sbin/chown"
767 check_tool make "${MAKE:-`command -v make`}"
768 MAKE=${make}
769 check_tool strip "${STRIP:-`command -v strip`}" 1 &&
770 HAVE_STRIP=1 || HAVE_STRIP=0
772 # For ./cc-test.sh only
773 check_tool cksum "${cksum:-`command -v cksum`}"
775 # Update WANT_ options now, in order to get possible inter-dependencies right
776 option_update
778 # (No functions since some shells loose non-exported variables in traps)
779 trap "trap \"\" HUP INT TERM; exit 1" HUP INT TERM
780 trap "trap \"\" HUP INT TERM EXIT;\
781 ${rm} -rf ${newlst} ${tmp0}.* ${tmp0}* ${newmk} ${newev} ${newh}" EXIT
783 # Our configuration options may at this point still contain shell snippets,
784 # we need to evaluate them in order to get them expanded, and we need those
785 # evaluated values not only in our new configuration file, but also at hand..
786 printf >&2 'Evaluating all configuration items ... '
787 ${rm} -f ${newlst} ${newmk} ${newh}
788 exec 5<&0 6>&1 <${tmp} >${newlst}
789 while read line; do
791 if [ -n "${good_shell}" ]; then
792 i=${line%%=*}
793 [ "${i}" != "${i#WANT_}" ] && z=1
794 else
795 i=`${awk} -v LINE="${line}" 'BEGIN{
796 gsub(/=.*$/, "", LINE);\
797 print LINE
799 if echo "${i}" | ${grep} '^WANT_' >/dev/null 2>&1; then
804 eval j=\$${i}
805 if [ -n "${z}" ]; then
806 j="`echo ${j} | ${tr} '[A-Z]' '[a-z]'`"
807 if [ -z "${j}" ] || feat_val_no "${j}"; then
809 printf "/*#define ${i}*/\n" >> ${newh}
810 elif feat_val_yes "${j}"; then
811 if feat_val_require "${j}"; then
812 j=require
813 else
816 printf "#define ${i}\n" >> ${newh}
817 else
818 msg 'ERROR: cannot parse <%s>' "${line}"
819 config_exit 1
821 else
822 printf "#define ${i} \"${j}\"\n" >> ${newh}
824 printf "${i} = ${j}\n" >> ${newmk}
825 printf "${i}=${j}\n"
826 eval "${i}=\"${j}\""
827 done
828 exec 0<&5 1>&6 5<&- 6<&-
829 printf >&2 'done\n'
831 # Add the known utility and some other variables
832 printf "#define UAGENT \"${SID}${NAIL}\"\n" >> ${newh}
833 printf "UAGENT = ${SID}${NAIL}\n" >> ${newmk}
835 printf "#define PRIVSEP \"${SID}${NAIL}-privsep\"\n" >> ${newh}
836 printf "PRIVSEP = \$(UAGENT)-privsep\n" >> ${newmk}
837 if feat_yes DOTLOCK; then
838 printf "OPTIONAL_PRIVSEP = \$(PRIVSEP)\n" >> ${newmk}
839 else
840 printf "OPTIONAL_PRIVSEP =\n" >> ${newmk}
843 for i in \
844 awk cat chmod chown cp cmp grep mkdir mv rm sed sort tee tr \
845 MAKE MAKEFLAGS make SHELL strip \
846 cksum; do
847 eval j=\$${i}
848 printf "${i} = ${j}\n" >> ${newmk}
849 printf "${i}=${j}\n" >> ${newlst}
850 printf "${i}=\"${j}\";export ${i}; " >> ${newev}
851 done
852 printf "\n" >> ${newev}
854 # Build a basic set of INCS and LIBS according to user environment.
855 path_check C_INCLUDE_PATH -I _INCS
856 INCS="${INCS} ${_INCS}"
857 path_check LD_LIBRARY_PATH -L _LIBS
858 LIBS="${LIBS} ${_LIBS}"
859 unset _INCS _LIBS
860 export C_INCLUDE_PATH LD_LIBRARY_PATH
862 # Some environments need runtime path flags to be able to go at all
863 ld_runtime_flags
865 ## Detect CC, wether we can use it, and possibly which CFLAGS we can use
867 cc_setup
869 ${cat} > ${tmp}.c << \!
870 #include <stdio.h>
871 #include <string.h>
872 static void doit(char const *s);
874 main(int argc, char **argv){
875 (void)argc;
876 (void)argv;
877 doit("Hello world");
878 return 0;
880 static void
881 doit(char const *s){
882 char buf[12];
883 memcpy(buf, s, strlen(s) +1);
884 puts(s);
888 if "${CC}" ${INCS} ${CFLAGS} ${EXTRA_CFLAGS} ${LDFLAGS} ${EXTRA_LDFLAGS} \
889 -o ${tmp2} ${tmp}.c ${LIBS}; then
891 else
892 msg 'ERROR: i cannot compile a "Hello world" via'
893 msg ' %s' \
894 "${CC} ${INCS} ${CFLAGS} ${EXTRA_CFLAGS} ${LDFLAGS} ${EXTRA_LDFLAGS} ${LIBS}"
895 msg 'ERROR: Please read INSTALL, rerun'
896 config_exit 1
899 # This may also update ld_runtime_flags() (again)
900 cc_flags
902 for i in \
903 INCS LIBS \
904 ; do
905 eval j=\$${i}
906 printf -- "${i}=${j}\n" >> ${newlst}
907 done
908 for i in \
909 CC \
910 CFLAGS \
911 LDFLAGS \
912 PATH C_INCLUDE_PATH LD_LIBRARY_PATH \
913 OSFULLSPEC \
914 ; do
915 eval j=\$${i}
916 printf -- "${i} = ${j}\n" >> ${newmk}
917 printf -- "${i}=${j}\n" >> ${newlst}
918 done
920 # Now finally check wether we already have a configuration and if so, wether
921 # all those parameters are still the same.. or something has actually changed
922 if [ -f ${lst} ] && ${cmp} ${newlst} ${lst} >/dev/null 2>&1; then
923 echo 'Configuration is up-to-date'
924 exit 0
925 elif [ -f ${lst} ]; then
926 echo 'Configuration has been updated..'
927 ( eval "${MAKE} -f ./mk.mk clean" )
928 echo
929 else
930 echo 'Shiny configuration..'
933 # Time to redefine helper 1
934 config_exit() {
935 ${rm} -f ${lst} ${h} ${mk}
936 exit ${1}
939 ${mv} -f ${newlst} ${lst}
940 ${mv} -f ${newev} ${ev}
941 ${mv} -f ${newh} ${h}
942 ${mv} -f ${newmk} ${mk}
944 if [ -z "${VERBOSE}" ]; then
945 printf -- "ECHO_CC = @echo ' 'CC \$(@);\n" >> ${mk}
946 printf -- "ECHO_LINK = @echo ' 'LINK \$(@);\n" >> ${mk}
947 printf -- "ECHO_GEN = @echo ' 'GEN \$(@);\n" >> ${mk}
948 printf -- "ECHO_TEST = @\n" >> ${mk}
949 printf -- "ECHO_CMD = @echo ' CMD';\n" >> ${mk}
950 printf -- "ECHO_BLOCK_BEGIN = @( \n" >> ${mk}
951 printf -- "ECHO_BLOCK_END = ) >/dev/null\n" >> ${mk}
954 ## Compile and link checking
956 tmp3=./${tmp0}3$$
957 log=./config.log
958 lib=./config.lib
959 inc=./config.inc
960 makefile=./config.mk
962 # (No function since some shells loose non-exported variables in traps)
963 trap "trap \"\" HUP INT TERM;\
964 ${rm} -f ${lst} ${h} ${mk} ${lib} ${inc}; exit 1" HUP INT TERM
965 trap "trap \"\" HUP INT TERM EXIT;\
966 ${rm} -rf ${tmp0}.* ${tmp0}* ${makefile}" EXIT
968 # Time to redefine helper 2
969 msg() {
970 fmt=${1}
971 shift
972 printf "*** ${fmt}\\n" "${@}"
973 printf -- "${fmt}\\n" "${@}" >&5
975 msg_nonl() {
976 fmt=${1}
977 shift
978 printf "*** ${fmt}\\n" "${@}"
979 printf -- "${fmt}" "${@}" >&5
982 exec 5>&2 > ${log} 2>&1
984 echo "${LIBS}" > ${lib}
985 echo "${INCS}" > ${inc}
986 ${cat} > ${makefile} << \!
987 .SUFFIXES: .o .c .x .y
988 .c.o:
989 $(CC) -I./ $(XINCS) $(CFLAGS) -c $(<)
990 .c.x:
991 $(CC) -I./ $(XINCS) -E $(<) > $(@)
993 $(CC) -I./ $(XINCS) $(CFLAGS) $(LDFLAGS) -o $(@) $(<) $(XLIBS)
996 _check_preface() {
997 variable=$1 topic=$2 define=$3
999 echo '**********'
1000 msg_nonl ' . %s ... ' "${topic}"
1001 echo "/* checked ${topic} */" >> ${h}
1002 ${rm} -f ${tmp} ${tmp}.o
1003 echo '*** test program is'
1004 { echo '#include <'"${h_name}"'>'; cat; } | ${tee} ${tmp}.c
1005 #echo '*** the preprocessor generates'
1006 #${make} -f ${makefile} ${tmp}.x
1007 #${cat} ${tmp}.x
1008 echo '*** results are'
1011 compile_check() {
1012 variable=$1 topic=$2 define=$3
1014 _check_preface "${variable}" "${topic}" "${define}"
1016 if ${make} -f ${makefile} XINCS="${INCS}" ./${tmp}.o &&
1017 [ -f ./${tmp}.o ]; then
1018 msg 'yes'
1019 echo "${define}" >> ${h}
1020 eval have_${variable}=yes
1021 return 0
1022 else
1023 echo "/* ${define} */" >> ${h}
1024 msg 'no'
1025 eval unset have_${variable}
1026 return 1
1030 _link_mayrun() {
1031 run=$1 variable=$2 topic=$3 define=$4 libs=$5 incs=$6
1033 _check_preface "${variable}" "${topic}" "${define}"
1035 feat_yes CROSS_BUILD && run=0
1037 if ${make} -f ${makefile} XINCS="${INCS} ${incs}" \
1038 XLIBS="${LIBS} ${libs}" ./${tmp} &&
1039 [ -f ./${tmp} ] &&
1040 { [ ${run} -eq 0 ] || ./${tmp}; }; then
1041 echo "*** adding INCS<${incs}> LIBS<${libs}>; executed: ${run}"
1042 msg 'yes'
1043 echo "${define}" >> ${h}
1044 LIBS="${LIBS} ${libs}"
1045 echo "${libs}" >> ${lib}
1046 INCS="${INCS} ${incs}"
1047 echo "${incs}" >> ${inc}
1048 eval have_${variable}=yes
1049 return 0
1050 else
1051 msg 'no'
1052 echo "/* ${define} */" >> ${h}
1053 eval unset have_${variable}
1054 return 1
1058 link_check() {
1059 _link_mayrun 0 "${1}" "${2}" "${3}" "${4}" "${5}"
1062 run_check() {
1063 _link_mayrun 1 "${1}" "${2}" "${3}" "${4}" "${5}"
1066 feat_def() {
1067 if feat_yes ${1}; then
1068 echo '#define HAVE_'${1}'' >> ${h}
1069 else
1070 echo '/* WANT_'${1}'=0 */' >> ${h}
1074 squeeze_em() {
1075 < "${1}" > "${2}" ${awk} \
1076 'BEGIN {ORS = " "} /^[^#]/ {print} {next} END {ORS = ""; print "\n"}'
1079 ## Generics
1081 # May be multiline..
1082 [ -n "${OS_DEFINES}" ] && printf -- "${OS_DEFINES}" >> ${h}
1084 feat_def AMALGAMATION
1085 feat_def CROSS_BUILD
1086 feat_def DEBUG
1087 feat_def DEVEL
1088 feat_def DOCSTRINGS
1089 feat_def ERRORS
1090 feat_def NYD2
1092 if run_check inline '"inline" functions' \
1093 '#define HAVE_INLINE
1094 #define n_INLINE static inline' << \!
1095 static inline int ilf(int i){return ++i;}
1096 int main(void){return ilf(-1);}
1098 then
1100 elif run_check inline '"__inline" functions' \
1101 '#define HAVE_INLINE
1102 #define n_INLINE static __inline' << \!
1103 static __inline int ilf(int i){return ++i;}
1104 int main(void){return ilf(-1);}
1106 then
1110 if run_check endian 'Little endian byteorder' \
1111 '#define HAVE_BYTE_ORDER_LITTLE' << \!
1112 int main(void){
1113 enum {vBig = 1, vLittle = 0};
1114 union {unsigned short bom; unsigned char buf[2];} u;
1115 u.bom = 0xFEFF;
1116 return((u.buf[1] == 0xFE) ? vLittle : vBig);
1119 then
1123 ## Test for "basic" system-calls / functionality that is used by all parts
1124 ## of our program. Once this is done fork away BASE_LIBS and other BASE_*
1125 ## macros to be used by only the subprograms (potentially).
1127 if run_check clock_gettime 'clock_gettime(2)' \
1128 '#define HAVE_CLOCK_GETTIME' << \!
1129 #include <time.h>
1130 # include <errno.h>
1131 int main(void){
1132 struct timespec ts;
1134 if(!clock_gettime(CLOCK_REALTIME, &ts) || errno != ENOSYS)
1135 return 0;
1136 return 1;
1139 then
1141 elif run_check clock_gettime 'clock_gettime(2) (via -lrt)' \
1142 '#define HAVE_CLOCK_GETTIME' '-lrt' << \!
1143 #include <time.h>
1144 # include <errno.h>
1145 int main(void){
1146 struct timespec ts;
1148 if(!clock_gettime(CLOCK_REALTIME, &ts) || errno != ENOSYS)
1149 return 0;
1150 return 1;
1153 then
1155 elif run_check gettimeofday 'gettimeofday(2)' \
1156 '#define HAVE_GETTIMEOFDAY' << \!
1157 #include <stdio.h> /* For C89 NULL */
1158 #include <sys/time.h>
1159 # include <errno.h>
1160 int main(void){
1161 struct timeval tv;
1163 if(!gettimeofday(&tv, NULL) || errno != ENOSYS)
1164 return 0;
1165 return 1;
1168 then
1170 else
1171 have_no_subsecond_time=1
1174 if run_check nanosleep 'nanosleep(2)' \
1175 '#define HAVE_NANOSLEEP' << \!
1176 #include <time.h>
1177 # include <errno.h>
1178 int main(void){
1179 struct timespec ts;
1181 ts.tv_sec = 1;
1182 ts.tv_nsec = 100000;
1183 if(!nanosleep(&ts, NULL) || errno != ENOSYS)
1184 return 0;
1185 return 1;
1188 then
1190 elif run_check nanosleep 'nanosleep(2) (via -lrt)' \
1191 '#define HAVE_NANOSLEEP' '-lrt' << \!
1192 #include <time.h>
1193 # include <errno.h>
1194 int main(void){
1195 struct timespec ts;
1197 ts.tv_sec = 1;
1198 ts.tv_nsec = 100000;
1199 if(!nanosleep(&ts, NULL) || errno != ENOSYS)
1200 return 0;
1201 return 1;
1204 then
1206 # link_check is enough for this, that function is so old, trust the proto
1207 elif link_check sleep 'sleep(3)' \
1208 '#define HAVE_SLEEP' << \!
1209 #include <unistd.h>
1210 # include <errno.h>
1211 int main(void){
1212 if(!sleep(1) || errno != ENOSYS)
1213 return 0;
1214 return 1;
1217 then
1219 else
1220 msg 'ERROR: we require one of nanosleep(2) and sleep(3).'
1221 config_exit 1
1224 if run_check userdb 'gete?[gu]id(2), getpwuid(3), getpwnam(3)' << \!
1225 #include <pwd.h>
1226 #include <unistd.h>
1227 # include <errno.h>
1228 int main(void){
1229 struct passwd *pw;
1230 gid_t gid;
1231 uid_t uid;
1233 if((gid = getgid()) != 0)
1234 gid = getegid();
1235 if((uid = getuid()) != 0)
1236 uid = geteuid();
1237 if((pw = getpwuid(uid)) == NULL && errno == ENOSYS)
1238 return 1;
1239 if((pw = getpwnam("root")) == NULL && errno == ENOSYS)
1240 return 1;
1241 return 0;
1244 then
1246 else
1247 msg 'ERROR: we require user and group info / database searches.'
1248 msg 'That much Unix we indulge ourselfs.'
1249 config_exit 1
1252 if run_check sa_restart 'SA_RESTART (for sigaction(2))' << \!
1253 #include <signal.h>
1254 # include <errno.h>
1255 int main(void){
1256 struct sigaction nact, oact;
1258 nact.sa_handler = SIG_DFL;
1259 sigemptyset(&nact.sa_mask);
1260 nact.sa_flags = SA_RESTART;
1261 return !(!sigaction(SIGCHLD, &nact, &oact) || errno != ENOSYS);
1264 then
1266 else
1267 msg 'ERROR: we (yet) require the SA_RESTART flag for sigaction(2).'
1268 config_exit 1
1271 if link_check snprintf 'snprintf(3)' << \!
1272 #include <stdio.h>
1273 int main(void){
1274 char b[20];
1276 snprintf(b, sizeof b, "%s", "string");
1277 return 0;
1280 then
1282 else
1283 msg 'ERROR: we require the snprintf(3) function.'
1284 config_exit 1
1287 if link_check environ 'environ(3)' << \!
1288 #include <stdio.h> /* For C89 NULL */
1289 int main(void){
1290 extern char **environ;
1292 return environ[0] == NULL;
1295 then
1297 else
1298 msg 'ERROR: we require the environ(3) array for subprocess control.'
1299 config_exit 1
1302 if link_check setenv '(un)?setenv(3)' '#define HAVE_SETENV' << \!
1303 #include <stdlib.h>
1304 int main(void){
1305 setenv("s-mailx", "i want to see it cute!", 1);
1306 unsetenv("s-mailx");
1307 return 0;
1310 then
1312 elif link_check setenv 'putenv(3)' '#define HAVE_PUTENV' << \!
1313 #include <stdlib.h>
1314 int main(void){
1315 putenv("s-mailx=i want to see it cute!");
1316 return 0;
1319 then
1321 else
1322 msg 'ERROR: we require either the setenv(3) or putenv(3) functions.'
1323 config_exit 1
1326 if link_check termios 'termios.h and tc*(3) family' << \!
1327 #include <termios.h>
1328 int main(void){
1329 struct termios tios;
1331 tcgetattr(0, &tios);
1332 tcsetattr(0, TCSADRAIN | TCSAFLUSH, &tios);
1333 return 0;
1336 then
1338 else
1339 msg 'ERROR: we require termios.h and the tc*() family of functions.'
1340 msg 'That much Unix we indulge ourselfs.'
1341 config_exit 1
1344 ## optional stuff
1346 if link_check vsnprintf 'vsnprintf(3)' << \!
1347 #include <stdarg.h>
1348 #include <stdio.h>
1349 static void dome(char *buf, size_t blen, ...){
1350 va_list ap;
1352 va_start(ap, buf);
1353 vsnprintf(buf, blen, "%s", ap);
1354 va_end(ap);
1356 int main(void){
1357 char b[20];
1359 dome(b, sizeof b, "string");
1360 return 0;
1363 then
1365 else
1366 feat_bail_required ERRORS
1369 if [ "${have_vsnprintf}" = yes ]; then
1370 link_check va_copy 'va_copy(3)' '#define HAVE_VA_COPY' << \!
1371 #include <stdarg.h>
1372 #include <stdio.h>
1373 static void dome2(char *buf, size_t blen, va_list src){
1374 va_list ap;
1376 va_copy(ap, src);
1377 vsnprintf(buf, blen, "%s", ap);
1378 va_end(ap);
1380 static void dome(char *buf, size_t blen, ...){
1381 va_list ap;
1383 va_start(ap, buf);
1384 dome2(buf, blen, ap)
1385 va_end(ap);
1387 int main(void){
1388 char b[20];
1390 dome(b, sizeof b, "string");
1391 return 0;
1396 run_check pathconf 'f?pathconf(2)' '#define HAVE_PATHCONF' << \!
1397 #include <unistd.h>
1398 #include <errno.h>
1399 int main(void){
1400 int rv = 0;
1402 errno = 0;
1403 rv |= !(pathconf(".", _PC_NAME_MAX) >= 0 || errno == 0 || errno != ENOSYS);
1404 errno = 0;
1405 rv |= !(pathconf(".", _PC_PATH_MAX) >= 0 || errno == 0 || errno != ENOSYS);
1407 /* Only link check */
1408 fpathconf(0, _PC_NAME_MAX);
1410 return rv;
1414 run_check pipe2 'pipe2(2)' '#define HAVE_PIPE2' << \!
1415 #include <fcntl.h>
1416 #include <unistd.h>
1417 # include <errno.h>
1418 int main(void){
1419 int fds[2];
1421 if(!pipe2(fds, O_CLOEXEC) || errno != ENOSYS)
1422 return 0;
1423 return 1;
1427 # We use this only then for now (need NOW+1)
1428 run_check utimensat 'utimensat(2)' '#define HAVE_UTIMENSAT' << \!
1429 #include <fcntl.h> /* For AT_* */
1430 #include <sys/stat.h>
1431 # include <errno.h>
1432 int main(void){
1433 struct timespec ts[2];
1435 ts[0].tv_nsec = UTIME_NOW;
1436 ts[1].tv_nsec = UTIME_OMIT;
1437 if(!utimensat(AT_FDCWD, "", ts, 0) || errno != ENOSYS)
1438 return 0;
1439 return 1;
1445 # XXX Add POSIX check once standardized
1446 if link_check posix_random 'arc4random(3)' '#define HAVE_POSIX_RANDOM 0' << \!
1447 #include <stdlib.h>
1448 int main(void){
1449 arc4random();
1450 return 0;
1453 then
1455 elif [ -n "${have_no_subsecond_time}" ]; then
1456 msg 'ERROR: %s %s' 'without a native random' \
1457 'one of clock_gettime(2) and gettimeofday(2) is required.'
1458 config_exit 1
1461 link_check putc_unlocked 'putc_unlocked(3)' '#define HAVE_PUTC_UNLOCKED' <<\!
1462 #include <stdio.h>
1463 int main(void){
1464 putc_unlocked('@', stdout);
1465 return 0;
1469 link_check fchdir 'fchdir(3)' '#define HAVE_FCHDIR' << \!
1470 #include <unistd.h>
1471 int main(void){
1472 fchdir(0);
1473 return 0;
1477 if run_check realpath 'realpath(3)' '#define HAVE_REALPATH' << \!
1478 #include <stdlib.h>
1479 int main(void){
1480 char x_buf[4096], *x = realpath(".", x_buf);
1482 return (x != NULL) ? 0 : 1;
1485 then
1486 if run_check realpath_malloc 'realpath(3) takes NULL' \
1487 '#define HAVE_REALPATH_NULL' << \!
1488 #include <stdlib.h>
1489 int main(void){
1490 char *x = realpath(".", NULL);
1492 if(x != NULL)
1493 free(x);
1494 return (x != NULL) ? 0 : 1;
1497 then
1502 ## optional and selectable
1504 if feat_no NOALLOCA; then
1505 # Due to NetBSD PR lib/47120 it seems best not to use non-cc-builtin
1506 # versions of alloca(3) since modern compilers just can't be trusted
1507 # not to overoptimize and silently break some code
1508 run_check alloca '__builtin_alloca()' \
1509 '#define HAVE_ALLOCA __builtin_alloca' << \!
1510 #include <stdio.h> /* For C89 NULL */
1511 int main(void){
1512 void *vp = __builtin_alloca(1);
1514 return (vp != NULL);
1519 if feat_yes DOTLOCK; then
1520 if run_check readlink 'readlink(2)' << \!
1521 #include <unistd.h>
1522 # include <errno.h>
1523 int main(void){
1524 char buf[128];
1526 if(!readlink("here", buf, sizeof buf) || errno != ENOSYS)
1527 return 0;
1528 return 1;
1531 then
1533 else
1534 feat_bail_required DOTLOCK
1538 if feat_yes DOTLOCK; then
1539 if run_check fchown 'fchown(2)' << \!
1540 #include <unistd.h>
1541 # include <errno.h>
1542 int main(void){
1543 if(!fchown(0, 0, 0) || errno != ENOSYS)
1544 return 0;
1545 return 1;
1548 then
1550 else
1551 feat_bail_required DOTLOCK
1555 ## Now it is the time to fork away the BASE_ series
1557 ${rm} -f ${tmp}
1558 squeeze_em ${inc} ${tmp}
1559 ${mv} ${tmp} ${inc}
1560 squeeze_em ${lib} ${tmp}
1561 ${mv} ${tmp} ${lib}
1563 echo "BASE_LIBS = `${cat} ${lib}`" >> ${mk}
1564 echo "BASE_INCS = `${cat} ${inc}`" >> ${mk}
1566 ## The remains are expected to be used only by the main MUA binary!
1568 link_check setlocale 'setlocale(3)' '#define HAVE_SETLOCALE' << \!
1569 #include <locale.h>
1570 int main(void){
1571 setlocale(LC_ALL, "");
1572 return 0;
1576 if [ "${have_setlocale}" = yes ]; then
1577 link_check c90amend1 'ISO/IEC 9899:1990/Amendment 1:1995' \
1578 '#define HAVE_C90AMEND1' << \!
1579 #include <limits.h>
1580 #include <stdlib.h>
1581 #include <wchar.h>
1582 #include <wctype.h>
1583 int main(void){
1584 char mbb[MB_LEN_MAX + 1];
1585 wchar_t wc;
1587 iswprint(L'c');
1588 towupper(L'c');
1589 mbtowc(&wc, "x", 1);
1590 mbrtowc(&wc, "x", 1, NULL);
1591 wctomb(mbb, wc);
1592 return (mblen("\0", 1) == 0);
1596 if [ "${have_c90amend1}" = yes ]; then
1597 link_check wcwidth 'wcwidth(3)' '#define HAVE_WCWIDTH' << \!
1598 #include <wchar.h>
1599 int main(void){
1600 wcwidth(L'c');
1601 return 0;
1606 link_check nl_langinfo 'nl_langinfo(3)' '#define HAVE_NL_LANGINFO' << \!
1607 #include <langinfo.h>
1608 #include <stdlib.h>
1609 int main(void){
1610 nl_langinfo(DAY_1);
1611 return (nl_langinfo(CODESET) == NULL);
1614 fi # have_setlocale
1616 link_check fnmatch 'fnmatch(3)' '#define HAVE_FNMATCH' << \!
1617 #include <fnmatch.h>
1618 int main(void){
1619 return (fnmatch("*", ".", FNM_PATHNAME | FNM_PERIOD) == FNM_NOMATCH);
1623 link_check dirent_d_type 'struct dirent.d_type' '#define HAVE_DIRENT_TYPE' << \!
1624 #include <dirent.h>
1625 int main(void){
1626 struct dirent de;
1627 return !(de.d_type == DT_UNKNOWN ||
1628 de.d_type == DT_DIR || de.d_type == DT_LNK);
1632 ## optional and selectable
1634 if feat_yes ICONV; then
1635 ${cat} > ${tmp2}.c << \!
1636 #include <stdio.h> /* For C89 NULL */
1637 #include <iconv.h>
1638 int main(void){
1639 iconv_t id;
1641 id = iconv_open("foo", "bar");
1642 iconv(id, NULL, NULL, NULL, NULL);
1643 iconv_close(id);
1644 return 0;
1647 < ${tmp2}.c link_check iconv 'iconv(3) functionality' \
1648 '#define HAVE_ICONV' ||
1649 < ${tmp2}.c link_check iconv 'iconv(3) functionality (via -liconv)' \
1650 '#define HAVE_ICONV' '-liconv' ||
1651 feat_bail_required ICONV
1652 else
1653 echo '/* WANT_ICONV=0 */' >> ${h}
1654 fi # feat_yes ICONV
1656 if feat_yes SOCKETS || feat_yes SPAM_SPAMD; then
1657 ${cat} > ${tmp2}.c << \!
1658 #include <sys/types.h>
1659 #include <sys/socket.h>
1660 #include <sys/un.h>
1661 # include <errno.h>
1662 int main(void){
1663 struct sockaddr_un soun;
1665 if(socket(AF_UNIX, SOCK_STREAM, 0) == -1 && errno == ENOSYS)
1666 return 1;
1667 if(connect(0, (struct sockaddr*)&soun, 0) == -1 && errno == ENOSYS)
1668 return 1;
1669 if(shutdown(0, SHUT_RD | SHUT_WR | SHUT_RDWR) == -1 && errno == ENOSYS)
1670 return 1;
1671 return 0;
1675 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets' \
1676 '#define HAVE_UNIX_SOCKETS' ||
1677 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets (via -lnsl)' \
1678 '#define HAVE_UNIX_SOCKETS' '-lnsl' ||
1679 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets (via -lsocket -lnsl)' \
1680 '#define HAVE_UNIX_SOCKETS' '-lsocket -lnsl'
1683 if feat_yes SOCKETS; then
1684 ${cat} > ${tmp2}.c << \!
1685 #include "config.h"
1686 #include <sys/types.h>
1687 #include <sys/socket.h>
1688 #include <netinet/in.h>
1689 # include <errno.h>
1690 int main(void){
1691 struct sockaddr s;
1693 if(socket(AF_INET, SOCK_STREAM, 0) == -1 && errno == ENOSYS)
1694 return 1;
1695 if(connect(0, &s, 0) == -1 && errno == ENOSYS)
1696 return 1;
1697 return 0;
1701 < ${tmp2}.c run_check sockets 'sockets' \
1702 '#define HAVE_SOCKETS' ||
1703 < ${tmp2}.c run_check sockets 'sockets (via -lnsl)' \
1704 '#define HAVE_SOCKETS' '-lnsl' ||
1705 < ${tmp2}.c run_check sockets 'sockets (via -lsocket -lnsl)' \
1706 '#define HAVE_SOCKETS' '-lsocket -lnsl' ||
1707 feat_bail_required SOCKETS
1708 else
1709 echo '/* WANT_SOCKETS=0 */' >> ${h}
1710 fi # feat_yes SOCKETS
1712 if feat_yes SOCKETS; then
1713 link_check getaddrinfo 'getaddrinfo(3)' \
1714 '#define HAVE_GETADDRINFO' << \!
1715 #include "config.h"
1716 #include <sys/types.h>
1717 #include <sys/socket.h>
1718 #include <stdio.h>
1719 #include <netdb.h>
1720 int main(void){
1721 struct addrinfo a, *ap;
1722 int lrv;
1724 switch((lrv = getaddrinfo("foo", "0", &a, &ap))){
1725 case EAI_NONAME:
1726 case EAI_SERVICE:
1727 default:
1728 fprintf(stderr, "%s\n", gai_strerror(lrv));
1729 case 0:
1730 break;
1732 return 0;
1737 if feat_yes SOCKETS && [ -z "${have_getaddrinfo}" ]; then
1738 compile_check arpa_inet_h '<arpa/inet.h>' \
1739 '#define HAVE_ARPA_INET_H' << \!
1740 #include "config.h"
1741 #include <sys/types.h>
1742 #include <sys/socket.h>
1743 #include <netdb.h>
1744 #include <netinet/in.h>
1745 #include <arpa/inet.h>
1748 ${cat} > ${tmp2}.c << \!
1749 #include "config.h"
1750 #include <sys/types.h>
1751 #include <sys/socket.h>
1752 #include <stdio.h>
1753 #include <string.h>
1754 #include <netdb.h>
1755 #include <netinet/in.h>
1756 #ifdef HAVE_ARPA_INET_H
1757 #include <arpa/inet.h>
1758 #endif
1759 int main(void){
1760 struct sockaddr_in servaddr;
1761 unsigned short portno;
1762 struct servent *ep;
1763 struct hostent *hp;
1764 struct in_addr **pptr;
1766 portno = 0;
1767 if((ep = getservbyname("POPPY-PORT", "tcp")) != NULL)
1768 portno = (unsigned short)ep->s_port;
1770 if((hp = gethostbyname("POPPY-HOST")) != NULL){
1771 pptr = (struct in_addr**)hp->h_addr_list;
1772 if(hp->h_addrtype != AF_INET)
1773 fprintf(stderr, "au\n");
1774 }else{
1775 switch(h_errno){
1776 case HOST_NOT_FOUND:
1777 case TRY_AGAIN:
1778 case NO_RECOVERY:
1779 case NO_DATA:
1780 break;
1781 default:
1782 fprintf(stderr, "au\n");
1783 break;
1787 memset(&servaddr, 0, sizeof servaddr);
1788 servaddr.sin_family = AF_INET;
1789 servaddr.sin_port = htons(portno);
1790 memcpy(&servaddr.sin_addr, *pptr, sizeof(struct in_addr));
1791 fprintf(stderr, "Would connect to %s:%d ...\n",
1792 inet_ntoa(**pptr), (int)portno);
1793 return 0;
1797 < ${tmp2}.c link_check gethostbyname 'get(serv|host)byname(3)' ||
1798 < ${tmp2}.c link_check gethostbyname \
1799 'get(serv|host)byname(3) (via -nsl)' '' '-lnsl' ||
1800 < ${tmp2}.c link_check gethostbyname \
1801 'get(serv|host)byname(3) (via -lsocket -nsl)' \
1802 '' '-lsocket -lnsl' ||
1803 feat_bail_required SOCKETS
1806 feat_yes SOCKETS &&
1807 run_check setsockopt 'setsockopt(2)' '#define HAVE_SETSOCKOPT' << \!
1808 #include <sys/socket.h>
1809 #include <stdlib.h>
1810 # include <errno.h>
1811 int main(void){
1812 int sockfd = 3;
1814 if(setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, NULL, 0) == -1 &&
1815 errno == ENOSYS)
1816 return 1;
1817 return 0;
1821 feat_yes SOCKETS && [ -n "${have_setsockopt}" ] &&
1822 link_check so_sndtimeo 'SO_SNDTIMEO' '#define HAVE_SO_SNDTIMEO' << \!
1823 #include <sys/socket.h>
1824 #include <stdlib.h>
1825 int main(void){
1826 struct timeval tv;
1827 int sockfd = 3;
1829 tv.tv_sec = 42;
1830 tv.tv_usec = 21;
1831 setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof tv);
1832 setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof tv);
1833 return 0;
1837 feat_yes SOCKETS && [ -n "${have_setsockopt}" ] &&
1838 link_check so_linger 'SO_LINGER' '#define HAVE_SO_LINGER' << \!
1839 #include <sys/socket.h>
1840 #include <stdlib.h>
1841 int main(void){
1842 struct linger li;
1843 int sockfd = 3;
1845 li.l_onoff = 1;
1846 li.l_linger = 42;
1847 setsockopt(sockfd, SOL_SOCKET, SO_LINGER, &li, sizeof li);
1848 return 0;
1852 if feat_yes SSL; then
1853 if link_check openssl 'OpenSSL (new style *_client_method(3ssl))' \
1854 '#define HAVE_SSL
1855 #define HAVE_OPENSSL 10100' '-lssl -lcrypto' << \!
1856 #include <openssl/ssl.h>
1857 #include <openssl/err.h>
1858 #include <openssl/x509v3.h>
1859 #include <openssl/x509.h>
1860 #include <openssl/rand.h>
1861 #ifdef OPENSSL_NO_TLS1 /* TODO only deduced from OPENSSL_NO_SSL[23]! */
1862 # error We need TLSv1.
1863 #endif
1864 int main(void){
1865 SSL_CTX *ctx = SSL_CTX_new(TLS_client_method());
1867 SSL_CTX_free(ctx);
1868 PEM_read_PrivateKey(0, 0, 0, 0);
1869 return 0;
1872 then
1874 elif link_check openssl 'OpenSSL (old style *_client_method(3ssl))' \
1875 '#define HAVE_SSL
1876 #define HAVE_OPENSSL 10000' '-lssl -lcrypto' << \!
1877 #include <openssl/ssl.h>
1878 #include <openssl/err.h>
1879 #include <openssl/x509v3.h>
1880 #include <openssl/x509.h>
1881 #include <openssl/rand.h>
1882 #if defined OPENSSL_NO_SSL3 &&\
1883 defined OPENSSL_NO_TLS1 /* TODO only deduced from OPENSSL_NO_SSL[23]! */
1884 # error We need one of SSLv3 and TLSv1.
1885 #endif
1886 int main(void){
1887 SSL_CTX *ctx = SSL_CTX_new(SSLv23_client_method());
1889 SSL_CTX_free(ctx);
1890 PEM_read_PrivateKey(0, 0, 0, 0);
1891 return 0;
1894 then
1896 else
1897 feat_bail_required SSL
1900 if [ "${have_openssl}" = 'yes' ]; then
1901 compile_check stack_of 'OpenSSL STACK_OF()' \
1902 '#define HAVE_OPENSSL_STACK_OF' << \!
1903 #include <stdio.h> /* For C89 NULL */
1904 #include <openssl/ssl.h>
1905 #include <openssl/err.h>
1906 #include <openssl/x509v3.h>
1907 #include <openssl/x509.h>
1908 #include <openssl/rand.h>
1909 int main(void){
1910 STACK_OF(GENERAL_NAME) *gens = NULL;
1912 printf("%p", gens); /* to use it */
1913 return 0;
1917 link_check ossl_conf 'OpenSSL_modules_load_file() support' \
1918 '#define HAVE_OPENSSL_CONFIG' << \!
1919 #include <stdio.h> /* For C89 NULL */
1920 #include <openssl/conf.h>
1921 int main(void){
1922 CONF_modules_load_file(NULL, NULL, CONF_MFLAGS_IGNORE_MISSING_FILE);
1923 CONF_modules_free();
1924 return 0;
1928 link_check ossl_conf_ctx 'OpenSSL SSL_CONF_CTX support' \
1929 '#define HAVE_OPENSSL_CONF_CTX' << \!
1930 #include "config.h"
1931 #include <openssl/ssl.h>
1932 #include <openssl/err.h>
1933 int main(void){
1934 #if HAVE_OPENSSL < 10100
1935 SSL_CTX *ctx = SSL_CTX_new(SSLv23_client_method());
1936 #else
1937 SSL_CTX *ctx = SSL_CTX_new(TLS_client_method());
1938 #endif
1939 SSL_CONF_CTX *cctx = SSL_CONF_CTX_new();
1941 SSL_CONF_CTX_set_flags(cctx,
1942 SSL_CONF_FLAG_FILE | SSL_CONF_FLAG_CLIENT |
1943 SSL_CONF_FLAG_CERTIFICATE | SSL_CONF_FLAG_SHOW_ERRORS);
1944 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx);
1945 SSL_CONF_cmd(cctx, "Protocol", "ALL");
1946 SSL_CONF_CTX_finish(cctx);
1947 SSL_CONF_CTX_free(cctx);
1948 SSL_CTX_free(ctx);
1949 return 0;
1953 link_check rand_egd 'OpenSSL RAND_egd(3ssl)' \
1954 '#define HAVE_OPENSSL_RAND_EGD' << \!
1955 #include <openssl/rand.h>
1956 int main(void){
1957 return RAND_egd("some.where") > 0;
1961 if feat_yes SSL_ALL_ALGORITHMS; then
1962 if link_check ssl_all_algo 'OpenSSL all-algorithms support' \
1963 '#define HAVE_SSL_ALL_ALGORITHMS' << \!
1964 #include <openssl/evp.h>
1965 int main(void){
1966 OpenSSL_add_all_algorithms();
1967 EVP_get_cipherbyname("two cents i never exist");
1968 EVP_cleanup();
1969 return 0;
1972 then
1974 else
1975 feat_bail_required SSL_ALL_ALGORITHMS
1977 fi # SSL_ALL_ALGORITHMS
1979 if feat_yes MD5 && feat_no NOEXTMD5; then
1980 run_check openssl_md5 'MD5 digest in OpenSSL' \
1981 '#define HAVE_OPENSSL_MD5' << \!
1982 #include <stdlib.h>
1983 #include <string.h>
1984 #include <openssl/md5.h>
1985 int main(void){
1986 char const dat[] = "abrakadabrafidibus";
1987 char dig[16], hex[16 * 2];
1988 MD5_CTX ctx;
1989 size_t i, j;
1991 memset(dig, 0, sizeof(dig));
1992 memset(hex, 0, sizeof(hex));
1993 MD5_Init(&ctx);
1994 MD5_Update(&ctx, dat, sizeof(dat) - 1);
1995 MD5_Final(dig, &ctx);
1997 #define hexchar(n) ((n) > 9 ? (n) - 10 + 'a' : (n) + '0')
1998 for(i = 0; i < sizeof(hex) / 2; i++){
1999 j = i << 1;
2000 hex[j] = hexchar((dig[i] & 0xf0) >> 4);
2001 hex[++j] = hexchar(dig[i] & 0x0f);
2003 return !!memcmp("6d7d0a3d949da2e96f2aa010f65d8326", hex, sizeof(hex));
2006 fi # feat_yes MD5 && feat_no NOEXTMD5
2008 else
2009 echo '/* WANT_SSL=0 */' >> ${h}
2010 fi # feat_yes SSL
2012 if feat_yes SMTP; then
2013 echo '#define HAVE_SMTP' >> ${h}
2014 else
2015 echo '/* WANT_SMTP=0 */' >> ${h}
2018 if feat_yes POP3; then
2019 echo '#define HAVE_POP3' >> ${h}
2020 else
2021 echo '/* WANT_POP3=0 */' >> ${h}
2024 if feat_yes GSSAPI; then
2025 ${cat} > ${tmp2}.c << \!
2026 #include <gssapi/gssapi.h>
2027 int main(void){
2028 gss_import_name(0, 0, GSS_C_NT_HOSTBASED_SERVICE, 0);
2029 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
2030 return 0;
2033 ${sed} -e '1s/gssapi\///' < ${tmp2}.c > ${tmp3}.c
2035 if command -v krb5-config >/dev/null 2>&1; then
2036 i=`command -v krb5-config`
2037 GSS_LIBS="`CFLAGS= ${i} --libs gssapi`"
2038 GSS_INCS="`CFLAGS= ${i} --cflags`"
2039 i='GSS-API via krb5-config(1)'
2040 else
2041 GSS_LIBS='-lgssapi'
2042 GSS_INCS=
2043 i='GSS-API in gssapi/gssapi.h, libgssapi'
2045 if < ${tmp2}.c link_check gss \
2046 "${i}" '#define HAVE_GSSAPI' "${GSS_LIBS}" "${GSS_INCS}" ||\
2047 < ${tmp3}.c link_check gss \
2048 'GSS-API in gssapi.h, libgssapi' \
2049 '#define HAVE_GSSAPI
2050 #define GSSAPI_REG_INCLUDE' \
2051 '-lgssapi' ||\
2052 < ${tmp2}.c link_check gss 'GSS-API in libgssapi_krb5' \
2053 '#define HAVE_GSSAPI' \
2054 '-lgssapi_krb5' ||\
2055 < ${tmp3}.c link_check gss \
2056 'GSS-API in libgssapi, OpenBSD-style (pre 5.3)' \
2057 '#define HAVE_GSSAPI
2058 #define GSS_REG_INCLUDE' \
2059 '-lgssapi -lkrb5 -lcrypto' \
2060 '-I/usr/include/kerberosV' ||\
2061 < ${tmp2}.c link_check gss 'GSS-API in libgss' \
2062 '#define HAVE_GSSAPI' \
2063 '-lgss' ||\
2064 link_check gss 'GSS-API in libgssapi_krb5, old-style' \
2065 '#define HAVE_GSSAPI
2066 #define GSSAPI_OLD_STYLE' \
2067 '-lgssapi_krb5' << \!
2068 #include <gssapi/gssapi.h>
2069 #include <gssapi/gssapi_generic.h>
2070 int main(void){
2071 gss_import_name(0, 0, gss_nt_service_name, 0);
2072 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
2073 return 0;
2076 then
2078 else
2079 feat_bail_required GSSAPI
2081 else
2082 echo '/* WANT_GSSAPI=0 */' >> ${h}
2083 fi # feat_yes GSSAPI
2085 if feat_yes NETRC; then
2086 echo '#define HAVE_NETRC' >> ${h}
2087 else
2088 echo '/* WANT_NETRC=0 */' >> ${h}
2091 if feat_yes AGENT; then
2092 echo '#define HAVE_AGENT' >> ${h}
2093 else
2094 echo '/* WANT_AGENT=0 */' >> ${h}
2097 if feat_yes IDNA; then
2098 if link_check idna 'GNU Libidn' '#define HAVE_IDNA HAVE_IDNA_LIBIDNA' \
2099 '-lidn' << \!
2100 #include <idna.h>
2101 #include <idn-free.h>
2102 #include <stringprep.h>
2103 int main(void){
2104 char *utf8, *idna_ascii, *idna_utf8;
2106 utf8 = stringprep_locale_to_utf8("does.this.work");
2107 if (idna_to_ascii_8z(utf8, &idna_ascii, IDNA_USE_STD3_ASCII_RULES)
2108 != IDNA_SUCCESS)
2109 return 1;
2110 idn_free(idna_ascii);
2111 /* (Rather link check only here) */
2112 idna_utf8 = stringprep_convert(idna_ascii, "UTF-8", "de_DE");
2113 return 0;
2116 then
2118 elif link_check idna 'idnkit' '#define HAVE_IDNA HAVE_IDNA_IDNKIT' \
2119 '-lidnkit' << \!
2120 #include <stdio.h>
2121 #include <idn/api.h>
2122 #include <idn/result.h>
2123 int main(void){
2124 idn_result_t r;
2125 char ace_name[256];
2126 char local_name[256];
2128 r = idn_encodename(IDN_ENCODE_APP, "does.this.work", ace_name,
2129 sizeof(ace_name));
2130 if (r != idn_success) {
2131 fprintf(stderr, "idn_encodename failed: %s\n", idn_result_tostring(r));
2132 return 1;
2134 r = idn_decodename(IDN_DECODE_APP, ace_name, local_name, sizeof(local_name));
2135 if (r != idn_success) {
2136 fprintf(stderr, "idn_decodename failed: %s\n", idn_result_tostring(r));
2137 return 1;
2139 return 0;
2142 then
2144 else
2145 feat_bail_required IDNA
2148 if [ -n "${have_idna}" ]; then
2149 echo '#define HAVE_IDNA_LIBIDNA 0' >> ${h}
2150 echo '#define HAVE_IDNA_IDNKIT 1' >> ${h}
2152 else
2153 echo '/* WANT_IDNA=0 */' >> ${h}
2156 if feat_yes IMAP_SEARCH; then
2157 echo '#define HAVE_IMAP_SEARCH' >> ${h}
2158 else
2159 echo '/* WANT_IMAP_SEARCH=0 */' >> ${h}
2162 if feat_yes REGEX; then
2163 if link_check regex 'regular expressions' '#define HAVE_REGEX' << \!
2164 #include <regex.h>
2165 #include <stdlib.h>
2166 int main(void){
2167 int status;
2168 regex_t re;
2170 if (regcomp(&re, ".*bsd", REG_EXTENDED | REG_ICASE | REG_NOSUB) != 0)
2171 return 1;
2172 status = regexec(&re, "plan9", 0,NULL, 0);
2173 regfree(&re);
2174 return !(status == REG_NOMATCH);
2177 then
2179 else
2180 feat_bail_required REGEX
2182 else
2183 echo '/* WANT_REGEX=0 */' >> ${h}
2186 if feat_yes READLINE; then
2187 __edrdlib() {
2188 link_check readline "for readline(3) (${1})" \
2189 '#define HAVE_READLINE' "${1}" << \!
2190 #include <stdio.h>
2191 #include <readline/history.h>
2192 #include <readline/readline.h>
2193 int main(void){
2194 char *rl;
2195 HISTORY_STATE *hs;
2196 HIST_ENTRY **he;
2197 int i;
2199 using_history();
2200 read_history("");
2201 stifle_history(242);
2202 rl = readline("Enter a line:");
2203 if (rl && *rl)
2204 add_history(rl);
2205 write_history("");
2206 rl_extend_line_buffer(10);
2207 rl_point = rl_end = 10;
2208 rl_pre_input_hook = (rl_hook_func_t*)NULL;
2209 rl_forced_update_display();
2210 clear_history();
2211 hs = history_get_history_state();
2212 i = hs->length;
2213 he = history_list();
2214 if (i > 0)
2215 rl = he[0]->line;
2216 rl_free_line_state();
2217 rl_cleanup_after_signal();
2218 rl_reset_after_signal();
2219 return 0;
2224 __edrdlib -lreadline ||
2225 __edrdlib '-lreadline -ltermcap' || feat_bail_required READLINE
2228 if feat_yes MLE && [ -z "${have_readline}" ] &&
2229 [ -n "${have_c90amend1}" ]; then
2230 have_mle=1
2231 echo '#define HAVE_MLE' >> ${h}
2232 else
2233 feat_bail_required MLE
2234 echo '/* WANT_{READLINE,MLE}=0 */' >> ${h}
2237 # Generic have-a-line-editor switch for those who need it below
2238 if [ -n "${have_mle}" ] ||
2239 [ -n "${have_readline}" ]; then
2240 have_cle=1
2243 if [ -n "${have_cle}" ] && feat_yes HISTORY; then
2244 echo '#define HAVE_HISTORY' >> ${h}
2245 else
2246 echo '/* WANT_HISTORY=0 */' >> ${h}
2249 if [ -n "${have_mle}" ] && feat_yes KEY_BINDINGS; then
2250 echo '#define HAVE_KEY_BINDINGS' >> ${h}
2251 else
2252 echo '/* WANT_KEY_BINDINGS=0 */' >> ${h}
2255 if feat_yes TERMCAP; then
2256 __termcaplib() {
2257 link_check termcap "termcap(5) (via ${4})" \
2258 "#define HAVE_TERMCAP${3}" "${1}" << _EOT
2259 #include <stdio.h>
2260 #include <stdlib.h>
2261 ${2}
2262 #include <term.h>
2263 #define UNCONST(P) ((void*)(unsigned long)(void const*)(P))
2264 static int my_putc(int c){return putchar(c);}
2265 int main(void){
2266 char buf[1024+512], cmdbuf[2048], *cpb, *r1;
2267 int r2 = OK, r3 = ERR;
2269 tgetent(buf, getenv("TERM"));
2270 cpb = cmdbuf;
2271 r1 = tgetstr(UNCONST("cm"), &cpb);
2272 tgoto(r1, 1, 1);
2273 r2 = tgetnum(UNCONST("Co"));
2274 r3 = tgetflag(UNCONST("ut"));
2275 tputs("cr", 1, &my_putc);
2276 return (r1 == NULL || r2 == -1 || r3 == 0);
2278 _EOT
2281 __terminfolib() {
2282 link_check terminfo "terminfo(5) (via ${2})" \
2283 '#define HAVE_TERMCAP
2284 #define HAVE_TERMCAP_CURSES
2285 #define HAVE_TERMINFO' "${1}" << _EOT
2286 #include <stdio.h>
2287 #include <curses.h>
2288 #include <term.h>
2289 #define UNCONST(P) ((void*)(unsigned long)(void const*)(P))
2290 static int my_putc(int c){return putchar(c);}
2291 int main(void){
2292 int er, r0, r1, r2;
2293 char *r3, *tp;
2295 er = OK;
2296 r0 = setupterm(NULL, 1, &er);
2297 r1 = tigetflag(UNCONST("bce"));
2298 r2 = tigetnum(UNCONST("colors"));
2299 r3 = tigetstr(UNCONST("cr"));
2300 tp = tparm(r3, NULL);
2301 tputs(tp, 1, &my_putc);
2302 return (r0 == ERR || r1 == -1 || r2 == -2 || r2 == -1 ||
2303 r3 == (char*)-1 || r3 == NULL);
2305 _EOT
2308 if feat_yes TERMCAP_PREFER_TERMINFO; then
2309 __terminfolib -ltinfo -ltinfo ||
2310 __terminfolib -lcurses -lcurses ||
2311 __terminfolib -lcursesw -lcursesw ||
2312 feat_bail_required TERMCAP_PREFER_TERMINFO
2315 if [ -z "${have_terminfo}" ]; then
2316 __termcaplib -ltermcap '' '' '-ltermcap' ||
2317 __termcaplib -ltermcap '#include <curses.h>' '
2318 #define HAVE_TERMCAP_CURSES' \
2319 'curses.h / -ltermcap' ||
2320 __termcaplib -lcurses '#include <curses.h>' '
2321 #define HAVE_TERMCAP_CURSES' \
2322 'curses.h / -lcurses' ||
2323 __termcaplib -lcursesw '#include <curses.h>' '
2324 #define HAVE_TERMCAP_CURSES' \
2325 'curses.h / -lcursesw' ||
2326 feat_bail_required TERMCAP
2328 if [ -n "${have_termcap}" ]; then
2329 run_check tgetent_null \
2330 "tgetent(3) of termcap(5) takes NULL buffer" \
2331 "#define HAVE_TGETENT_NULL_BUF" << _EOT
2332 #include <stdio.h> /* For C89 NULL */
2333 #include <stdlib.h>
2334 #ifdef HAVE_TERMCAP_CURSES
2335 # include <curses.h>
2336 #endif
2337 #include <term.h>
2338 int main(void){
2339 tgetent(NULL, getenv("TERM"));
2340 return 0;
2342 _EOT
2345 else
2346 echo '/* WANT_TERMCAP=0 */' >> ${h}
2347 echo '/* WANT_TERMCAP_PREFER_TERMINFO=0 */' >> ${h}
2350 if feat_yes SPAM_SPAMC; then
2351 echo '#define HAVE_SPAM_SPAMC' >> ${h}
2352 if command -v spamc >/dev/null 2>&1; then
2353 echo "#define SPAM_SPAMC_PATH \"`command -v spamc`\"" >> ${h}
2355 else
2356 echo '/* WANT_SPAM_SPAMC=0 */' >> ${h}
2359 if feat_yes SPAM_SPAMD && [ -n "${have_af_unix}" ]; then
2360 echo '#define HAVE_SPAM_SPAMD' >> ${h}
2361 else
2362 feat_bail_required SPAM_SPAMD
2363 echo '/* WANT_SPAM_SPAMD=0 */' >> ${h}
2366 feat_def SPAM_FILTER
2368 if feat_yes SPAM_SPAMC || feat_yes SPAM_SPAMD || feat_yes SPAM_FILTER; then
2369 echo '#define HAVE_SPAM' >> ${h}
2370 else
2371 echo '/* HAVE_SPAM */' >> ${h}
2374 if feat_yes QUOTE_FOLD &&\
2375 [ -n "${have_c90amend1}" ] && [ -n "${have_wcwidth}" ]; then
2376 echo '#define HAVE_QUOTE_FOLD' >> ${h}
2377 else
2378 echo '/* WANT_QUOTE_FOLD=0 */' >> ${h}
2381 feat_def FILTER_HTML_TAGSOUP
2382 feat_def COLOUR
2383 feat_def DOTLOCK
2384 feat_def MD5
2385 feat_def NOMEMDBG
2387 ## Summarizing
2389 ${rm} -f ${tmp}
2390 squeeze_em ${inc} ${tmp}
2391 ${mv} ${tmp} ${inc}
2392 squeeze_em ${lib} ${tmp}
2393 ${mv} ${tmp} ${lib}
2395 # config.h
2396 ${mv} ${h} ${tmp}
2397 printf '#ifndef n_CONFIG_H\n# define n_CONFIG_H 1\n' > ${h}
2398 ${cat} ${tmp} >> ${h}
2399 ${rm} -f ${tmp}
2401 printf '\n/* The "feature string" */\n' >> ${h}
2402 printf '# if defined _ACCMACVAR_SOURCE || defined HAVE_AMALGAMATION\n' >> ${h}
2403 printf 'static char const _features[] = "MIME"\n' >> ${h}
2404 printf '# ifdef HAVE_SETLOCALE\n ",LOCALES"\n# endif\n' >> ${h}
2405 printf '# ifdef HAVE_C90AMEND1\n ",MULTIBYTE CHARSETS"\n# endif\n' >> ${h}
2406 printf '# ifdef HAVE_NL_LANGINFO\n ",TERMINAL CHARSET"\n# endif\n' >> ${h}
2407 printf '# ifdef HAVE_ICONV\n ",ICONV"\n# endif\n' >> ${h}
2408 printf '# ifdef HAVE_SOCKETS\n ",NETWORK"\n# endif\n' >> ${h}
2409 printf '# ifdef HAVE_SSL\n ",S/MIME,SSL/TLS"\n# endif\n' >> ${h}
2410 printf '# ifdef HAVE_SSL_ALL_ALGORITHMS\n ",SSL-ALL-ALGORITHMS"\n# endif\n'\
2411 >> ${h}
2412 printf '# ifdef HAVE_SMTP\n ",SMTP"\n# endif\n' >> ${h}
2413 printf '# ifdef HAVE_POP3\n ",POP3"\n# endif\n' >> ${h}
2414 printf '# ifdef HAVE_GSSAPI\n ",GSS-API"\n# endif\n' >> ${h}
2415 printf '# ifdef HAVE_MD5\n ",MD5 [APOP,CRAM-MD5]"\n# endif\n' >> ${h}
2416 printf '# ifdef HAVE_NETRC\n ",NETRC"\n# endif\n' >> ${h}
2417 printf '# ifdef HAVE_IDNA\n ",IDNA"\n# endif\n' >> ${h}
2418 printf '# ifdef HAVE_IMAP_SEARCH\n ",IMAP-SEARCH"\n# endif\n' >> ${h}
2419 printf '# ifdef HAVE_REGEX\n ",REGEX"\n# endif\n' >> ${h}
2420 printf '# ifdef HAVE_READLINE\n ",READLINE"\n# endif\n' >> ${h}
2421 printf '# ifdef HAVE_MLE\n ",MLE"\n# endif\n' >> ${h}
2422 printf '# ifdef HAVE_WCWIDTH\n " (WIDE GLYPHS)"\n# endif\n' >> ${h}
2423 printf '# ifdef HAVE_HISTORY\n ",HISTORY"\n# endif\n' >> ${h}
2424 printf '# ifdef HAVE_KEY_BINDINGS\n ",KEY-BINDINGS"\n# endif\n' >> ${h}
2425 printf '# ifdef HAVE_TERMCAP\n ",TERMCAP"\n# endif\n' >> ${h}
2426 printf '# ifdef HAVE_TERMINFO\n " (terminfo(5))"\n# endif\n' >> ${h}
2427 printf '# ifdef HAVE_SPAM_SPAMC\n ",SPAMC"\n# endif\n' >> ${h}
2428 printf '# ifdef HAVE_SPAM_SPAMD\n ",SPAMD"\n# endif\n' >> ${h}
2429 printf '# ifdef HAVE_SPAM_FILTER\n ",SPAMFILTER"\n# endif\n' >> ${h}
2430 printf '# ifdef HAVE_DOCSTRINGS\n ",DOCSTRINGS"\n# endif\n' >> ${h}
2431 printf '# ifdef HAVE_QUOTE_FOLD\n ",QUOTE-FOLD"\n# endif\n' >> ${h}
2432 printf '# ifdef HAVE_FILTER_HTML_TAGSOUP\n ",HTML-FILTER"\n# endif\n' >> ${h}
2433 printf '# ifdef HAVE_COLOUR\n ",COLOUR"\n# endif\n' >> ${h}
2434 printf '# ifdef HAVE_DOTLOCK\n ",DOTLOCK-FILES"\n# endif\n' >> ${h}
2435 printf '# ifdef HAVE_DEBUG\n ",DEBUG"\n# endif\n' >> ${h}
2436 printf '# ifdef HAVE_DEVEL\n ",DEVEL"\n# endif\n' >> ${h}
2437 printf '# ifdef HAVE_CROSS_BUILD\n ",CROSS-BUILD"\n# endif\n' >> ${h}
2438 printf ';\n# endif /* _ACCMACVAR_SOURCE || HAVE_AMALGAMATION */\n' >> ${h}
2440 # Create the real mk.mk
2441 # Note we cannout use explicit ./ filename prefix for source and object
2442 # pathnames because of a bug in bmake(1)
2443 ${rm} -rf ${tmp0}.* ${tmp0}*
2444 printf 'OBJ_SRC = ' >> ${mk}
2445 if feat_no AMALGAMATION; then
2446 for i in `printf '%s\n' *.c | ${sort}`; do
2447 if [ "${i}" = privsep.c ]; then
2448 continue
2450 printf "${i} " >> ${mk}
2451 done
2452 printf '\nAMALGAM_TARGET =\nAMALGAM_DEP =\n' >> ${mk}
2453 else
2454 printf 'main.c\nAMALGAM_TARGET = main.o\nAMALGAM_DEP = ' >> ${mk}
2456 printf '\n/* HAVE_AMALGAMATION: include sources */\n' >> ${h}
2457 printf '#elif _CONFIG_H + 0 == 1\n' >> ${h}
2458 printf '# undef _CONFIG_H\n' >> ${h}
2459 printf '# define _CONFIG_H 2\n' >> ${h}
2460 for i in `printf '%s\n' *.c | ${sort}`; do
2461 if [ "${i}" = "${j}" ] || [ "${i}" = main.c ] || \
2462 [ "${i}" = privsep.c ]; then
2463 continue
2465 printf "${i} " >> ${mk}
2466 printf "# include \"${i}\"\n" >> ${h}
2467 done
2468 echo >> ${mk}
2469 # tcc(1) fails on 2015-11-13 unless this #else clause existed
2470 echo '#else' >> ${h}
2473 printf '#endif /* n_CONFIG_H */\n' >> ${h}
2475 echo "LIBS = `${cat} ${lib}`" >> ${mk}
2476 echo "INCS = `${cat} ${inc}`" >> ${mk}
2477 echo >> ${mk}
2478 ${cat} ./mk-mk.in >> ${mk}
2480 ## Finished!
2482 ${cat} > ${tmp2}.c << \!
2483 #include "config.h"
2485 :The following optional features are enabled:
2486 #ifdef HAVE_SETLOCALE
2487 : + Locale support: Printable characters depend on the environment
2488 # ifdef HAVE_C90AMEND1
2489 : + Multibyte character support
2490 # endif
2491 # ifdef HAVE_NL_LANGINFO
2492 : + Automatic detection of terminal character set
2493 # endif
2494 #endif
2495 #ifdef HAVE_ICONV
2496 : + Character set conversion using iconv()
2497 #endif
2498 #ifdef HAVE_SOCKETS
2499 : + Network support
2500 #endif
2501 #ifdef HAVE_SSL
2502 # ifdef HAVE_OPENSSL
2503 : + S/MIME and SSL/TLS (OpenSSL)
2504 # endif
2505 # ifdef HAVE_SSL_ALL_ALGORITHMS
2506 : + + Support for more ("all") digest and cipher algorithms
2507 # endif
2508 #endif
2509 #ifdef HAVE_SMTP
2510 : + SMTP protocol
2511 #endif
2512 #ifdef HAVE_POP3
2513 : + POP3 protocol
2514 #endif
2515 #ifdef HAVE_GSSAPI
2516 : + GSS-API authentication
2517 #endif
2518 #ifdef HAVE_MD5
2519 : + MD5 message digest (APOP, CRAM-MD5)
2520 #endif
2521 #ifdef HAVE_NETRC
2522 : + .netrc file support
2523 #endif
2524 #ifdef HAVE_IDNA
2525 : + IDNA (internationalized domain names for applications) support
2526 #endif
2527 #ifdef HAVE_IMAP_SEARCH
2528 : + IMAP-style search expressions
2529 #endif
2530 #ifdef HAVE_REGEX
2531 : + Regular expression support (searches, conditional expressions etc.)
2532 #endif
2533 #if defined HAVE_READLINE || defined HAVE_MLE
2534 # ifdef HAVE_READLINE
2535 : + Command line editing via readline(3)
2536 # else
2537 # ifdef HAVE_WCWIDTH
2538 : + Command line editing via M(ailx)-L(ine)-E(ditor) (wide glyph support)
2539 # else
2540 : + Command line editing via M(ailx)-L(ine)-E(ditor) (no wide glyph support)
2541 # endif
2542 # endif
2543 # ifdef HAVE_HISTORY
2544 : + + History management
2545 # endif
2546 # ifdef HAVE_KEY_BINDINGS
2547 : + + Configurable key bindings
2548 # endif
2549 #endif
2550 #ifdef HAVE_TERMCAP
2551 # ifdef HAVE_TERMINFO
2552 : + Terminal capability queries (terminfo(5))
2553 # else
2554 : + Terminal capability queries (termcap(5))
2555 # endif
2556 #endif
2557 #ifdef HAVE_SPAM
2558 : + Spam management
2559 # ifdef HAVE_SPAM_SPAMC
2560 : + + Via spamc(1) (of spamassassin(1))
2561 # endif
2562 # ifdef HAVE_SPAM_SPAMD
2563 : + + Directly via spamd(1) (of spamassassin(1))
2564 # endif
2565 # ifdef HAVE_SPAM_FILTER
2566 : + + Via freely configurable *spam-filter-XY*s
2567 # endif
2568 #endif
2569 #ifdef HAVE_DOCSTRINGS
2570 : + Documentation summary strings
2571 #endif
2572 #ifdef HAVE_QUOTE_FOLD
2573 : + Extended *quote-fold*ing
2574 #endif
2575 #ifdef HAVE_FILTER_HTML_TAGSOUP
2576 : + Builtin HTML-to-text filter (for display purposes, primitive)
2577 #endif
2578 #ifdef HAVE_COLOUR
2579 : + Coloured message display (simple)
2580 #endif
2581 #ifdef HAVE_DOTLOCK
2582 : + Dotlock files and privilege-separated file dotlock program
2583 #endif
2585 :The following optional features are disabled:
2586 #ifndef HAVE_SETLOCALE
2587 : - Locale support: Only ASCII characters are recognized
2588 #endif
2589 # ifndef HAVE_C90AMEND1
2590 : - Multibyte character support
2591 # endif
2592 # ifndef HAVE_NL_LANGINFO
2593 : - Automatic detection of terminal character set
2594 # endif
2595 #ifndef HAVE_ICONV
2596 : - Character set conversion using iconv()
2597 : _ (Ooooh, no iconv(3), NO character set conversion possible! Really...)
2598 #endif
2599 #ifndef HAVE_SOCKETS
2600 : - Network support
2601 #endif
2602 #ifndef HAVE_SSL
2603 : - S/MIME and SSL/TLS
2604 #else
2605 # ifndef HAVE_SSL_ALL_ALGORITHMS
2606 : - Support for more S/MIME and SSL/TLS digest and cipher algorithms
2607 # endif
2608 #endif
2609 #ifndef HAVE_SMTP
2610 : - SMTP protocol
2611 #endif
2612 #ifndef HAVE_POP3
2613 : - POP3 protocol
2614 #endif
2615 #ifndef HAVE_GSSAPI
2616 : - GSS-API authentication
2617 #endif
2618 #ifndef HAVE_MD5
2619 : - MD5 message digest (APOP, CRAM-MD5)
2620 #endif
2621 #ifndef HAVE_NETRC
2622 : - .netrc file support
2623 #endif
2624 #ifndef HAVE_IDNA
2625 : - IDNA (internationalized domain names for applications) support
2626 #endif
2627 #ifndef HAVE_IMAP_SEARCH
2628 : - IMAP-style search expressions
2629 #endif
2630 #ifndef HAVE_REGEX
2631 : - Regular expression support
2632 #endif
2633 #if !defined HAVE_READLINE && !defined HAVE_MLE
2634 : - Command line editing and history
2635 #else
2636 # ifndef HAVE_HISTORY
2637 : + (Command line editing) - History management
2638 # endif
2639 # ifndef HAVE_KEY_BINDINGS
2640 : + (Command line editing) - Configurable key bindings
2641 # endif
2642 #endif
2643 #ifndef HAVE_TERMCAP
2644 : - Terminal capability queries
2645 #endif
2646 #ifndef HAVE_SPAM
2647 : - Spam management
2648 #endif
2649 #ifndef HAVE_DOCSTRINGS
2650 : - Documentation summary strings
2651 #endif
2652 #ifndef HAVE_QUOTE_FOLD
2653 : - Extended *quote-fold*ing
2654 #endif
2655 #ifndef HAVE_FILTER_HTML_TAGSOUP
2656 : - Builtin HTML-to-text filter (for display purposes, primitive)
2657 #endif
2658 #ifndef HAVE_COLOUR
2659 : - Coloured message display (simple)
2660 #endif
2661 #ifndef HAVE_DOTLOCK
2662 : - Dotlock files and privilege-separated file dotlock program
2663 #endif
2665 #if !defined HAVE_FNMATCH || !defined HAVE_FCHDIR ||\
2666 defined HAVE_DEBUG || defined HAVE_DEVEL
2667 :Remarks:
2668 # ifndef HAVE_FNMATCH
2669 : . The function fnmatch(3) could not be found.
2670 : _ Filename patterns like wildcard are not supported on your system.
2671 # endif
2672 # ifndef HAVE_FCHDIR
2673 : . The function fchdir(2) could not be found. We will use chdir(2)
2674 : _ instead. This is not a problem unless the current working
2675 : _ directory is changed while this program is inside of it.
2676 # endif
2677 # ifdef HAVE_DEBUG
2678 : . Debug enabled binary: not meant to be used by end-users: THANKS!
2679 # endif
2680 # ifdef HAVE_DEVEL
2681 : . Computers do not blunder.
2682 # endif
2684 #endif /* Remarks */
2685 :Setup:
2686 : . System-wide resource file: SYSCONFDIR/SYSCONFRC
2687 : . bindir: BINDIR
2688 #ifdef HAVE_DOTLOCK
2689 : . libexecdir: LIBEXECDIR
2690 #endif
2691 : . mandir: MANDIR
2692 : . sendmail(1): VAL_SENDMAIL (argv[0] = VAL_SENDMAIL_PROGNAME)
2693 : . Mail spool directory: MAILSPOOL
2697 ${make} -f ${makefile} ${tmp2}.x
2698 < ${tmp2}.x ${sed} -e '/^[^:]/d; /^$/d; s/^://' |
2699 while read l; do
2700 msg "${l}"
2701 done
2703 # s-it-mode