mk-conf.sh:path_check(): skip any "fakeroot" path (Hilko Bengen)
[s-mailx.git] / mk-conf.sh
blob8d5b1a404204ecb7799a56ec7188634676155bfd
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 'v?snprintf(3)' << \!
1272 #include <stdarg.h>
1273 #include <stdio.h>
1274 static void dome(char *buf, ...){
1275 va_list ap;
1277 va_start(ap, buf);
1278 vsnprintf(buf, 20, "%s", ap);
1279 va_end(ap);
1280 return;
1282 int main(void){
1283 char b[20];
1285 snprintf(b, sizeof b, "%s", "string");
1286 dome(b, "string");
1287 return 0;
1290 then
1292 else
1293 msg 'ERROR: we require the snprintf(3) and vsnprintf(3) functions.'
1294 config_exit 1
1297 if link_check environ 'environ(3)' << \!
1298 #include <stdio.h> /* For C89 NULL */
1299 int main(void){
1300 extern char **environ;
1302 return environ[0] == NULL;
1305 then
1307 else
1308 msg 'ERROR: we require the environ(3) array for subprocess control.'
1309 config_exit 1
1312 if link_check setenv '(un)?setenv(3)' '#define HAVE_SETENV' << \!
1313 #include <stdlib.h>
1314 int main(void){
1315 setenv("s-mailx", "i want to see it cute!", 1);
1316 unsetenv("s-mailx");
1317 return 0;
1320 then
1322 elif link_check setenv 'putenv(3)' '#define HAVE_PUTENV' << \!
1323 #include <stdlib.h>
1324 int main(void){
1325 putenv("s-mailx=i want to see it cute!");
1326 return 0;
1329 then
1331 else
1332 msg 'ERROR: we require either the setenv(3) or putenv(3) functions.'
1333 config_exit 1
1336 if link_check termios 'termios.h and tc*(3) family' << \!
1337 #include <termios.h>
1338 int main(void){
1339 struct termios tios;
1341 tcgetattr(0, &tios);
1342 tcsetattr(0, TCSADRAIN | TCSAFLUSH, &tios);
1343 return 0;
1346 then
1348 else
1349 msg 'ERROR: we require termios.h and the tc*() family of functions.'
1350 msg 'That much Unix we indulge ourselfs.'
1351 config_exit 1
1354 ## optional stuff
1356 run_check pathconf 'f?pathconf(2)' '#define HAVE_PATHCONF' << \!
1357 #include <unistd.h>
1358 #include <errno.h>
1359 int main(void){
1360 int rv = 0;
1362 errno = 0;
1363 rv |= !(pathconf(".", _PC_NAME_MAX) >= 0 || errno == 0 || errno != ENOSYS);
1364 errno = 0;
1365 rv |= !(pathconf(".", _PC_PATH_MAX) >= 0 || errno == 0 || errno != ENOSYS);
1367 /* Only link check */
1368 fpathconf(0, _PC_NAME_MAX);
1370 return rv;
1374 run_check pipe2 'pipe2(2)' '#define HAVE_PIPE2' << \!
1375 #include <fcntl.h>
1376 #include <unistd.h>
1377 # include <errno.h>
1378 int main(void){
1379 int fds[2];
1381 if(!pipe2(fds, O_CLOEXEC) || errno != ENOSYS)
1382 return 0;
1383 return 1;
1387 # We use this only then for now (need NOW+1)
1388 run_check utimensat 'utimensat(2)' '#define HAVE_UTIMENSAT' << \!
1389 #include <fcntl.h> /* For AT_* */
1390 #include <sys/stat.h>
1391 # include <errno.h>
1392 int main(void){
1393 struct timespec ts[2];
1395 ts[0].tv_nsec = UTIME_NOW;
1396 ts[1].tv_nsec = UTIME_OMIT;
1397 if(!utimensat(AT_FDCWD, "", ts, 0) || errno != ENOSYS)
1398 return 0;
1399 return 1;
1405 # XXX Add POSIX check once standardized
1406 if link_check posix_random 'arc4random(3)' '#define HAVE_POSIX_RANDOM 0' << \!
1407 #include <stdlib.h>
1408 int main(void){
1409 arc4random();
1410 return 0;
1413 then
1415 elif [ -n "${have_no_subsecond_time}" ]; then
1416 msg 'ERROR: %s %s' 'without a native random' \
1417 'one of clock_gettime(2) and gettimeofday(2) is required.'
1418 config_exit 1
1421 link_check putc_unlocked 'putc_unlocked(3)' '#define HAVE_PUTC_UNLOCKED' <<\!
1422 #include <stdio.h>
1423 int main(void){
1424 putc_unlocked('@', stdout);
1425 return 0;
1429 link_check fchdir 'fchdir(3)' '#define HAVE_FCHDIR' << \!
1430 #include <unistd.h>
1431 int main(void){
1432 fchdir(0);
1433 return 0;
1437 if run_check realpath 'realpath(3)' '#define HAVE_REALPATH' << \!
1438 #include <stdlib.h>
1439 int main(void){
1440 char x_buf[4096], *x = realpath(".", x_buf);
1442 return (x != NULL) ? 0 : 1;
1445 then
1446 if run_check realpath_malloc 'realpath(3) takes NULL' \
1447 '#define HAVE_REALPATH_NULL' << \!
1448 #include <stdlib.h>
1449 int main(void){
1450 char *x = realpath(".", NULL);
1452 if(x != NULL)
1453 free(x);
1454 return (x != NULL) ? 0 : 1;
1457 then
1462 ## optional and selectable
1464 if feat_no NOALLOCA; then
1465 # Due to NetBSD PR lib/47120 it seems best not to use non-cc-builtin
1466 # versions of alloca(3) since modern compilers just can't be trusted
1467 # not to overoptimize and silently break some code
1468 run_check alloca '__builtin_alloca()' \
1469 '#define HAVE_ALLOCA __builtin_alloca' << \!
1470 #include <stdio.h> /* For C89 NULL */
1471 int main(void){
1472 void *vp = __builtin_alloca(1);
1474 return (vp != NULL);
1479 if feat_yes DOTLOCK; then
1480 if run_check readlink 'readlink(2)' << \!
1481 #include <unistd.h>
1482 # include <errno.h>
1483 int main(void){
1484 char buf[128];
1486 if(!readlink("here", buf, sizeof buf) || errno != ENOSYS)
1487 return 0;
1488 return 1;
1491 then
1493 else
1494 feat_bail_required DOTLOCK
1498 if feat_yes DOTLOCK; then
1499 if run_check fchown 'fchown(2)' << \!
1500 #include <unistd.h>
1501 # include <errno.h>
1502 int main(void){
1503 if(!fchown(0, 0, 0) || errno != ENOSYS)
1504 return 0;
1505 return 1;
1508 then
1510 else
1511 feat_bail_required DOTLOCK
1515 ## Now it is the time to fork away the BASE_ series
1517 ${rm} -f ${tmp}
1518 squeeze_em ${inc} ${tmp}
1519 ${mv} ${tmp} ${inc}
1520 squeeze_em ${lib} ${tmp}
1521 ${mv} ${tmp} ${lib}
1523 echo "BASE_LIBS = `${cat} ${lib}`" >> ${mk}
1524 echo "BASE_INCS = `${cat} ${inc}`" >> ${mk}
1526 ## The remains are expected to be used only by the main MUA binary!
1528 link_check setlocale 'setlocale(3)' '#define HAVE_SETLOCALE' << \!
1529 #include <locale.h>
1530 int main(void){
1531 setlocale(LC_ALL, "");
1532 return 0;
1536 if [ "${have_setlocale}" = yes ]; then
1537 link_check c90amend1 'ISO/IEC 9899:1990/Amendment 1:1995' \
1538 '#define HAVE_C90AMEND1' << \!
1539 #include <limits.h>
1540 #include <stdlib.h>
1541 #include <wchar.h>
1542 #include <wctype.h>
1543 int main(void){
1544 char mbb[MB_LEN_MAX + 1];
1545 wchar_t wc;
1547 iswprint(L'c');
1548 towupper(L'c');
1549 mbtowc(&wc, "x", 1);
1550 mbrtowc(&wc, "x", 1, NULL);
1551 wctomb(mbb, wc);
1552 return (mblen("\0", 1) == 0);
1556 if [ "${have_c90amend1}" = yes ]; then
1557 link_check wcwidth 'wcwidth(3)' '#define HAVE_WCWIDTH' << \!
1558 #include <wchar.h>
1559 int main(void){
1560 wcwidth(L'c');
1561 return 0;
1566 link_check nl_langinfo 'nl_langinfo(3)' '#define HAVE_NL_LANGINFO' << \!
1567 #include <langinfo.h>
1568 #include <stdlib.h>
1569 int main(void){
1570 nl_langinfo(DAY_1);
1571 return (nl_langinfo(CODESET) == NULL);
1574 fi # have_setlocale
1576 link_check fnmatch 'fnmatch(3)' '#define HAVE_FNMATCH' << \!
1577 #include <fnmatch.h>
1578 int main(void){
1579 return (fnmatch("*", ".", FNM_PATHNAME | FNM_PERIOD) == FNM_NOMATCH);
1583 link_check dirent_d_type 'struct dirent.d_type' '#define HAVE_DIRENT_TYPE' << \!
1584 #include <dirent.h>
1585 int main(void){
1586 struct dirent de;
1587 return !(de.d_type == DT_UNKNOWN ||
1588 de.d_type == DT_DIR || de.d_type == DT_LNK);
1592 ## optional and selectable
1594 if feat_yes ICONV; then
1595 ${cat} > ${tmp2}.c << \!
1596 #include <stdio.h> /* For C89 NULL */
1597 #include <iconv.h>
1598 int main(void){
1599 iconv_t id;
1601 id = iconv_open("foo", "bar");
1602 iconv(id, NULL, NULL, NULL, NULL);
1603 iconv_close(id);
1604 return 0;
1607 < ${tmp2}.c link_check iconv 'iconv(3) functionality' \
1608 '#define HAVE_ICONV' ||
1609 < ${tmp2}.c link_check iconv 'iconv(3) functionality (via -liconv)' \
1610 '#define HAVE_ICONV' '-liconv' ||
1611 feat_bail_required ICONV
1612 else
1613 echo '/* WANT_ICONV=0 */' >> ${h}
1614 fi # feat_yes ICONV
1616 if feat_yes SOCKETS || feat_yes SPAM_SPAMD; then
1617 ${cat} > ${tmp2}.c << \!
1618 #include <sys/types.h>
1619 #include <sys/socket.h>
1620 #include <sys/un.h>
1621 # include <errno.h>
1622 int main(void){
1623 struct sockaddr_un soun;
1625 if(socket(AF_UNIX, SOCK_STREAM, 0) == -1 && errno == ENOSYS)
1626 return 1;
1627 if(connect(0, (struct sockaddr*)&soun, 0) == -1 && errno == ENOSYS)
1628 return 1;
1629 if(shutdown(0, SHUT_RD | SHUT_WR | SHUT_RDWR) == -1 && errno == ENOSYS)
1630 return 1;
1631 return 0;
1635 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets' \
1636 '#define HAVE_UNIX_SOCKETS' ||
1637 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets (via -lnsl)' \
1638 '#define HAVE_UNIX_SOCKETS' '-lnsl' ||
1639 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets (via -lsocket -lnsl)' \
1640 '#define HAVE_UNIX_SOCKETS' '-lsocket -lnsl'
1643 if feat_yes SOCKETS; then
1644 ${cat} > ${tmp2}.c << \!
1645 #include "config.h"
1646 #include <sys/types.h>
1647 #include <sys/socket.h>
1648 #include <netinet/in.h>
1649 # include <errno.h>
1650 int main(void){
1651 struct sockaddr s;
1653 if(socket(AF_INET, SOCK_STREAM, 0) == -1 && errno == ENOSYS)
1654 return 1;
1655 if(connect(0, &s, 0) == -1 && errno == ENOSYS)
1656 return 1;
1657 return 0;
1661 < ${tmp2}.c run_check sockets 'sockets' \
1662 '#define HAVE_SOCKETS' ||
1663 < ${tmp2}.c run_check sockets 'sockets (via -lnsl)' \
1664 '#define HAVE_SOCKETS' '-lnsl' ||
1665 < ${tmp2}.c run_check sockets 'sockets (via -lsocket -lnsl)' \
1666 '#define HAVE_SOCKETS' '-lsocket -lnsl' ||
1667 feat_bail_required SOCKETS
1668 else
1669 echo '/* WANT_SOCKETS=0 */' >> ${h}
1670 fi # feat_yes SOCKETS
1672 if feat_yes SOCKETS; then
1673 link_check getaddrinfo 'getaddrinfo(3)' \
1674 '#define HAVE_GETADDRINFO' << \!
1675 #include "config.h"
1676 #include <sys/types.h>
1677 #include <sys/socket.h>
1678 #include <stdio.h>
1679 #include <netdb.h>
1680 int main(void){
1681 struct addrinfo a, *ap;
1682 int lrv;
1684 switch((lrv = getaddrinfo("foo", "0", &a, &ap))){
1685 case EAI_NONAME:
1686 case EAI_SERVICE:
1687 default:
1688 fprintf(stderr, "%s\n", gai_strerror(lrv));
1689 case 0:
1690 break;
1692 return 0;
1697 if feat_yes SOCKETS && [ -z "${have_getaddrinfo}" ]; then
1698 compile_check arpa_inet_h '<arpa/inet.h>' \
1699 '#define HAVE_ARPA_INET_H' << \!
1700 #include "config.h"
1701 #include <sys/types.h>
1702 #include <sys/socket.h>
1703 #include <netdb.h>
1704 #include <netinet/in.h>
1705 #include <arpa/inet.h>
1708 ${cat} > ${tmp2}.c << \!
1709 #include "config.h"
1710 #include <sys/types.h>
1711 #include <sys/socket.h>
1712 #include <stdio.h>
1713 #include <string.h>
1714 #include <netdb.h>
1715 #include <netinet/in.h>
1716 #ifdef HAVE_ARPA_INET_H
1717 #include <arpa/inet.h>
1718 #endif
1719 int main(void){
1720 struct sockaddr_in servaddr;
1721 unsigned short portno;
1722 struct servent *ep;
1723 struct hostent *hp;
1724 struct in_addr **pptr;
1726 portno = 0;
1727 if((ep = getservbyname("POPPY-PORT", "tcp")) != NULL)
1728 portno = (unsigned short)ep->s_port;
1730 if((hp = gethostbyname("POPPY-HOST")) != NULL){
1731 pptr = (struct in_addr**)hp->h_addr_list;
1732 if(hp->h_addrtype != AF_INET)
1733 fprintf(stderr, "au\n");
1734 }else{
1735 switch(h_errno){
1736 case HOST_NOT_FOUND:
1737 case TRY_AGAIN:
1738 case NO_RECOVERY:
1739 case NO_DATA:
1740 break;
1741 default:
1742 fprintf(stderr, "au\n");
1743 break;
1747 memset(&servaddr, 0, sizeof servaddr);
1748 servaddr.sin_family = AF_INET;
1749 servaddr.sin_port = htons(portno);
1750 memcpy(&servaddr.sin_addr, *pptr, sizeof(struct in_addr));
1751 fprintf(stderr, "Would connect to %s:%d ...\n",
1752 inet_ntoa(**pptr), (int)portno);
1753 return 0;
1757 < ${tmp2}.c link_check gethostbyname 'get(serv|host)byname(3)' ||
1758 < ${tmp2}.c link_check gethostbyname \
1759 'get(serv|host)byname(3) (via -nsl)' '' '-lnsl' ||
1760 < ${tmp2}.c link_check gethostbyname \
1761 'get(serv|host)byname(3) (via -lsocket -nsl)' \
1762 '' '-lsocket -lnsl' ||
1763 feat_bail_required SOCKETS
1766 feat_yes SOCKETS &&
1767 run_check setsockopt 'setsockopt(2)' '#define HAVE_SETSOCKOPT' << \!
1768 #include <sys/socket.h>
1769 #include <stdlib.h>
1770 # include <errno.h>
1771 int main(void){
1772 int sockfd = 3;
1774 if(setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, NULL, 0) == -1 &&
1775 errno == ENOSYS)
1776 return 1;
1777 return 0;
1781 feat_yes SOCKETS && [ -n "${have_setsockopt}" ] &&
1782 link_check so_sndtimeo 'SO_SNDTIMEO' '#define HAVE_SO_SNDTIMEO' << \!
1783 #include <sys/socket.h>
1784 #include <stdlib.h>
1785 int main(void){
1786 struct timeval tv;
1787 int sockfd = 3;
1789 tv.tv_sec = 42;
1790 tv.tv_usec = 21;
1791 setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof tv);
1792 setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof tv);
1793 return 0;
1797 feat_yes SOCKETS && [ -n "${have_setsockopt}" ] &&
1798 link_check so_linger 'SO_LINGER' '#define HAVE_SO_LINGER' << \!
1799 #include <sys/socket.h>
1800 #include <stdlib.h>
1801 int main(void){
1802 struct linger li;
1803 int sockfd = 3;
1805 li.l_onoff = 1;
1806 li.l_linger = 42;
1807 setsockopt(sockfd, SOL_SOCKET, SO_LINGER, &li, sizeof li);
1808 return 0;
1812 if feat_yes SSL; then
1813 if link_check openssl 'OpenSSL (new style *_client_method(3ssl))' \
1814 '#define HAVE_SSL
1815 #define HAVE_OPENSSL 10100' '-lssl -lcrypto' << \!
1816 #include <openssl/ssl.h>
1817 #include <openssl/err.h>
1818 #include <openssl/x509v3.h>
1819 #include <openssl/x509.h>
1820 #include <openssl/rand.h>
1821 #ifdef OPENSSL_NO_TLS1 /* TODO only deduced from OPENSSL_NO_SSL[23]! */
1822 # error We need TLSv1.
1823 #endif
1824 int main(void){
1825 SSL_CTX *ctx = SSL_CTX_new(TLS_client_method());
1827 SSL_CTX_free(ctx);
1828 PEM_read_PrivateKey(0, 0, 0, 0);
1829 return 0;
1832 then
1834 elif link_check openssl 'OpenSSL (old style *_client_method(3ssl))' \
1835 '#define HAVE_SSL
1836 #define HAVE_OPENSSL 10000' '-lssl -lcrypto' << \!
1837 #include <openssl/ssl.h>
1838 #include <openssl/err.h>
1839 #include <openssl/x509v3.h>
1840 #include <openssl/x509.h>
1841 #include <openssl/rand.h>
1842 #if defined OPENSSL_NO_SSL3 &&\
1843 defined OPENSSL_NO_TLS1 /* TODO only deduced from OPENSSL_NO_SSL[23]! */
1844 # error We need one of SSLv3 and TLSv1.
1845 #endif
1846 int main(void){
1847 SSL_CTX *ctx = SSL_CTX_new(SSLv23_client_method());
1849 SSL_CTX_free(ctx);
1850 PEM_read_PrivateKey(0, 0, 0, 0);
1851 return 0;
1854 then
1856 else
1857 feat_bail_required SSL
1860 if [ "${have_openssl}" = 'yes' ]; then
1861 compile_check stack_of 'OpenSSL STACK_OF()' \
1862 '#define HAVE_OPENSSL_STACK_OF' << \!
1863 #include <stdio.h> /* For C89 NULL */
1864 #include <openssl/ssl.h>
1865 #include <openssl/err.h>
1866 #include <openssl/x509v3.h>
1867 #include <openssl/x509.h>
1868 #include <openssl/rand.h>
1869 int main(void){
1870 STACK_OF(GENERAL_NAME) *gens = NULL;
1872 printf("%p", gens); /* to use it */
1873 return 0;
1877 link_check ossl_conf 'OpenSSL_modules_load_file() support' \
1878 '#define HAVE_OPENSSL_CONFIG' << \!
1879 #include <stdio.h> /* For C89 NULL */
1880 #include <openssl/conf.h>
1881 int main(void){
1882 CONF_modules_load_file(NULL, NULL, CONF_MFLAGS_IGNORE_MISSING_FILE);
1883 CONF_modules_free();
1884 return 0;
1888 link_check ossl_conf_ctx 'OpenSSL SSL_CONF_CTX support' \
1889 '#define HAVE_OPENSSL_CONF_CTX' << \!
1890 #include "config.h"
1891 #include <openssl/ssl.h>
1892 #include <openssl/err.h>
1893 int main(void){
1894 #if HAVE_OPENSSL < 10100
1895 SSL_CTX *ctx = SSL_CTX_new(SSLv23_client_method());
1896 #else
1897 SSL_CTX *ctx = SSL_CTX_new(TLS_client_method());
1898 #endif
1899 SSL_CONF_CTX *cctx = SSL_CONF_CTX_new();
1901 SSL_CONF_CTX_set_flags(cctx,
1902 SSL_CONF_FLAG_FILE | SSL_CONF_FLAG_CLIENT |
1903 SSL_CONF_FLAG_CERTIFICATE | SSL_CONF_FLAG_SHOW_ERRORS);
1904 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx);
1905 SSL_CONF_cmd(cctx, "Protocol", "ALL");
1906 SSL_CONF_CTX_finish(cctx);
1907 SSL_CONF_CTX_free(cctx);
1908 SSL_CTX_free(ctx);
1909 return 0;
1913 link_check rand_egd 'OpenSSL RAND_egd(3ssl)' \
1914 '#define HAVE_OPENSSL_RAND_EGD' << \!
1915 #include <openssl/rand.h>
1916 int main(void){
1917 return RAND_egd("some.where") > 0;
1921 if feat_yes SSL_ALL_ALGORITHMS; then
1922 if link_check ssl_all_algo 'OpenSSL all-algorithms support' \
1923 '#define HAVE_SSL_ALL_ALGORITHMS' << \!
1924 #include <openssl/evp.h>
1925 int main(void){
1926 OpenSSL_add_all_algorithms();
1927 EVP_get_cipherbyname("two cents i never exist");
1928 EVP_cleanup();
1929 return 0;
1932 then
1934 else
1935 feat_bail_required SSL_ALL_ALGORITHMS
1937 fi # SSL_ALL_ALGORITHMS
1939 if feat_yes MD5 && feat_no NOEXTMD5; then
1940 run_check openssl_md5 'MD5 digest in OpenSSL' \
1941 '#define HAVE_OPENSSL_MD5' << \!
1942 #include <stdlib.h>
1943 #include <string.h>
1944 #include <openssl/md5.h>
1945 int main(void){
1946 char const dat[] = "abrakadabrafidibus";
1947 char dig[16], hex[16 * 2];
1948 MD5_CTX ctx;
1949 size_t i, j;
1951 memset(dig, 0, sizeof(dig));
1952 memset(hex, 0, sizeof(hex));
1953 MD5_Init(&ctx);
1954 MD5_Update(&ctx, dat, sizeof(dat) - 1);
1955 MD5_Final(dig, &ctx);
1957 #define hexchar(n) ((n) > 9 ? (n) - 10 + 'a' : (n) + '0')
1958 for(i = 0; i < sizeof(hex) / 2; i++){
1959 j = i << 1;
1960 hex[j] = hexchar((dig[i] & 0xf0) >> 4);
1961 hex[++j] = hexchar(dig[i] & 0x0f);
1963 return !!memcmp("6d7d0a3d949da2e96f2aa010f65d8326", hex, sizeof(hex));
1966 fi # feat_yes MD5 && feat_no NOEXTMD5
1968 else
1969 echo '/* WANT_SSL=0 */' >> ${h}
1970 fi # feat_yes SSL
1972 if feat_yes SMTP; then
1973 echo '#define HAVE_SMTP' >> ${h}
1974 else
1975 echo '/* WANT_SMTP=0 */' >> ${h}
1978 if feat_yes POP3; then
1979 echo '#define HAVE_POP3' >> ${h}
1980 else
1981 echo '/* WANT_POP3=0 */' >> ${h}
1984 if feat_yes GSSAPI; then
1985 ${cat} > ${tmp2}.c << \!
1986 #include <gssapi/gssapi.h>
1987 int main(void){
1988 gss_import_name(0, 0, GSS_C_NT_HOSTBASED_SERVICE, 0);
1989 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
1990 return 0;
1993 ${sed} -e '1s/gssapi\///' < ${tmp2}.c > ${tmp3}.c
1995 if command -v krb5-config >/dev/null 2>&1; then
1996 i=`command -v krb5-config`
1997 GSS_LIBS="`CFLAGS= ${i} --libs gssapi`"
1998 GSS_INCS="`CFLAGS= ${i} --cflags`"
1999 i='GSS-API via krb5-config(1)'
2000 else
2001 GSS_LIBS='-lgssapi'
2002 GSS_INCS=
2003 i='GSS-API in gssapi/gssapi.h, libgssapi'
2005 if < ${tmp2}.c link_check gss \
2006 "${i}" '#define HAVE_GSSAPI' "${GSS_LIBS}" "${GSS_INCS}" ||\
2007 < ${tmp3}.c link_check gss \
2008 'GSS-API in gssapi.h, libgssapi' \
2009 '#define HAVE_GSSAPI
2010 #define GSSAPI_REG_INCLUDE' \
2011 '-lgssapi' ||\
2012 < ${tmp2}.c link_check gss 'GSS-API in libgssapi_krb5' \
2013 '#define HAVE_GSSAPI' \
2014 '-lgssapi_krb5' ||\
2015 < ${tmp3}.c link_check gss \
2016 'GSS-API in libgssapi, OpenBSD-style (pre 5.3)' \
2017 '#define HAVE_GSSAPI
2018 #define GSS_REG_INCLUDE' \
2019 '-lgssapi -lkrb5 -lcrypto' \
2020 '-I/usr/include/kerberosV' ||\
2021 < ${tmp2}.c link_check gss 'GSS-API in libgss' \
2022 '#define HAVE_GSSAPI' \
2023 '-lgss' ||\
2024 link_check gss 'GSS-API in libgssapi_krb5, old-style' \
2025 '#define HAVE_GSSAPI
2026 #define GSSAPI_OLD_STYLE' \
2027 '-lgssapi_krb5' << \!
2028 #include <gssapi/gssapi.h>
2029 #include <gssapi/gssapi_generic.h>
2030 int main(void){
2031 gss_import_name(0, 0, gss_nt_service_name, 0);
2032 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
2033 return 0;
2036 then
2038 else
2039 feat_bail_required GSSAPI
2041 else
2042 echo '/* WANT_GSSAPI=0 */' >> ${h}
2043 fi # feat_yes GSSAPI
2045 if feat_yes NETRC; then
2046 echo '#define HAVE_NETRC' >> ${h}
2047 else
2048 echo '/* WANT_NETRC=0 */' >> ${h}
2051 if feat_yes AGENT; then
2052 echo '#define HAVE_AGENT' >> ${h}
2053 else
2054 echo '/* WANT_AGENT=0 */' >> ${h}
2057 if feat_yes IDNA; then
2058 if link_check idna 'GNU Libidn' '#define HAVE_IDNA HAVE_IDNA_LIBIDNA' \
2059 '-lidn' << \!
2060 #include <idna.h>
2061 #include <idn-free.h>
2062 #include <stringprep.h>
2063 int main(void){
2064 char *utf8, *idna_ascii, *idna_utf8;
2066 utf8 = stringprep_locale_to_utf8("does.this.work");
2067 if (idna_to_ascii_8z(utf8, &idna_ascii, IDNA_USE_STD3_ASCII_RULES)
2068 != IDNA_SUCCESS)
2069 return 1;
2070 idn_free(idna_ascii);
2071 /* (Rather link check only here) */
2072 idna_utf8 = stringprep_convert(idna_ascii, "UTF-8", "de_DE");
2073 return 0;
2076 then
2078 elif link_check idna 'idnkit' '#define HAVE_IDNA HAVE_IDNA_IDNKIT' \
2079 '-lidnkit' << \!
2080 #include <stdio.h>
2081 #include <idn/api.h>
2082 #include <idn/result.h>
2083 int main(void){
2084 idn_result_t r;
2085 char ace_name[256];
2086 char local_name[256];
2088 r = idn_encodename(IDN_ENCODE_APP, "does.this.work", ace_name,
2089 sizeof(ace_name));
2090 if (r != idn_success) {
2091 fprintf(stderr, "idn_encodename failed: %s\n", idn_result_tostring(r));
2092 return 1;
2094 r = idn_decodename(IDN_DECODE_APP, ace_name, local_name, sizeof(local_name));
2095 if (r != idn_success) {
2096 fprintf(stderr, "idn_decodename failed: %s\n", idn_result_tostring(r));
2097 return 1;
2099 return 0;
2102 then
2104 else
2105 feat_bail_required IDNA
2108 if [ -n "${have_idna}" ]; then
2109 echo '#define HAVE_IDNA_LIBIDNA 0' >> ${h}
2110 echo '#define HAVE_IDNA_IDNKIT 1' >> ${h}
2112 else
2113 echo '/* WANT_IDNA=0 */' >> ${h}
2116 if feat_yes IMAP_SEARCH; then
2117 echo '#define HAVE_IMAP_SEARCH' >> ${h}
2118 else
2119 echo '/* WANT_IMAP_SEARCH=0 */' >> ${h}
2122 if feat_yes REGEX; then
2123 if link_check regex 'regular expressions' '#define HAVE_REGEX' << \!
2124 #include <regex.h>
2125 #include <stdlib.h>
2126 int main(void){
2127 int status;
2128 regex_t re;
2130 if (regcomp(&re, ".*bsd", REG_EXTENDED | REG_ICASE | REG_NOSUB) != 0)
2131 return 1;
2132 status = regexec(&re, "plan9", 0,NULL, 0);
2133 regfree(&re);
2134 return !(status == REG_NOMATCH);
2137 then
2139 else
2140 feat_bail_required REGEX
2142 else
2143 echo '/* WANT_REGEX=0 */' >> ${h}
2146 if feat_yes READLINE; then
2147 __edrdlib() {
2148 link_check readline "for readline(3) (${1})" \
2149 '#define HAVE_READLINE' "${1}" << \!
2150 #include <stdio.h>
2151 #include <readline/history.h>
2152 #include <readline/readline.h>
2153 int main(void){
2154 char *rl;
2155 HISTORY_STATE *hs;
2156 HIST_ENTRY **he;
2157 int i;
2159 using_history();
2160 read_history("");
2161 stifle_history(242);
2162 rl = readline("Enter a line:");
2163 if (rl && *rl)
2164 add_history(rl);
2165 write_history("");
2166 rl_extend_line_buffer(10);
2167 rl_point = rl_end = 10;
2168 rl_pre_input_hook = (rl_hook_func_t*)NULL;
2169 rl_forced_update_display();
2170 clear_history();
2171 hs = history_get_history_state();
2172 i = hs->length;
2173 he = history_list();
2174 if (i > 0)
2175 rl = he[0]->line;
2176 rl_free_line_state();
2177 rl_cleanup_after_signal();
2178 rl_reset_after_signal();
2179 return 0;
2184 __edrdlib -lreadline ||
2185 __edrdlib '-lreadline -ltermcap' || feat_bail_required READLINE
2188 if feat_yes MLE && [ -z "${have_readline}" ] &&
2189 [ -n "${have_c90amend1}" ]; then
2190 have_mle=1
2191 echo '#define HAVE_MLE' >> ${h}
2192 else
2193 feat_bail_required MLE
2194 echo '/* WANT_{READLINE,MLE}=0 */' >> ${h}
2197 # Generic have-a-line-editor switch for those who need it below
2198 if [ -n "${have_mle}" ] ||
2199 [ -n "${have_readline}" ]; then
2200 have_cle=1
2203 if [ -n "${have_cle}" ] && feat_yes HISTORY; then
2204 echo '#define HAVE_HISTORY' >> ${h}
2205 else
2206 echo '/* WANT_HISTORY=0 */' >> ${h}
2209 if [ -n "${have_mle}" ] && feat_yes KEY_BINDINGS; then
2210 echo '#define HAVE_KEY_BINDINGS' >> ${h}
2211 else
2212 echo '/* WANT_KEY_BINDINGS=0 */' >> ${h}
2215 if feat_yes TERMCAP; then
2216 __termcaplib() {
2217 link_check termcap "termcap(5) (via ${4})" \
2218 "#define HAVE_TERMCAP${3}" "${1}" << _EOT
2219 #include <stdio.h>
2220 #include <stdlib.h>
2221 ${2}
2222 #include <term.h>
2223 #define UNCONST(P) ((void*)(unsigned long)(void const*)(P))
2224 static int my_putc(int c){return putchar(c);}
2225 int main(void){
2226 char buf[1024+512], cmdbuf[2048], *cpb, *r1;
2227 int r2 = OK, r3 = ERR;
2229 tgetent(buf, getenv("TERM"));
2230 cpb = cmdbuf;
2231 r1 = tgetstr(UNCONST("cm"), &cpb);
2232 tgoto(r1, 1, 1);
2233 r2 = tgetnum(UNCONST("Co"));
2234 r3 = tgetflag(UNCONST("ut"));
2235 tputs("cr", 1, &my_putc);
2236 return (r1 == NULL || r2 == -1 || r3 == 0);
2238 _EOT
2241 __terminfolib() {
2242 link_check terminfo "terminfo(5) (via ${2})" \
2243 '#define HAVE_TERMCAP
2244 #define HAVE_TERMCAP_CURSES
2245 #define HAVE_TERMINFO' "${1}" << _EOT
2246 #include <stdio.h>
2247 #include <curses.h>
2248 #include <term.h>
2249 #define UNCONST(P) ((void*)(unsigned long)(void const*)(P))
2250 static int my_putc(int c){return putchar(c);}
2251 int main(void){
2252 int er, r0, r1, r2;
2253 char *r3, *tp;
2255 er = OK;
2256 r0 = setupterm(NULL, 1, &er);
2257 r1 = tigetflag(UNCONST("bce"));
2258 r2 = tigetnum(UNCONST("colors"));
2259 r3 = tigetstr(UNCONST("cr"));
2260 tp = tparm(r3, NULL);
2261 tputs(tp, 1, &my_putc);
2262 return (r0 == ERR || r1 == -1 || r2 == -2 || r2 == -1 ||
2263 r3 == (char*)-1 || r3 == NULL);
2265 _EOT
2268 if feat_yes TERMCAP_PREFER_TERMINFO; then
2269 __terminfolib -ltinfo -ltinfo ||
2270 __terminfolib -lcurses -lcurses ||
2271 __terminfolib -lcursesw -lcursesw ||
2272 feat_bail_required TERMCAP_PREFER_TERMINFO
2275 if [ -z "${have_terminfo}" ]; then
2276 __termcaplib -ltermcap '' '' '-ltermcap' ||
2277 __termcaplib -ltermcap '#include <curses.h>' '
2278 #define HAVE_TERMCAP_CURSES' \
2279 'curses.h / -ltermcap' ||
2280 __termcaplib -lcurses '#include <curses.h>' '
2281 #define HAVE_TERMCAP_CURSES' \
2282 'curses.h / -lcurses' ||
2283 __termcaplib -lcursesw '#include <curses.h>' '
2284 #define HAVE_TERMCAP_CURSES' \
2285 'curses.h / -lcursesw' ||
2286 feat_bail_required TERMCAP
2288 if [ -n "${have_termcap}" ]; then
2289 run_check tgetent_null \
2290 "tgetent(3) of termcap(5) takes NULL buffer" \
2291 "#define HAVE_TGETENT_NULL_BUF" << _EOT
2292 #include <stdio.h> /* For C89 NULL */
2293 #include <stdlib.h>
2294 #ifdef HAVE_TERMCAP_CURSES
2295 # include <curses.h>
2296 #endif
2297 #include <term.h>
2298 int main(void){
2299 tgetent(NULL, getenv("TERM"));
2300 return 0;
2302 _EOT
2305 else
2306 echo '/* WANT_TERMCAP=0 */' >> ${h}
2307 echo '/* WANT_TERMCAP_PREFER_TERMINFO=0 */' >> ${h}
2310 if feat_yes SPAM_SPAMC; then
2311 echo '#define HAVE_SPAM_SPAMC' >> ${h}
2312 if command -v spamc >/dev/null 2>&1; then
2313 echo "#define SPAM_SPAMC_PATH \"`command -v spamc`\"" >> ${h}
2315 else
2316 echo '/* WANT_SPAM_SPAMC=0 */' >> ${h}
2319 if feat_yes SPAM_SPAMD && [ -n "${have_af_unix}" ]; then
2320 echo '#define HAVE_SPAM_SPAMD' >> ${h}
2321 else
2322 feat_bail_required SPAM_SPAMD
2323 echo '/* WANT_SPAM_SPAMD=0 */' >> ${h}
2326 feat_def SPAM_FILTER
2328 if feat_yes SPAM_SPAMC || feat_yes SPAM_SPAMD || feat_yes SPAM_FILTER; then
2329 echo '#define HAVE_SPAM' >> ${h}
2330 else
2331 echo '/* HAVE_SPAM */' >> ${h}
2334 if feat_yes QUOTE_FOLD &&\
2335 [ -n "${have_c90amend1}" ] && [ -n "${have_wcwidth}" ]; then
2336 echo '#define HAVE_QUOTE_FOLD' >> ${h}
2337 else
2338 echo '/* WANT_QUOTE_FOLD=0 */' >> ${h}
2341 feat_def FILTER_HTML_TAGSOUP
2342 feat_def COLOUR
2343 feat_def DOTLOCK
2344 feat_def MD5
2345 feat_def NOMEMDBG
2347 ## Summarizing
2349 ${rm} -f ${tmp}
2350 squeeze_em ${inc} ${tmp}
2351 ${mv} ${tmp} ${inc}
2352 squeeze_em ${lib} ${tmp}
2353 ${mv} ${tmp} ${lib}
2355 # config.h
2356 ${mv} ${h} ${tmp}
2357 printf '#ifndef n_CONFIG_H\n# define n_CONFIG_H 1\n' > ${h}
2358 ${cat} ${tmp} >> ${h}
2359 ${rm} -f ${tmp}
2361 printf '\n/* The "feature string" */\n' >> ${h}
2362 printf '# if defined _ACCMACVAR_SOURCE || defined HAVE_AMALGAMATION\n' >> ${h}
2363 printf 'static char const _features[] = "MIME"\n' >> ${h}
2364 printf '# ifdef HAVE_SETLOCALE\n ",LOCALES"\n# endif\n' >> ${h}
2365 printf '# ifdef HAVE_C90AMEND1\n ",MULTIBYTE CHARSETS"\n# endif\n' >> ${h}
2366 printf '# ifdef HAVE_NL_LANGINFO\n ",TERMINAL CHARSET"\n# endif\n' >> ${h}
2367 printf '# ifdef HAVE_ICONV\n ",ICONV"\n# endif\n' >> ${h}
2368 printf '# ifdef HAVE_SOCKETS\n ",NETWORK"\n# endif\n' >> ${h}
2369 printf '# ifdef HAVE_SSL\n ",S/MIME,SSL/TLS"\n# endif\n' >> ${h}
2370 printf '# ifdef HAVE_SSL_ALL_ALGORITHMS\n ",SSL-ALL-ALGORITHMS"\n# endif\n'\
2371 >> ${h}
2372 printf '# ifdef HAVE_SMTP\n ",SMTP"\n# endif\n' >> ${h}
2373 printf '# ifdef HAVE_POP3\n ",POP3"\n# endif\n' >> ${h}
2374 printf '# ifdef HAVE_GSSAPI\n ",GSS-API"\n# endif\n' >> ${h}
2375 printf '# ifdef HAVE_MD5\n ",MD5 [APOP,CRAM-MD5]"\n# endif\n' >> ${h}
2376 printf '# ifdef HAVE_NETRC\n ",NETRC"\n# endif\n' >> ${h}
2377 printf '# ifdef HAVE_IDNA\n ",IDNA"\n# endif\n' >> ${h}
2378 printf '# ifdef HAVE_IMAP_SEARCH\n ",IMAP-SEARCH"\n# endif\n' >> ${h}
2379 printf '# ifdef HAVE_REGEX\n ",REGEX"\n# endif\n' >> ${h}
2380 printf '# ifdef HAVE_READLINE\n ",READLINE"\n# endif\n' >> ${h}
2381 printf '# ifdef HAVE_MLE\n ",MLE"\n# endif\n' >> ${h}
2382 printf '# ifdef HAVE_WCWIDTH\n " (WIDE GLYPHS)"\n# endif\n' >> ${h}
2383 printf '# ifdef HAVE_HISTORY\n ",HISTORY"\n# endif\n' >> ${h}
2384 printf '# ifdef HAVE_KEY_BINDINGS\n ",KEY-BINDINGS"\n# endif\n' >> ${h}
2385 printf '# ifdef HAVE_TERMCAP\n ",TERMCAP"\n# endif\n' >> ${h}
2386 printf '# ifdef HAVE_TERMINFO\n " (terminfo(5))"\n# endif\n' >> ${h}
2387 printf '# ifdef HAVE_SPAM_SPAMC\n ",SPAMC"\n# endif\n' >> ${h}
2388 printf '# ifdef HAVE_SPAM_SPAMD\n ",SPAMD"\n# endif\n' >> ${h}
2389 printf '# ifdef HAVE_SPAM_FILTER\n ",SPAMFILTER"\n# endif\n' >> ${h}
2390 printf '# ifdef HAVE_DOCSTRINGS\n ",DOCSTRINGS"\n# endif\n' >> ${h}
2391 printf '# ifdef HAVE_QUOTE_FOLD\n ",QUOTE-FOLD"\n# endif\n' >> ${h}
2392 printf '# ifdef HAVE_FILTER_HTML_TAGSOUP\n ",HTML-FILTER"\n# endif\n' >> ${h}
2393 printf '# ifdef HAVE_COLOUR\n ",COLOUR"\n# endif\n' >> ${h}
2394 printf '# ifdef HAVE_DOTLOCK\n ",DOTLOCK-FILES"\n# endif\n' >> ${h}
2395 printf '# ifdef HAVE_DEBUG\n ",DEBUG"\n# endif\n' >> ${h}
2396 printf '# ifdef HAVE_DEVEL\n ",DEVEL"\n# endif\n' >> ${h}
2397 printf '# ifdef HAVE_CROSS_BUILD\n ",CROSS-BUILD"\n# endif\n' >> ${h}
2398 printf ';\n# endif /* _ACCMACVAR_SOURCE || HAVE_AMALGAMATION */\n' >> ${h}
2400 # Create the real mk.mk
2401 # Note we cannout use explicit ./ filename prefix for source and object
2402 # pathnames because of a bug in bmake(1)
2403 ${rm} -rf ${tmp0}.* ${tmp0}*
2404 printf 'OBJ_SRC = ' >> ${mk}
2405 if feat_no AMALGAMATION; then
2406 for i in `printf '%s\n' *.c | ${sort}`; do
2407 if [ "${i}" = privsep.c ]; then
2408 continue
2410 printf "${i} " >> ${mk}
2411 done
2412 printf '\nAMALGAM_TARGET =\nAMALGAM_DEP =\n' >> ${mk}
2413 else
2414 printf 'main.c\nAMALGAM_TARGET = main.o\nAMALGAM_DEP = ' >> ${mk}
2416 printf '\n/* HAVE_AMALGAMATION: include sources */\n' >> ${h}
2417 printf '#elif _CONFIG_H + 0 == 1\n' >> ${h}
2418 printf '# undef _CONFIG_H\n' >> ${h}
2419 printf '# define _CONFIG_H 2\n' >> ${h}
2420 for i in `printf '%s\n' *.c | ${sort}`; do
2421 if [ "${i}" = "${j}" ] || [ "${i}" = main.c ] || \
2422 [ "${i}" = privsep.c ]; then
2423 continue
2425 printf "${i} " >> ${mk}
2426 printf "# include \"${i}\"\n" >> ${h}
2427 done
2428 echo >> ${mk}
2429 # tcc(1) fails on 2015-11-13 unless this #else clause existed
2430 echo '#else' >> ${h}
2433 printf '#endif /* n_CONFIG_H */\n' >> ${h}
2435 echo "LIBS = `${cat} ${lib}`" >> ${mk}
2436 echo "INCS = `${cat} ${inc}`" >> ${mk}
2437 echo >> ${mk}
2438 ${cat} ./mk-mk.in >> ${mk}
2440 ## Finished!
2442 ${cat} > ${tmp2}.c << \!
2443 #include "config.h"
2445 :The following optional features are enabled:
2446 #ifdef HAVE_SETLOCALE
2447 : + Locale support: Printable characters depend on the environment
2448 # ifdef HAVE_C90AMEND1
2449 : + Multibyte character support
2450 # endif
2451 # ifdef HAVE_NL_LANGINFO
2452 : + Automatic detection of terminal character set
2453 # endif
2454 #endif
2455 #ifdef HAVE_ICONV
2456 : + Character set conversion using iconv()
2457 #endif
2458 #ifdef HAVE_SOCKETS
2459 : + Network support
2460 #endif
2461 #ifdef HAVE_SSL
2462 # ifdef HAVE_OPENSSL
2463 : + S/MIME and SSL/TLS (OpenSSL)
2464 # endif
2465 # ifdef HAVE_SSL_ALL_ALGORITHMS
2466 : + + Support for more ("all") digest and cipher algorithms
2467 # endif
2468 #endif
2469 #ifdef HAVE_SMTP
2470 : + SMTP protocol
2471 #endif
2472 #ifdef HAVE_POP3
2473 : + POP3 protocol
2474 #endif
2475 #ifdef HAVE_GSSAPI
2476 : + GSS-API authentication
2477 #endif
2478 #ifdef HAVE_MD5
2479 : + MD5 message digest (APOP, CRAM-MD5)
2480 #endif
2481 #ifdef HAVE_NETRC
2482 : + .netrc file support
2483 #endif
2484 #ifdef HAVE_IDNA
2485 : + IDNA (internationalized domain names for applications) support
2486 #endif
2487 #ifdef HAVE_IMAP_SEARCH
2488 : + IMAP-style search expressions
2489 #endif
2490 #ifdef HAVE_REGEX
2491 : + Regular expression support (searches, conditional expressions etc.)
2492 #endif
2493 #if defined HAVE_READLINE || defined HAVE_MLE
2494 # ifdef HAVE_READLINE
2495 : + Command line editing via readline(3)
2496 # else
2497 # ifdef HAVE_WCWIDTH
2498 : + Command line editing via M(ailx)-L(ine)-E(ditor) (wide glyph support)
2499 # else
2500 : + Command line editing via M(ailx)-L(ine)-E(ditor) (no wide glyph support)
2501 # endif
2502 # endif
2503 # ifdef HAVE_HISTORY
2504 : + + History management
2505 # endif
2506 # ifdef HAVE_KEY_BINDINGS
2507 : + + Configurable key bindings
2508 # endif
2509 #endif
2510 #ifdef HAVE_TERMCAP
2511 # ifdef HAVE_TERMINFO
2512 : + Terminal capability queries (terminfo(5))
2513 # else
2514 : + Terminal capability queries (termcap(5))
2515 # endif
2516 #endif
2517 #ifdef HAVE_SPAM
2518 : + Spam management
2519 # ifdef HAVE_SPAM_SPAMC
2520 : + + Via spamc(1) (of spamassassin(1))
2521 # endif
2522 # ifdef HAVE_SPAM_SPAMD
2523 : + + Directly via spamd(1) (of spamassassin(1))
2524 # endif
2525 # ifdef HAVE_SPAM_FILTER
2526 : + + Via freely configurable *spam-filter-XY*s
2527 # endif
2528 #endif
2529 #ifdef HAVE_DOCSTRINGS
2530 : + Documentation summary strings
2531 #endif
2532 #ifdef HAVE_QUOTE_FOLD
2533 : + Extended *quote-fold*ing
2534 #endif
2535 #ifdef HAVE_FILTER_HTML_TAGSOUP
2536 : + Builtin HTML-to-text filter (for display purposes, primitive)
2537 #endif
2538 #ifdef HAVE_COLOUR
2539 : + Coloured message display (simple)
2540 #endif
2541 #ifdef HAVE_DOTLOCK
2542 : + Dotlock files and privilege-separated file dotlock program
2543 #endif
2545 :The following optional features are disabled:
2546 #ifndef HAVE_SETLOCALE
2547 : - Locale support: Only ASCII characters are recognized
2548 #endif
2549 # ifndef HAVE_C90AMEND1
2550 : - Multibyte character support
2551 # endif
2552 # ifndef HAVE_NL_LANGINFO
2553 : - Automatic detection of terminal character set
2554 # endif
2555 #ifndef HAVE_ICONV
2556 : - Character set conversion using iconv()
2557 : _ (Ooooh, no iconv(3), NO character set conversion possible! Really...)
2558 #endif
2559 #ifndef HAVE_SOCKETS
2560 : - Network support
2561 #endif
2562 #ifndef HAVE_SSL
2563 : - S/MIME and SSL/TLS
2564 #else
2565 # ifndef HAVE_SSL_ALL_ALGORITHMS
2566 : - Support for more S/MIME and SSL/TLS digest and cipher algorithms
2567 # endif
2568 #endif
2569 #ifndef HAVE_SMTP
2570 : - SMTP protocol
2571 #endif
2572 #ifndef HAVE_POP3
2573 : - POP3 protocol
2574 #endif
2575 #ifndef HAVE_GSSAPI
2576 : - GSS-API authentication
2577 #endif
2578 #ifndef HAVE_MD5
2579 : - MD5 message digest (APOP, CRAM-MD5)
2580 #endif
2581 #ifndef HAVE_NETRC
2582 : - .netrc file support
2583 #endif
2584 #ifndef HAVE_IDNA
2585 : - IDNA (internationalized domain names for applications) support
2586 #endif
2587 #ifndef HAVE_IMAP_SEARCH
2588 : - IMAP-style search expressions
2589 #endif
2590 #ifndef HAVE_REGEX
2591 : - Regular expression support
2592 #endif
2593 #if !defined HAVE_READLINE && !defined HAVE_MLE
2594 : - Command line editing and history
2595 #else
2596 # ifndef HAVE_HISTORY
2597 : + (Command line editing) - History management
2598 # endif
2599 # ifndef HAVE_KEY_BINDINGS
2600 : + (Command line editing) - Configurable key bindings
2601 # endif
2602 #endif
2603 #ifndef HAVE_TERMCAP
2604 : - Terminal capability queries
2605 #endif
2606 #ifndef HAVE_SPAM
2607 : - Spam management
2608 #endif
2609 #ifndef HAVE_DOCSTRINGS
2610 : - Documentation summary strings
2611 #endif
2612 #ifndef HAVE_QUOTE_FOLD
2613 : - Extended *quote-fold*ing
2614 #endif
2615 #ifndef HAVE_FILTER_HTML_TAGSOUP
2616 : - Builtin HTML-to-text filter (for display purposes, primitive)
2617 #endif
2618 #ifndef HAVE_COLOUR
2619 : - Coloured message display (simple)
2620 #endif
2621 #ifndef HAVE_DOTLOCK
2622 : - Dotlock files and privilege-separated file dotlock program
2623 #endif
2625 #if !defined HAVE_FNMATCH || !defined HAVE_FCHDIR ||\
2626 defined HAVE_DEBUG || defined HAVE_DEVEL
2627 :Remarks:
2628 # ifndef HAVE_FNMATCH
2629 : . The function fnmatch(3) could not be found.
2630 : _ Filename patterns like wildcard are not supported on your system.
2631 # endif
2632 # ifndef HAVE_FCHDIR
2633 : . The function fchdir(2) could not be found. We will use chdir(2)
2634 : _ instead. This is not a problem unless the current working
2635 : _ directory is changed while this program is inside of it.
2636 # endif
2637 # ifdef HAVE_DEBUG
2638 : . Debug enabled binary: not meant to be used by end-users: THANKS!
2639 # endif
2640 # ifdef HAVE_DEVEL
2641 : . Computers do not blunder.
2642 # endif
2644 #endif /* Remarks */
2645 :Setup:
2646 : . System-wide resource file: SYSCONFDIR/SYSCONFRC
2647 : . bindir: BINDIR
2648 #ifdef HAVE_DOTLOCK
2649 : . libexecdir: LIBEXECDIR
2650 #endif
2651 : . mandir: MANDIR
2652 : . sendmail(1): VAL_SENDMAIL (argv[0] = VAL_SENDMAIL_PROGNAME)
2653 : . Mail spool directory: MAILSPOOL
2657 ${make} -f ${makefile} ${tmp2}.x
2658 < ${tmp2}.x ${sed} -e '/^[^:]/d; /^$/d; s/^://' |
2659 while read l; do
2660 msg "${l}"
2661 done
2663 # s-it-mode