Typo (harmless): Message-Id: -> Message-ID:
[s-mailx.git] / mk-conf.sh
blobc4cc6463cbe980df02f807c8934f6ba4f1f07d0b
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_EDITLINE=0 WANT_NCL=0
18 WANT_TERMCAP=0
19 WANT_ERRORS=0
20 WANT_SPAM_SPAMC=0 WANT_SPAM_SPAMD=0 WANT_SPAM_FILTER=0
21 WANT_DOCSTRINGS=0
22 WANT_QUOTE_FOLD=0
23 WANT_FILTER_HTML_TAGSOUP=0
24 WANT_COLOUR=0
25 WANT_DOTLOCK=0
28 option_maximal() {
29 WANT_ICONV=require
30 WANT_SOCKETS=1
31 WANT_SSL=1 WANT_ALL_SSL_ALGORITHMS=1
32 WANT_SMTP=1 WANT_POP3=1
33 WANT_GSSAPI=1 WANT_NETRC=1 WANT_AGENT=1
34 #WANT_MD5=1
35 WANT_IDNA=1
36 WANT_IMAP_SEARCH=1
37 WANT_REGEX=require
38 WANT_NCL=1
39 WANT_HISTORY=1 WANT_TABEXPAND=1
40 WANT_TERMCAP=1
41 WANT_ERRORS=1
42 WANT_SPAM_SPAMC=1 WANT_SPAM_SPAMD=1 WANT_SPAM_FILTER=1
43 WANT_DOCSTRINGS=1
44 WANT_QUOTE_FOLD=1
45 WANT_FILTER_HTML_TAGSOUP=1
46 WANT_COLOUR=1
47 WANT_DOTLOCK=require
50 # Predefined CONFIG= urations take precedence over anything else
51 if [ -n "${CONFIG}" ]; then
52 case "${CONFIG}" in
53 [nN][uU][lL][lL])
54 option_reset
56 [nN][uU][lL][lL][iI])
57 option_reset
58 WANT_ICONV=require
60 [mM][iI][nN][iI][mM][aA][lL])
61 option_reset
62 WANT_ICONV=1
63 WANT_REGEX=1
64 WANT_DOTLOCK=require
66 [mM][eE][dD][iI][uU][mM])
67 option_reset
68 WANT_ICONV=require
69 WANT_IDNA=1
70 WANT_REGEX=1
71 WANT_NCL=1
72 WANT_HISTORY=1
73 WANT_ERRORS=1
74 WANT_SPAM_FILTER=1
75 WANT_DOCSTRINGS=1
76 WANT_COLOUR=1
77 WANT_DOTLOCK=require
79 [nN][eE][tT][sS][eE][nN][dD])
80 option_reset
81 WANT_ICONV=require
82 WANT_SOCKETS=1
83 WANT_SSL=require
84 WANT_SMTP=require
85 WANT_GSSAPI=1 WANT_NETRC=1 WANT_AGENT=1
86 WANT_IDNA=1
87 WANT_REGEX=1
88 WANT_NCL=1
89 WANT_HISTORY=1
90 WANT_DOCSTRINGS=1
91 WANT_COLOUR=1
92 WANT_DOTLOCK=require
94 [mM][aA][xX][iI][mM][aA][lL])
95 option_reset
96 option_maximal
98 [dD][eE][vV][eE][lL])
99 WANT_DEVEL=1 WANT_DEBUG=1 WANT_NYD2=1
100 option_maximal
102 [oO][dD][eE][vV][eE][lL])
103 WANT_DEVEL=1
104 option_maximal
107 echo >&2 "Unknown CONFIG= setting: ${CONFIG}"
108 echo >&2 'Possible values: NULL, NULLI, MINIMAL, MEDIUM, NETSEND, MAXIMAL'
109 exit 1
111 esac
114 # Inter-relationships
115 option_update() {
116 if feat_no SMTP && feat_no POP3; then
117 WANT_SOCKETS=0
119 if feat_no SOCKETS; then
120 if feat_require SMTP; then
121 msg 'ERROR: need SOCKETS for required feature SMTP'
122 config_exit 13
124 if feat_require POP3; then
125 msg 'ERROR: need SOCKETS for required feature POP3'
126 config_exit 13
128 WANT_SSL=0 WANT_ALL_SSL_ALGORITHMS=0
129 WANT_SMTP=0 WANT_POP3=0
130 WANT_GSSAPI=0 WANT_NETRC=0 WANT_AGENT=0
132 if feat_no SMTP; then
133 WANT_GSSAPI=0
136 if feat_no READLINE && feat_no EDITLINE && feat_no NCL; then
137 WANT_HISTORY=0 WANT_TABEXPAND=0
140 # If we don't need MD5 leave it alone
141 if feat_no SOCKETS; then
142 WANT_MD5=0
145 if feat_yes DEVEL; then
146 WANT_DEBUG=1
148 if feat_yes DEBUG; then
149 WANT_NOALLOCA=1 WANT_DEVEL=1
153 # Note that potential duplicates in PATH, C_INCLUDE_PATH etc. will be cleaned
154 # via path_check() later on once possible
156 # TODO cc_maxopt is brute simple, we should compile test program and dig real
157 # compiler versions for known compilers, then be more specific
158 cc_maxopt=100
159 _CFLAGS= _LDFLAGS=
161 os_early_setup() {
162 i="${OS:-`uname -s`}"
164 if [ ${i} = SunOS ]; then
165 msg 'SunOS / Solaris? Applying some "early setup" rules ...'
166 _os_early_setup_sunos
170 os_setup() {
171 # OSFULLSPEC is used to recognize changes (i.e., machine type, updates etc.)
172 OSFULLSPEC="${OS:-`uname -a | ${tr} '[A-Z]' '[a-z]'`}"
173 OS="${OS:-`uname -s | ${tr} '[A-Z]' '[a-z]'`}"
174 msg 'Operating system is "%s"' ${OS}
176 if [ ${OS} = sunos ]; then
177 msg ' . have special SunOS / Solaris "setup" rules ...'
178 _os_setup_sunos
179 elif [ ${OS} = unixware ]; then
180 msg ' . have special UnixWare environmental rules ...'
181 if feat_yes AUTOCC && command -v cc >/dev/null 2>&1; then
182 CC=cc
183 feat_yes DEBUG && _CFLAGS='-v -Xa -g' || _CFLAGS='-Xa -O'
185 CFLAGS="${_CFLAGS} ${ADDCFLAGS}"
186 LDFLAGS="${_LDFLAGS} ${ADDLDFLAGS}"
187 export CC CFLAGS LDFLAGS
188 WANT_AUTOCC=0 had_want_autocc=1 need_R_ldflags=-R
190 elif [ -n "${VERBOSE}" ]; then
191 msg ' . no special treatment for this system necessary or known'
194 # Sledgehammer: better set _GNU_SOURCE
195 # And in general: oh, boy!
196 OS_DEFINES="${OS_DEFINES}#define _GNU_SOURCE\n"
197 #OS_DEFINES="${OS_DEFINES}#define _POSIX_C_SOURCE 200809L\n"
198 #OS_DEFINES="${OS_DEFINES}#define _XOPEN_SOURCE 700\n"
199 #[ ${OS} = darwin ] && OS_DEFINES="${OS_DEFINES}#define _DARWIN_C_SOURCE\n"
201 # On pkgsrc(7) systems automatically add /usr/pkg/*
202 if [ -d /usr/pkg ]; then
203 C_INCLUDE_PATH="${C_INCLUDE_PATH}:/usr/pkg/include"
204 LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:/usr/pkg/lib"
208 _os_early_setup_sunos() {
209 # According to standards(5), this is what we need to do
210 if [ -d /usr/xpg4 ]; then :; else
211 msg 'ERROR: On SunOS / Solaris we need /usr/xpg4 environment! Sorry.'
212 config_exit 1
214 PATH="/usr/xpg4/bin:/usr/ccs/bin:/usr/bin:${PATH}"
215 [ -d /usr/xpg6 ] && PATH="/usr/xpg6/bin:${PATH}"
216 export PATH
219 _os_setup_sunos() {
220 C_INCLUDE_PATH="/usr/xpg4/include:${C_INCLUDE_PATH}"
221 LD_LIBRARY_PATH="/usr/xpg4/lib:${LD_LIBRARY_PATH}"
223 # Include packages
224 if [ -d /opt/csw ]; then
225 C_INCLUDE_PATH="${C_INCLUDE_PATH}:/opt/csw/include"
226 LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:/opt/csw/lib"
229 OS_DEFINES="${OS_DEFINES}#define __EXTENSIONS__\n"
230 #OS_DEFINES="${OS_DEFINES}#define _POSIX_C_SOURCE 200112L\n"
232 [ -n "${cksum}" ] || cksum=/opt/csw/gnu/cksum
233 if [ -x "${cksum}" ]; then :; else
234 msg 'ERROR: Not an executable program: "%s"' "${cksum}"
235 msg 'ERROR: We need a CRC-32 cksum(1), as specified in POSIX.'
236 msg 'ERROR: However, we do so only for tests.'
237 msg 'ERROR: If that is ok, set "cksum=/usr/bin/true", then rerun'
238 config_exit 1
241 if feat_yes AUTOCC; then
242 if command -v cc >/dev/null 2>&1; then
243 CC=cc
244 feat_yes DEBUG && _CFLAGS="-v -Xa -g" || _CFLAGS="-Xa -O"
246 CFLAGS="${_CFLAGS} ${ADDCFLAGS}"
247 LDFLAGS="${_LDFLAGS} ${ADDLDFLAGS}"
248 export CC CFLAGS LDFLAGS
249 WANT_AUTOCC=0 had_want_autocc=1 need_R_ldflags=-R
250 else
251 # Assume gcc(1)
252 cc_maxopt=2 force_no_stackprot=1 need_R_ldflags=-Wl,-R
257 # Check out compiler ($CC) and -flags ($CFLAGS)
258 cc_setup() {
259 # Even though it belongs into cc_flags we will try to compile and link
260 # something, so ensure we have a clean state regarding CFLAGS/LDFLAGS or
261 # ADDCFLAGS/ADDLDFLAGS
262 if feat_no AUTOCC; then
263 _cc_default
264 # Ensure those don't do any harm
265 ADDCFLAGS= ADDLDFLAGS=
266 export ADDCFLAGS ADDLDFLAGS
267 return
268 else
269 CFLAGS= LDFLAGS=
270 export CFLAGS LDFLAGS
273 [ -n "${CC}" ] && [ "${CC}" != cc ] && { _cc_default; return; }
275 printf >&2 'Searching for a usable C compiler .. $CC='
276 if { i="`command -v clang`"; }; then
277 CC=${i}
278 elif { i="`command -v gcc`"; }; then
279 CC=${i}
280 elif { i="`command -v c99`"; }; then
281 CC=${i}
282 elif { i="`command -v tcc`"; }; then
283 CC=${i}
284 elif { i="`command -v pcc`"; }; then
285 CC=${i}
286 else
287 if [ "${CC}" = cc ]; then
289 elif { i="`command -v c89`"; }; then
290 CC=${i}
291 else
292 printf >&2 'boing booom tschak\n'
293 msg 'ERROR: I cannot find a compiler!'
294 msg ' Neither of clang(1), gcc(1), tcc(1), c89(1) and c99(1).'
295 msg ' Please set $CC environment variable, maybe $CFLAGS also, rerun.'
296 config_exit 1
299 printf >&2 -- '"%s"\n' "${CC}"
300 export CC
303 _cc_default() {
304 if [ -z "${CC}" ]; then
305 printf >&2 'To go on like you have chosen, please set $CC, rerun.'
306 config_exit 1
309 if [ -z "${VERBOSE}" ] && [ -f ${lst} ] && feat_no DEBUG; then
311 else
312 msg 'Using C compiler $CC="%s"' "${CC}"
316 cc_flags() {
317 if feat_yes AUTOCC; then
318 if [ -f ${lst} ] && feat_no DEBUG && [ -z "${VERBOSE}" ]; then
319 cc_check_silent=1
320 msg 'Detecting $CFLAGS/$LDFLAGS for $CC="%s", just a second..' "${CC}"
321 else
322 cc_check_silent=
323 msg 'Testing usable $CFLAGS/$LDFLAGS for $CC="%s"' "${CC}"
326 i=`echo "${CC}" | ${awk} 'BEGIN{FS="/"}{print $NF}'`
327 if { echo "${i}" | ${grep} tcc; } >/dev/null 2>&1; then
328 msg ' . have special tcc(1) environmental rules ...'
329 _cc_flags_tcc
330 else
331 # As of pcc CVS 2016-04-02, stack protection support is announced but
332 # will break if used on Linux
333 if { echo "${i}" | ${grep} pcc; } >/dev/null 2>&1; then
334 force_no_stackprot=1
336 _cc_flags_generic
339 feat_no DEBUG && _CFLAGS="-DNDEBUG ${_CFLAGS}"
340 CFLAGS="${_CFLAGS} ${ADDCFLAGS}"
341 LDFLAGS="${_LDFLAGS} ${ADDLDFLAGS}"
342 else
343 if feat_no DEBUG; then
344 CFLAGS="-DNDEBUG ${CFLAGS}"
347 msg ''
348 export CFLAGS LDFLAGS
351 _cc_flags_tcc() {
352 __cflags=${_CFLAGS} __ldflags=${_LDFLAGS}
353 _CFLAGS= _LDFLAGS=
355 cc_check -Wall
356 cc_check -Wextra
357 cc_check -pedantic
359 if feat_yes DEBUG; then
360 # May have problems to find libtcc cc_check -b
361 cc_check -g
364 _CFLAGS="${_CFLAGS} ${__cflags}" _LDFLAGS="${_LDFLAGS} ${__ldflags}"
365 unset __cflags __ldflags
368 _cc_flags_generic() {
369 __cflags=${_CFLAGS} __ldflags=${_LDFLAGS}
370 _CFLAGS= _LDFLAGS=
371 feat_yes DEVEL && cc_check -std=c89 || cc_check -std=c99
373 # Check -g first since some others may rely upon -g / optim. level
374 if feat_yes DEBUG; then
375 cc_check -O
376 cc_check -g
377 elif [ ${cc_maxopt} -gt 2 ] && cc_check -O3; then
379 elif [ ${cc_maxopt} -gt 1 ] && cc_check -O2; then
381 elif [ ${cc_maxopt} -gt 0 ] && cc_check -O1; then
383 else
384 cc_check -O
387 if feat_yes DEVEL && cc_check -Weverything; then
389 else
390 cc_check -Wall
391 cc_check -Wextra
392 cc_check -Wbad-function-cast
393 cc_check -Wcast-align
394 cc_check -Wcast-qual
395 cc_check -Winit-self
396 cc_check -Wmissing-prototypes
397 cc_check -Wshadow
398 cc_check -Wunused
399 cc_check -Wwrite-strings
400 cc_check -Wno-long-long
402 cc_check -pedantic
404 if feat_yes AMALGAMATION && feat_no DEVEL; then
405 cc_check -Wno-unused-function
407 feat_no DEVEL && cc_check -Wno-unused-result # XXX do right way (pragma too)
409 cc_check -fno-unwind-tables
410 cc_check -fno-asynchronous-unwind-tables
411 cc_check -fstrict-aliasing
412 if cc_check -fstrict-overflow && feat_yes DEVEL; then
413 cc_check -Wstrict-overflow=5
416 if feat_yes DEBUG || feat_yes FORCED_STACKPROT; then
417 if [ -z "${force_no_stackprot}" ]; then
418 if cc_check -fstack-protector-strong ||
419 cc_check -fstack-protector-all; then
420 cc_check -D_FORTIFY_SOURCE=2
422 else
423 msg 'Not checking for -fstack-protector compiler option,'
424 msg 'since that caused errors in a "similar" configuration.'
425 msg 'You may turn off WANT_AUTOCC and use your own settings, rerun'
429 if feat_yes AMALGAMATION; then
430 cc_check -pipe
433 # LD (+ dependend CC)
435 if feat_yes DEVEL; then
436 _ccfg=${_CFLAGS}
437 # -fsanitize=address
438 #if cc_check -fsanitize=memory &&
439 # ld_check -fsanitize=memory &&
440 # cc_check -fsanitize-memory-track-origins=2 &&
441 # ld_check -fsanitize-memory-track-origins=2; then
443 #else
444 # _CFLAGS=${_ccfg}
448 ld_check -Wl,-z,relro
449 ld_check -Wl,-z,now
450 ld_check -Wl,-z,noexecstack
452 # Address randomization
453 _ccfg=${_CFLAGS}
454 if cc_check -fPIE || cc_check -fpie; then
455 ld_check -pie || _CFLAGS=${_ccfg}
457 unset _ccfg
459 _CFLAGS="${_CFLAGS} ${__cflags}" _LDFLAGS="${_LDFLAGS} ${__ldflags}"
460 unset __cflags __ldflags
463 ## -- >8 -- 8< -- ##
465 ## Notes:
466 ## - Heirloom sh(1) (and same origin) have _sometimes_ problems with ': >'
467 ## redirection, so use "printf '' >" instead
469 ## Very first: we undergo several states regarding I/O redirection etc.,
470 ## but need to deal with option updates from within all. Since all the
471 ## option stuff should be above the scissor line, define utility functions
472 ## and redefine them as necessary.
473 ## And, since we have those functions, simply use them for whatever
475 config_exit() {
476 exit ${1}
479 msg() {
480 fmt=${1}
481 shift
482 printf >&2 -- "${fmt}\\n" "${@}"
485 ## First of all, create new configuration and check wether it changed
487 rc=./make.rc
488 lst=./config.lst
489 h=./config.h h_name=config.h
490 mk=./mk.mk
492 newlst=./config.lst-new
493 newmk=./config.mk-new
494 newh=./config.h-new
495 tmp0=___tmp
496 tmp=./${tmp0}1$$
497 tmp2=./${tmp0}2$$
499 t1=ten10one1ten10one1
500 if ( [ ${t1##*ten10} = one1 ] && [ ${t1#*ten10} = one1ten10one1 ] &&
501 [ ${t1%%one1*} = ten10 ] && [ ${t1%one1*} = ten10one1ten10 ]
502 ) > /dev/null 2>&1; then
503 good_shell=1
504 else
505 unset good_shell
507 unset t1
509 # We need some standard utilities
510 unset -f command
511 check_tool() {
512 n=${1} i=${2} opt=${3:-0}
513 # Evaluate, just in case user comes in with shell snippets (..well..)
514 eval i="${i}"
515 if type "${i}" >/dev/null 2>&1; then # XXX why have i type not command -v?
516 [ -n "${VERBOSE}" ] && msg ' . $%s ... "%s"' "${n}" "${i}"
517 eval ${n}=${i}
518 return 0
520 if [ ${opt} -eq 0 ]; then
521 msg 'ERROR: no trace of utility "%s"' "${n}"
522 config_exit 1
524 return 1
527 # Very easy checks for the operating system in order to be able to adjust paths
528 # or similar very basic things which we need to be able to go at all
529 os_early_setup
531 # Check those tools right now that we need before including $rc
532 msg 'Checking for basic utility set'
533 check_tool awk "${awk:-`command -v awk`}"
534 check_tool rm "${rm:-`command -v rm`}"
535 check_tool tr "${tr:-`command -v tr`}"
537 # Our feature check environment
538 feat_val_no() {
539 [ "x${1}" = x0 ] ||
540 [ "x${1}" = xfalse ] || [ "x${1}" = xno ] || [ "x${1}" = xoff ]
543 feat_val_yes() {
544 [ "x${1}" = x1 ] ||
545 [ "x${1}" = xtrue ] || [ "x${1}" = xyes ] || [ "x${1}" = xon ] ||
546 [ "x${1}" = xrequire ]
549 feat_val_require() {
550 [ "x${1}" = xrequire ]
553 _feat_check() {
554 eval i=\$WANT_${1}
555 i="`echo ${i} | ${tr} '[A-Z]' '[a-z]'`"
556 if feat_val_no "${i}"; then
557 return 1
558 elif feat_val_yes "${i}"; then
559 return 0
560 else
561 msg "ERROR: %s: any of 0/false/no/off or 1/true/yes/on/require, got: %s" \
562 "${1}" "${i}"
563 config_exit 11
567 feat_yes() {
568 _feat_check ${1}
571 feat_no() {
572 _feat_check ${1} && return 1
573 return 0
576 feat_require() {
577 eval i=\$WANT_${1}
578 i="`echo ${i} | ${tr} '[A-Z]' '[a-z]'`"
579 [ "x${i}" = xrequire ] || [ "x${i}" = xrequired ]
582 feat_bail_required() {
583 if feat_require ${1}; then
584 msg 'ERROR: feature WANT_%s is required but not available' "${1}"
585 config_exit 13
587 eval WANT_${1}=0
588 option_update # XXX this is rather useless here (dependency chain..)
591 # Include $rc, but only take from it what wasn't overwritten by the user from
592 # within the command line or from a chosen fixed CONFIG=
593 # Note we leave alone the values
594 trap "exit 1" HUP INT TERM
595 trap "${rm} -f ${tmp}" EXIT
597 printf >&2 'Reading and preparing configuration from "%s" ... ' ${rc}
598 ${rm} -f ${tmp}
599 # We want read(1) to perform backslash escaping in order to be able to use
600 # multiline values in make.rc; the resulting sh(1)/sed(1) code was very slow in
601 # VMs (see [fa2e248]), Aharon Robbins suggested the following
602 < ${rc} ${awk} 'BEGIN{line = ""}{
603 gsub(/^[[:space:]]+/, "", $0)
604 gsub(/[[:space:]]+$/, "", $0)
605 if(gsub(/\\$/, "", $0)){
606 line = line $0
607 next
608 }else
609 line = line $0
610 if(index(line, "#") == 1){
611 line = ""
612 }else if(length(line)){
613 print line
614 line = ""
616 }' |
617 while read line; do
618 if [ -n "${good_shell}" ]; then
619 i=${line%%=*}
620 else
621 i=`${awk} -v LINE="${line}" 'BEGIN{
622 gsub(/=.*$/, "", LINE)
623 print LINE
626 if [ "${i}" = "${line}" ]; then
627 msg 'ERROR: invalid syntax in "%s"' "${line}"
628 continue
631 eval j="\$${i}" jx="\${${i}+x}"
632 if [ -n "${j}" ] || [ "${jx}" = x ]; then
633 : # Yet present
634 else
635 j=`${awk} -v LINE="${line}" 'BEGIN{
636 gsub(/^[^=]*=/, "", LINE)
637 gsub(/^\"*/, "", LINE)
638 gsub(/\"*$/, "", LINE)
639 print LINE
642 echo "${i}=\"${j}\""
643 done > ${tmp}
644 # Reread the mixed version right now
645 . ./${tmp}
646 printf >&2 'done\n'
648 # We need to know about that now, in order to provide utility overwrites etc.
649 os_setup
651 msg 'Checking for remaining set of utilities'
652 check_tool grep "${grep:-`command -v grep`}"
654 # Before we step ahead with the other utilities perform a path cleanup first.
655 # We need this function also for C_INCLUDE_PATH and LD_LIBRARY_PATH
656 # "path_check VARNAME" or "path_check VARNAME FLAG VARNAME"
657 path_check() {
658 varname=${1} addflag=${2} flagvarname=${3}
659 j=${IFS}
660 IFS=:
661 eval "set -- \$${1}"
662 IFS=${j}
663 j= k= y= z=
664 for i
666 [ -z "${i}" ] && continue
667 [ -d "${i}" ] || continue
668 if [ -n "${j}" ]; then
669 if { z=${y}; echo "${z}"; } | ${grep} ":${i}:" >/dev/null 2>&1; then
671 else
672 y="${y} :${i}:"
673 j="${j}:${i}"
674 [ -n "${addflag}" ] && k="${k} ${addflag}${i}"
676 else
677 y=" :${i}:"
678 j="${i}"
679 [ -n "${addflag}" ] && k="${addflag}${i}"
681 done
682 eval "${varname}=\"${j}\""
683 [ -n "${addflag}" ] && eval "${flagvarname}=\"${k}\""
684 unset varname
687 path_check PATH
689 # awk(1) above
690 check_tool cat "${cat:-`command -v cat`}"
691 check_tool chmod "${chmod:-`command -v chmod`}"
692 check_tool cp "${cp:-`command -v cp`}"
693 check_tool cmp "${cmp:-`command -v cmp`}"
694 # grep(1) above
695 check_tool mkdir "${mkdir:-`command -v mkdir`}"
696 check_tool mv "${mv:-`command -v mv`}"
697 # rm(1) above
698 check_tool sed "${sed:-`command -v sed`}"
699 check_tool sort "${sort:-`command -v sort`}"
700 check_tool tee "${tee:-`command -v tee`}"
702 check_tool chown "${chown:-`command -v chown`}" 1 ||
703 check_tool chown "/sbin/chown" 1 ||
704 check_tool chown "/usr/sbin/chown"
706 check_tool make "${MAKE:-`command -v make`}"
707 MAKE=${make}
708 check_tool strip "${STRIP:-`command -v strip`}" 1 &&
709 HAVE_STRIP=1 || HAVE_STRIP=0
711 # For ./cc-test.sh only
712 check_tool cksum "${cksum:-`command -v cksum`}"
714 # Update WANT_ options now, in order to get possible inter-dependencies right
715 option_update
717 # (No functions since some shells loose non-exported variables in traps)
718 trap "trap \"\" HUP INT TERM; exit 1" HUP INT TERM
719 trap "trap \"\" HUP INT TERM EXIT;\
720 ${rm} -rf ${newlst} ${tmp0}.* ${tmp0}* ${newmk} ${newh}" EXIT
722 # Our configuration options may at this point still contain shell snippets,
723 # we need to evaluate them in order to get them expanded, and we need those
724 # evaluated values not only in our new configuration file, but also at hand..
725 printf >&2 'Evaluating all configuration items ... '
726 ${rm} -f ${newlst} ${newmk} ${newh}
727 exec 5<&0 6>&1 <${tmp} >${newlst}
728 while read line; do
730 if [ -n "${good_shell}" ]; then
731 i=${line%%=*}
732 [ "${i}" != "${i#WANT_}" ] && z=1
733 else
734 i=`${awk} -v LINE="${line}" 'BEGIN{
735 gsub(/=.*$/, "", LINE);\
736 print LINE
738 if echo "${i}" | ${grep} '^WANT_' >/dev/null 2>&1; then
743 eval j=\$${i}
744 if [ -n "${z}" ]; then
745 j="`echo ${j} | ${tr} '[A-Z]' '[a-z]'`"
746 if [ -z "${j}" ] || feat_val_no "${j}"; then
748 printf "/*#define ${i}*/\n" >> ${newh}
749 elif feat_val_yes "${j}"; then
750 if feat_val_require "${j}"; then
751 j=require
752 else
755 printf "#define ${i}\n" >> ${newh}
756 else
757 msg 'ERROR: cannot parse <%s>' "${line}"
758 config_exit 1
760 else
761 printf "#define ${i} \"${j}\"\n" >> ${newh}
763 printf "${i} = ${j}\n" >> ${newmk}
764 printf "${i}=${j}\n"
765 eval "${i}=\"${j}\""
766 done
767 exec 0<&5 1>&6 5<&- 6<&-
768 printf >&2 'done\n'
770 # Add the known utility and some other variables
771 printf "#define UAGENT \"${SID}${NAIL}\"\n" >> ${newh}
772 printf "UAGENT = ${SID}${NAIL}\n" >> ${newmk}
774 printf "#define PRIVSEP \"${SID}${NAIL}-privsep\"\n" >> ${newh}
775 printf "PRIVSEP = \$(UAGENT)-privsep\n" >> ${newmk}
776 if feat_yes DOTLOCK; then
777 printf "OPTIONAL_PRIVSEP = \$(PRIVSEP)\n" >> ${newmk}
778 else
779 printf "OPTIONAL_PRIVSEP =\n" >> ${newmk}
782 for i in \
783 awk cat chmod chown cp cmp grep mkdir mv rm sed sort tee tr \
784 MAKE make strip \
785 cksum; do
786 eval j=\$${i}
787 printf "${i} = ${j}\n" >> ${newmk}
788 printf "${i}=${j}\n" >> ${newlst}
789 done
791 # Build a basic set of INCS and LIBS according to user environment.
792 path_check C_INCLUDE_PATH -I _INCS
793 INCS="${INCS} ${_INCS}"
794 path_check LD_LIBRARY_PATH -L _LIBS
795 LIBS="${LIBS} ${_LIBS}"
796 unset _INCS _LIBS
797 export C_INCLUDE_PATH LD_LIBRARY_PATH
799 if [ -n "${need_R_ldflags}" ]; then
800 i=${IFS}
801 IFS=:
802 set -- ${LD_LIBRARY_PATH}
803 IFS=${i}
804 for i
806 LDFLAGS="${LDFLAGS} ${need_R_ldflags}${i}"
807 _LDFLAGS="${_LDFLAGS} ${need_R_ldflags}${i}"
808 done
809 export LDFLAGS
812 ## Detect CC, wether we can use it, and possibly which CFLAGS we can use
814 cc_setup
816 ${cat} > ${tmp}.c << \!
817 #include <stdio.h>
818 #include <string.h>
819 static void doit(char const *s);
821 main(int argc, char **argv){
822 (void)argc;
823 (void)argv;
824 doit("Hello world");
825 return 0;
827 static void
828 doit(char const *s){
829 char buf[12];
830 strcpy(buf, s);
831 puts(s);
835 if "${CC}" ${INCS} ${CFLAGS} ${ADDCFLAGS} ${LDFLAGS} ${ADDLDFLAGS} \
836 -o ${tmp2} ${tmp}.c ${LIBS}; then
838 else
839 msg 'ERROR: i cannot compile a "Hello world" via'
840 msg ' %s' \
841 "${CC} ${INCS} ${CFLAGS} ${ADDCFLAGS} ${LDFLAGS} ${ADDLDFLAGS} ${LIBS}"
842 msg 'ERROR: Please read INSTALL, rerun'
843 config_exit 1
846 cc_check() {
847 [ -n "${cc_check_silent}" ] || printf >&2 ' . CC %s .. ' "${1}"
848 if "${CC}" ${INCS} ${_CFLAGS} ${1} ${ADDCFLAGS} ${_LDFLAGS} ${ADDLDFLAGS} \
849 -o ${tmp2} ${tmp}.c ${LIBS} >/dev/null 2>&1; then
850 _CFLAGS="${_CFLAGS} ${1}"
851 [ -n "${cc_check_silent}" ] || printf >&2 'yes\n'
852 return 0
854 [ -n "${cc_check_silent}" ] || printf >&2 'no\n'
855 return 1
858 ld_check() {
859 [ -n "${cc_check_silent}" ] || printf >&2 ' . LD %s .. ' "${1}"
860 if "${CC}" ${INCS} ${_CFLAGS} ${_LDFLAGS} ${1} ${ADDLDFLAGS} \
861 -o ${tmp2} ${tmp}.c ${LIBS} >/dev/null 2>&1; then
862 _LDFLAGS="${_LDFLAGS} ${1}"
863 [ -n "${cc_check_silent}" ] || printf >&2 'yes\n'
864 return 0
866 [ -n "${cc_check_silent}" ] || printf >&2 'no\n'
867 return 1
870 cc_flags
872 for i in \
873 INCS LIBS \
874 ; do
875 eval j=\$${i}
876 printf -- "${i}=${j}\n" >> ${newlst}
877 done
878 for i in \
879 CC \
880 CFLAGS \
881 LDFLAGS \
882 PATH C_INCLUDE_PATH LD_LIBRARY_PATH \
883 OSFULLSPEC \
884 ; do
885 eval j=\$${i}
886 printf -- "${i} = ${j}\n" >> ${newmk}
887 printf -- "${i}=${j}\n" >> ${newlst}
888 done
890 # Now finally check wether we already have a configuration and if so, wether
891 # all those parameters are still the same.. or something has actually changed
892 if [ -f ${lst} ] && ${cmp} ${newlst} ${lst} >/dev/null 2>&1; then
893 echo 'Configuration is up-to-date'
894 exit 0
895 elif [ -f ${lst} ]; then
896 echo 'Configuration has been updated..'
897 ( eval "${MAKE} -f ./mk.mk clean" )
898 echo
899 else
900 echo 'Shiny configuration..'
903 # Time to redefine helper 1
904 config_exit() {
905 ${rm} -f ${lst} ${h} ${mk}
906 exit ${1}
909 ${mv} -f ${newlst} ${lst}
910 ${mv} -f ${newh} ${h}
911 ${mv} -f ${newmk} ${mk}
913 ## Compile and link checking
915 tmp3=./${tmp0}3$$
916 log=./config.log
917 lib=./config.lib
918 inc=./config.inc
919 makefile=./config.mk
921 # (No function since some shells loose non-exported variables in traps)
922 trap "trap \"\" HUP INT TERM;\
923 ${rm} -f ${lst} ${h} ${mk} ${lib} ${inc}; exit 1" HUP INT TERM
924 trap "trap \"\" HUP INT TERM EXIT;\
925 ${rm} -rf ${tmp0}.* ${tmp0}* ${makefile}" EXIT
927 # Time to redefine helper 2
928 msg() {
929 fmt=${1}
930 shift
931 printf "*** ${fmt}\\n" "${@}"
932 printf -- "${fmt}\\n" "${@}" >&5
934 msg_nonl() {
935 fmt=${1}
936 shift
937 printf "*** ${fmt}\\n" "${@}"
938 printf -- "${fmt}" "${@}" >&5
941 exec 5>&2 > ${log} 2>&1
943 echo "${LIBS}" > ${lib}
944 echo "${INCS}" > ${inc}
945 ${cat} > ${makefile} << \!
946 .SUFFIXES: .o .c .x .y
947 .c.o:
948 $(CC) -I./ $(XINCS) $(CFLAGS) -c $<
949 .c.x:
950 $(CC) -I./ $(XINCS) -E $< >$@
952 $(CC) -I./ $(XINCS) $(CFLAGS) $(LDFLAGS) -o $@ $< $(XLIBS)
953 .y: ;
956 _check_preface() {
957 variable=$1 topic=$2 define=$3
959 echo '**********'
960 msg_nonl ' . %s ... ' "${topic}"
961 echo "/* checked ${topic} */" >> ${h}
962 ${rm} -f ${tmp} ${tmp}.o
963 echo '*** test program is'
964 { echo '#include <'"${h_name}"'>'; cat; } | ${tee} ${tmp}.c
965 #echo '*** the preprocessor generates'
966 #${make} -f ${makefile} ${tmp}.x
967 #${cat} ${tmp}.x
968 echo '*** results are'
971 compile_check() {
972 variable=$1 topic=$2 define=$3
974 _check_preface "${variable}" "${topic}" "${define}"
976 if ${make} -f ${makefile} XINCS="${INCS}" ./${tmp}.o &&
977 [ -f ./${tmp}.o ]; then
978 msg 'yes'
979 echo "${define}" >> ${h}
980 eval have_${variable}=yes
981 return 0
982 else
983 echo "/* ${define} */" >> ${h}
984 msg 'no'
985 eval unset have_${variable}
986 return 1
990 _link_mayrun() {
991 run=$1 variable=$2 topic=$3 define=$4 libs=$5 incs=$6
993 _check_preface "${variable}" "${topic}" "${define}"
995 if ${make} -f ${makefile} XINCS="${INCS} ${incs}" \
996 XLIBS="${LIBS} ${libs}" ./${tmp} &&
997 [ -f ./${tmp} ] &&
998 { [ ${run} -eq 0 ] || ./${tmp}; }; then
999 echo "*** adding INCS<${incs}> LIBS<${libs}>; executed: ${run}"
1000 msg 'yes'
1001 echo "${define}" >> ${h}
1002 LIBS="${LIBS} ${libs}"
1003 echo "${libs}" >> ${lib}
1004 INCS="${INCS} ${incs}"
1005 echo "${incs}" >> ${inc}
1006 eval have_${variable}=yes
1007 return 0
1008 else
1009 msg 'no'
1010 echo "/* ${define} */" >> ${h}
1011 eval unset have_${variable}
1012 return 1
1016 link_check() {
1017 _link_mayrun 0 "${1}" "${2}" "${3}" "${4}" "${5}"
1020 run_check() {
1021 _link_mayrun 1 "${1}" "${2}" "${3}" "${4}" "${5}"
1026 # May be multiline..
1027 [ -n "${OS_DEFINES}" ] && printf -- "${OS_DEFINES}" >> ${h}
1029 if run_check clock_gettime 'clock_gettime(2)' \
1030 '#define HAVE_CLOCK_GETTIME' << \!
1031 #include <time.h>
1032 # include <errno.h>
1033 int main(void){
1034 struct timespec ts;
1036 if(!clock_gettime(CLOCK_REALTIME, &ts) || errno != ENOSYS)
1037 return 0;
1038 return 1;
1041 then
1043 elif run_check clock_gettime 'clock_gettime(2) (via -lrt)' \
1044 '#define HAVE_CLOCK_GETTIME' '-lrt' << \!
1045 #include <time.h>
1046 # include <errno.h>
1047 int main(void){
1048 struct timespec ts;
1050 if(!clock_gettime(CLOCK_REALTIME, &ts) || errno != ENOSYS)
1051 return 0;
1052 return 1;
1055 then
1057 elif run_check gettimeofday 'gettimeofday(2)' \
1058 '#define HAVE_GETTIMEOFDAY' << \!
1059 #include <stdio.h> /* For C89 NULL */
1060 #include <sys/time.h>
1061 # include <errno.h>
1062 int main(void){
1063 struct timeval tv;
1065 if(!gettimeofday(&tv, NULL) || errno != ENOSYS)
1066 return 0;
1067 return 1;
1070 then
1072 else
1073 have_no_subsecond_time=1
1076 if run_check nanosleep 'nanosleep(2)' \
1077 '#define HAVE_NANOSLEEP' << \!
1078 #include <time.h>
1079 # include <errno.h>
1080 int main(void){
1081 struct timespec ts;
1083 ts.tv_sec = 1;
1084 ts.tv_nsec = 100000;
1085 if(!nanosleep(&ts, NULL) || errno != ENOSYS)
1086 return 0;
1087 return 1;
1090 then
1092 elif run_check nanosleep 'nanosleep(2) (via -lrt)' \
1093 '#define HAVE_NANOSLEEP' '-lrt' << \!
1094 #include <time.h>
1095 # include <errno.h>
1096 int main(void){
1097 struct timespec ts;
1099 ts.tv_sec = 1;
1100 ts.tv_nsec = 100000;
1101 if(!nanosleep(&ts, NULL) || errno != ENOSYS)
1102 return 0;
1103 return 1;
1106 then
1108 # link_check is enough for this, that function is so old, trust the proto
1109 elif link_check sleep 'sleep(3)' \
1110 '#define HAVE_SLEEP' << \!
1111 #include <unistd.h>
1112 # include <errno.h>
1113 int main(void){
1114 if(!sleep(1) || errno != ENOSYS)
1115 return 0;
1116 return 1;
1119 then
1121 else
1122 msg 'ERROR: we require one of nanosleep(2) and sleep(3).'
1123 config_exit 1
1126 if run_check userdb 'gete?[gu]id(2), getpwuid(3), getpwnam(3)' << \!
1127 #include <pwd.h>
1128 #include <unistd.h>
1129 # include <errno.h>
1130 int main(void){
1131 struct passwd *pw;
1132 gid_t gid;
1133 uid_t uid;
1135 if((gid = getgid()) != 0)
1136 gid = getegid();
1137 if((uid = getuid()) != 0)
1138 uid = geteuid();
1139 if((pw = getpwuid(uid)) == NULL && errno == ENOSYS)
1140 return 1;
1141 if((pw = getpwnam("root")) == NULL && errno == ENOSYS)
1142 return 1;
1143 return 0;
1146 then
1148 else
1149 msg 'ERROR: we require user and group info / database searches.'
1150 msg 'That much Unix we indulge ourselfs.'
1151 config_exit 1
1154 if link_check snprintf 'v?snprintf(3)' << \!
1155 #include <stdarg.h>
1156 #include <stdio.h>
1157 static void dome(char *buf, ...){
1158 va_list ap;
1160 va_start(ap, buf);
1161 vsnprintf(buf, 20, "%s", ap);
1162 va_end(ap);
1163 return;
1165 int main(void){
1166 char b[20];
1168 snprintf(b, sizeof b, "%s", "string");
1169 dome(b, "string");
1170 return 0;
1173 then
1175 else
1176 msg 'ERROR: we require the snprintf(3) and vsnprintf(3) functions.'
1177 config_exit 1
1180 if link_check environ 'environ(3)' << \!
1181 #include <stdio.h> /* For C89 NULL */
1182 int main(void){
1183 extern char **environ;
1185 return environ[0] == NULL;
1188 then
1190 else
1191 msg 'ERROR: we require the environ(3) array for subprocess control.'
1192 config_exit 1
1195 if link_check termios 'termios.h and tc*(3) family' << \!
1196 #include <termios.h>
1197 int main(void){
1198 struct termios tios;
1200 tcgetattr(0, &tios);
1201 tcsetattr(0, TCSADRAIN | TCSAFLUSH, &tios);
1202 return 0;
1205 then
1207 else
1208 msg 'ERROR: we require termios.h and the tc*() family of functions.'
1209 msg 'That much Unix we indulge ourselfs.'
1210 config_exit 1
1215 run_check pathconf 'pathconf(2)' '#define HAVE_PATHCONF' << \!
1216 #include <unistd.h>
1217 #include <errno.h>
1218 int main(void){
1219 int rv = 0;
1221 errno = 0;
1222 rv |= !(pathconf(".", _PC_NAME_MAX) >= 0 || errno == 0 || errno != ENOSYS);
1223 errno = 0;
1224 rv |= !(pathconf(".", _PC_PATH_MAX) >= 0 || errno == 0 || errno != ENOSYS);
1225 return rv;
1229 run_check pipe2 'pipe2(2)' '#define HAVE_PIPE2' << \!
1230 #include <fcntl.h>
1231 #include <unistd.h>
1232 # include <errno.h>
1233 int main(void){
1234 int fds[2];
1236 if(!pipe2(fds, O_CLOEXEC) || errno != ENOSYS)
1237 return 0;
1238 return 1;
1242 # We use this only then for now (need NOW+1)
1243 run_check utimensat 'utimensat(2)' '#define HAVE_UTIMENSAT' << \!
1244 #include <fcntl.h> /* For AT_* */
1245 #include <sys/stat.h>
1246 # include <errno.h>
1247 int main(void){
1248 struct timespec ts[2];
1250 ts[0].tv_nsec = UTIME_NOW;
1251 ts[1].tv_nsec = UTIME_OMIT;
1252 if(!utimensat(AT_FDCWD, "", ts, 0) || errno != ENOSYS)
1253 return 0;
1254 return 1;
1260 # XXX Add POSIX check once standardized
1261 if link_check posix_random 'arc4random(3)' '#define HAVE_POSIX_RANDOM 0' << \!
1262 #include <stdlib.h>
1263 int main(void){
1264 arc4random();
1265 return 0;
1268 then
1270 elif [ -n "${have_no_subsecond_time}" ]; then
1271 msg 'ERROR: %s %s' 'without a native random' \
1272 'one of clock_gettime(2) and gettimeofday(2) is required.'
1273 config_exit 1
1276 link_check setenv 'setenv(3)/unsetenv(3)' '#define HAVE_SETENV' << \!
1277 #include <stdlib.h>
1278 int main(void){
1279 setenv("s-nail", "to be made nifty!", 1);
1280 unsetenv("s-nail");
1281 return 0;
1285 link_check putc_unlocked 'putc_unlocked(3)' '#define HAVE_PUTC_UNLOCKED' <<\!
1286 #include <stdio.h>
1287 int main(void){
1288 putc_unlocked('@', stdout);
1289 return 0;
1293 link_check fchdir 'fchdir(3)' '#define HAVE_FCHDIR' << \!
1294 #include <unistd.h>
1295 int main(void){
1296 fchdir(0);
1297 return 0;
1301 link_check setlocale 'setlocale(3)' '#define HAVE_SETLOCALE' << \!
1302 #include <locale.h>
1303 int main(void){
1304 setlocale(LC_ALL, "");
1305 return 0;
1309 if [ "${have_setlocale}" = yes ]; then
1310 link_check c90amend1 'ISO/IEC 9899:1990/Amendment 1:1995' \
1311 '#define HAVE_C90AMEND1' << \!
1312 #include <limits.h>
1313 #include <stdlib.h>
1314 #include <wchar.h>
1315 #include <wctype.h>
1316 int main(void){
1317 char mbb[MB_LEN_MAX + 1];
1318 wchar_t wc;
1320 iswprint(L'c');
1321 towupper(L'c');
1322 mbtowc(&wc, "x", 1);
1323 mbrtowc(&wc, "x", 1, NULL);
1324 wctomb(mbb, wc);
1325 return (mblen("\0", 1) == 0);
1329 if [ "${have_c90amend1}" = yes ]; then
1330 link_check wcwidth 'wcwidth(3)' '#define HAVE_WCWIDTH' << \!
1331 #include <wchar.h>
1332 int main(void){
1333 wcwidth(L'c');
1334 return 0;
1339 link_check nl_langinfo 'nl_langinfo(3)' '#define HAVE_NL_LANGINFO' << \!
1340 #include <langinfo.h>
1341 #include <stdlib.h>
1342 int main(void){
1343 nl_langinfo(DAY_1);
1344 return (nl_langinfo(CODESET) == NULL);
1347 fi # have_setlocale
1349 run_check realpath 'realpath(3)' '#define HAVE_REALPATH' << \!
1350 #include <stdlib.h>
1351 int main(void){
1352 #if 1 /* TODO for now we use realpath(3) without NULL as 2nd arg! */
1353 /* (And note that on Linux tcc(1) otherwise didn't detect once tested! */
1354 char x_buf[4096], *x = realpath(".", x_buf);
1356 return (x != NULL) ? 0 : 1;
1357 #else
1358 char *x = realpath(".", NULL), *y = realpath("/", NULL);
1360 return (x != NULL && y != NULL) ? 0 : 1;
1361 #endif
1365 link_check wordexp 'wordexp(3)' '#define HAVE_WORDEXP' << \!
1366 #include <stdio.h> /* For C89 NULL */
1367 #include <wordexp.h>
1368 int main(void){
1369 wordexp(NULL, NULL, 0);
1370 return 0;
1376 if feat_yes DEBUG; then
1377 echo '#define HAVE_DEBUG' >> ${h}
1380 if feat_yes AMALGAMATION; then
1381 echo '#define HAVE_AMALGAMATION' >> ${h}
1384 if feat_no NOALLOCA; then
1385 # Due to NetBSD PR lib/47120 it seems best not to use non-cc-builtin
1386 # versions of alloca(3) since modern compilers just can't be trusted
1387 # not to overoptimize and silently break some code
1388 run_check alloca '__builtin_alloca()' \
1389 '#define HAVE_ALLOCA __builtin_alloca' << \!
1390 #include <stdio.h> /* For C89 NULL */
1391 int main(void){
1392 void *vp = __builtin_alloca(1);
1394 return (vp != NULL);
1399 if feat_yes DEVEL; then
1400 echo '#define HAVE_DEVEL' >> ${h}
1403 if feat_yes NYD2; then
1404 echo '#define HAVE_NYD2' >> ${h}
1409 if feat_yes DOTLOCK; then
1410 if run_check readlink 'readlink(2)' << \!
1411 #include <unistd.h>
1412 # include <errno.h>
1413 int main(void){
1414 char buf[128];
1416 if(!readlink("here", buf, sizeof buf) || errno != ENOSYS)
1417 return 0;
1418 return 1;
1421 then
1423 else
1424 feat_bail_required DOTLOCK
1428 if feat_yes DOTLOCK; then
1429 if run_check fchown 'fchown(2)' << \!
1430 #include <unistd.h>
1431 # include <errno.h>
1432 int main(void){
1433 if(!fchown(0, 0, 0) || errno != ENOSYS)
1434 return 0;
1435 return 1;
1438 then
1440 else
1441 feat_bail_required DOTLOCK
1447 if feat_yes ICONV; then
1448 ${cat} > ${tmp2}.c << \!
1449 #include <stdio.h> /* For C89 NULL */
1450 #include <iconv.h>
1451 int main(void){
1452 iconv_t id;
1454 id = iconv_open("foo", "bar");
1455 iconv(id, NULL, NULL, NULL, NULL);
1456 iconv_close(id);
1457 return 0;
1460 < ${tmp2}.c link_check iconv 'iconv(3) functionality' \
1461 '#define HAVE_ICONV' ||
1462 < ${tmp2}.c link_check iconv 'iconv(3) functionality (via -liconv)' \
1463 '#define HAVE_ICONV' '-liconv' ||
1464 feat_bail_required ICONV
1465 else
1466 echo '/* WANT_ICONV=0 */' >> ${h}
1467 fi # feat_yes ICONV
1469 if feat_yes SOCKETS || feat_yes SPAM_SPAMD; then
1470 ${cat} > ${tmp2}.c << \!
1471 #include <sys/types.h>
1472 #include <sys/socket.h>
1473 #include <sys/un.h>
1474 # include <errno.h>
1475 int main(void){
1476 struct sockaddr_un soun;
1478 if(socket(AF_UNIX, SOCK_STREAM, 0) == -1 && errno == ENOSYS)
1479 return 1;
1480 if(connect(0, (struct sockaddr*)&soun, 0) == -1 && errno == ENOSYS)
1481 return 1;
1482 if(shutdown(0, SHUT_RD | SHUT_WR | SHUT_RDWR) == -1 && errno == ENOSYS)
1483 return 1;
1484 return 0;
1488 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets' \
1489 '#define HAVE_UNIX_SOCKETS' ||
1490 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets (via -lnsl)' \
1491 '#define HAVE_UNIX_SOCKETS' '-lnsl' ||
1492 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets (via -lsocket -lnsl)' \
1493 '#define HAVE_UNIX_SOCKETS' '-lsocket -lnsl'
1496 if feat_yes SOCKETS; then
1497 ${cat} > ${tmp2}.c << \!
1498 #include "config.h"
1499 #include <sys/types.h>
1500 #include <sys/socket.h>
1501 #include <netinet/in.h>
1502 # include <errno.h>
1503 int main(void){
1504 struct sockaddr s;
1506 if(socket(AF_INET, SOCK_STREAM, 0) == -1 && errno == ENOSYS)
1507 return 1;
1508 if(connect(0, &s, 0) == -1 && errno == ENOSYS)
1509 return 1;
1510 return 0;
1514 < ${tmp2}.c run_check sockets 'sockets' \
1515 '#define HAVE_SOCKETS' ||
1516 < ${tmp2}.c run_check sockets 'sockets (via -lnsl)' \
1517 '#define HAVE_SOCKETS' '-lnsl' ||
1518 < ${tmp2}.c run_check sockets 'sockets (via -lsocket -lnsl)' \
1519 '#define HAVE_SOCKETS' '-lsocket -lnsl' ||
1520 feat_bail_required SOCKETS
1521 else
1522 echo '/* WANT_SOCKETS=0 */' >> ${h}
1523 fi # feat_yes SOCKETS
1525 if feat_yes SOCKETS; then
1526 link_check getaddrinfo 'getaddrinfo(3)' \
1527 '#define HAVE_GETADDRINFO' << \!
1528 #include "config.h"
1529 #include <sys/types.h>
1530 #include <sys/socket.h>
1531 #include <stdio.h>
1532 #include <netdb.h>
1533 int main(void){
1534 struct addrinfo a, *ap;
1535 int lrv;
1537 switch((lrv = getaddrinfo("foo", "0", &a, &ap))){
1538 case EAI_NONAME:
1539 case EAI_SERVICE:
1540 default:
1541 fprintf(stderr, "%s\n", gai_strerror(lrv));
1542 case 0:
1543 break;
1545 return 0;
1550 if feat_yes SOCKETS && [ -z "${have_getaddrinfo}" ]; then
1551 compile_check arpa_inet_h '<arpa/inet.h>' \
1552 '#define HAVE_ARPA_INET_H' << \!
1553 #include "config.h"
1554 #include <sys/types.h>
1555 #include <sys/socket.h>
1556 #include <netdb.h>
1557 #include <netinet/in.h>
1558 #include <arpa/inet.h>
1561 ${cat} > ${tmp2}.c << \!
1562 #include "config.h"
1563 #include <sys/types.h>
1564 #include <sys/socket.h>
1565 #include <stdio.h>
1566 #include <string.h>
1567 #include <netdb.h>
1568 #include <netinet/in.h>
1569 #ifdef HAVE_ARPA_INET_H
1570 #include <arpa/inet.h>
1571 #endif
1572 int main(void){
1573 struct sockaddr_in servaddr;
1574 unsigned short portno;
1575 struct servent *ep;
1576 struct hostent *hp;
1577 struct in_addr **pptr;
1579 portno = 0;
1580 if((ep = getservbyname("POPPY-PORT", "tcp")) != NULL)
1581 portno = (unsigned short)ep->s_port;
1583 if((hp = gethostbyname("POPPY-HOST")) != NULL){
1584 pptr = (struct in_addr**)hp->h_addr_list;
1585 if(hp->h_addrtype != AF_INET)
1586 fprintf(stderr, "au\n");
1587 }else{
1588 switch(h_errno){
1589 case HOST_NOT_FOUND:
1590 case TRY_AGAIN:
1591 case NO_RECOVERY:
1592 case NO_DATA:
1593 break;
1594 default:
1595 fprintf(stderr, "au\n");
1596 break;
1600 memset(&servaddr, 0, sizeof servaddr);
1601 servaddr.sin_family = AF_INET;
1602 servaddr.sin_port = htons(portno);
1603 memcpy(&servaddr.sin_addr, *pptr, sizeof(struct in_addr));
1604 fprintf(stderr, "Would connect to %s:%d ...\n",
1605 inet_ntoa(**pptr), (int)portno);
1606 return 0;
1610 < ${tmp2}.c link_check gethostbyname 'get(serv|host)byname(3)' ||
1611 < ${tmp2}.c link_check gethostbyname \
1612 'get(serv|host)byname(3) (via -nsl)' '' '-lnsl' ||
1613 < ${tmp2}.c link_check gethostbyname \
1614 'get(serv|host)byname(3) (via -lsocket -nsl)' \
1615 '' '-lsocket -lnsl' ||
1616 feat_bail_required SOCKETS
1619 feat_yes SOCKETS &&
1620 run_check setsockopt 'setsockopt(2)' '#define HAVE_SETSOCKOPT' << \!
1621 #include <sys/socket.h>
1622 #include <stdlib.h>
1623 # include <errno.h>
1624 int main(void){
1625 int sockfd = 3;
1627 if(setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, NULL, 0) == -1 &&
1628 errno == ENOSYS)
1629 return 1;
1630 return 0;
1634 feat_yes SOCKETS && [ -n "${have_setsockopt}" ] &&
1635 link_check so_sndtimeo 'SO_SNDTIMEO' '#define HAVE_SO_SNDTIMEO' << \!
1636 #include <sys/socket.h>
1637 #include <stdlib.h>
1638 int main(void){
1639 struct timeval tv;
1640 int sockfd = 3;
1642 tv.tv_sec = 42;
1643 tv.tv_usec = 21;
1644 setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof tv);
1645 setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof tv);
1646 return 0;
1650 feat_yes SOCKETS && [ -n "${have_setsockopt}" ] &&
1651 link_check so_linger 'SO_LINGER' '#define HAVE_SO_LINGER' << \!
1652 #include <sys/socket.h>
1653 #include <stdlib.h>
1654 int main(void){
1655 struct linger li;
1656 int sockfd = 3;
1658 li.l_onoff = 1;
1659 li.l_linger = 42;
1660 setsockopt(sockfd, SOL_SOCKET, SO_LINGER, &li, sizeof li);
1661 return 0;
1665 if feat_yes SSL; then
1666 if link_check openssl 'OpenSSL (new style *_client_method(3ssl))' \
1667 '#define HAVE_SSL
1668 #define HAVE_OPENSSL 10100' '-lssl -lcrypto' << \!
1669 #include <openssl/ssl.h>
1670 #include <openssl/err.h>
1671 #include <openssl/x509v3.h>
1672 #include <openssl/x509.h>
1673 #include <openssl/rand.h>
1674 #ifdef OPENSSL_NO_TLS1 /* TODO only deduced from OPENSSL_NO_SSL[23]! */
1675 # error We need TLSv1.
1676 #endif
1677 int main(void){
1678 SSL_CTX *ctx = SSL_CTX_new(TLS_client_method());
1680 SSL_CTX_free(ctx);
1681 PEM_read_PrivateKey(0, 0, 0, 0);
1682 return 0;
1685 then
1687 elif link_check openssl 'OpenSSL (old style *_client_method(3ssl))' \
1688 '#define HAVE_SSL
1689 #define HAVE_OPENSSL 10000' '-lssl -lcrypto' << \!
1690 #include <openssl/ssl.h>
1691 #include <openssl/err.h>
1692 #include <openssl/x509v3.h>
1693 #include <openssl/x509.h>
1694 #include <openssl/rand.h>
1695 #if defined OPENSSL_NO_SSL3 &&\
1696 defined OPENSSL_NO_TLS1 /* TODO only deduced from OPENSSL_NO_SSL[23]! */
1697 # error We need one of SSLv3 and TLSv1.
1698 #endif
1699 int main(void){
1700 SSL_CTX *ctx = SSL_CTX_new(SSLv23_client_method());
1702 SSL_CTX_free(ctx);
1703 PEM_read_PrivateKey(0, 0, 0, 0);
1704 return 0;
1707 then
1709 else
1710 feat_bail_required SSL
1713 if [ "${have_openssl}" = 'yes' ]; then
1714 compile_check stack_of 'OpenSSL STACK_OF()' \
1715 '#define HAVE_OPENSSL_STACK_OF' << \!
1716 #include <stdio.h> /* For C89 NULL */
1717 #include <openssl/ssl.h>
1718 #include <openssl/err.h>
1719 #include <openssl/x509v3.h>
1720 #include <openssl/x509.h>
1721 #include <openssl/rand.h>
1722 int main(void){
1723 STACK_OF(GENERAL_NAME) *gens = NULL;
1725 printf("%p", gens); /* to use it */
1726 return 0;
1730 link_check ossl_conf 'OpenSSL_modules_load_file() support' \
1731 '#define HAVE_OPENSSL_CONFIG' << \!
1732 #include <stdio.h> /* For C89 NULL */
1733 #include <openssl/conf.h>
1734 int main(void){
1735 CONF_modules_load_file(NULL, NULL, CONF_MFLAGS_IGNORE_MISSING_FILE);
1736 CONF_modules_free();
1737 return 0;
1741 link_check ossl_conf_ctx 'OpenSSL SSL_CONF_CTX support' \
1742 '#define HAVE_OPENSSL_CONF_CTX' << \!
1743 #include "config.h"
1744 #include <openssl/ssl.h>
1745 #include <openssl/err.h>
1746 int main(void){
1747 #if HAVE_OPENSSL < 10100
1748 SSL_CTX *ctx = SSL_CTX_new(SSLv23_client_method());
1749 #else
1750 SSL_CTX *ctx = SSL_CTX_new(TLS_client_method());
1751 #endif
1752 SSL_CONF_CTX *cctx = SSL_CONF_CTX_new();
1754 SSL_CONF_CTX_set_flags(cctx,
1755 SSL_CONF_FLAG_FILE | SSL_CONF_FLAG_CLIENT |
1756 SSL_CONF_FLAG_CERTIFICATE | SSL_CONF_FLAG_SHOW_ERRORS);
1757 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx);
1758 SSL_CONF_cmd(cctx, "Protocol", "ALL");
1759 SSL_CONF_CTX_finish(cctx);
1760 SSL_CONF_CTX_free(cctx);
1761 SSL_CTX_free(ctx);
1762 return 0;
1766 link_check rand_egd 'OpenSSL RAND_egd()' \
1767 '#define HAVE_OPENSSL_RAND_EGD' << \!
1768 #include <openssl/rand.h>
1769 int main(void){
1770 return RAND_egd("some.where") > 0;
1774 if feat_yes SSL_ALL_ALGORITHMS; then
1775 if link_check ssl_all_algo 'OpenSSL all-algorithms support' \
1776 '#define HAVE_SSL_ALL_ALGORITHMS' << \!
1777 #include <openssl/evp.h>
1778 int main(void){
1779 OpenSSL_add_all_algorithms();
1780 EVP_get_cipherbyname("two cents i never exist");
1781 EVP_cleanup();
1782 return 0;
1785 then
1787 else
1788 feat_bail_required SSL_ALL_ALGORITHMS
1790 fi # SSL_ALL_ALGORITHMS
1792 if feat_yes MD5 && feat_no NOEXTMD5; then
1793 run_check openssl_md5 'MD5 digest in OpenSSL' \
1794 '#define HAVE_OPENSSL_MD5' << \!
1795 #include <stdlib.h>
1796 #include <string.h>
1797 #include <openssl/md5.h>
1798 int main(void){
1799 char const dat[] = "abrakadabrafidibus";
1800 char dig[16], hex[16 * 2];
1801 MD5_CTX ctx;
1802 size_t i, j;
1804 memset(dig, 0, sizeof(dig));
1805 memset(hex, 0, sizeof(hex));
1806 MD5_Init(&ctx);
1807 MD5_Update(&ctx, dat, sizeof(dat) - 1);
1808 MD5_Final(dig, &ctx);
1810 #define hexchar(n) ((n) > 9 ? (n) - 10 + 'a' : (n) + '0')
1811 for(i = 0; i < sizeof(hex) / 2; i++){
1812 j = i << 1;
1813 hex[j] = hexchar((dig[i] & 0xf0) >> 4);
1814 hex[++j] = hexchar(dig[i] & 0x0f);
1816 return !!memcmp("6d7d0a3d949da2e96f2aa010f65d8326", hex, sizeof(hex));
1819 fi # feat_yes MD5 && feat_no NOEXTMD5
1821 else
1822 echo '/* WANT_SSL=0 */' >> ${h}
1823 fi # feat_yes SSL
1825 if feat_yes SMTP; then
1826 echo '#define HAVE_SMTP' >> ${h}
1827 else
1828 echo '/* WANT_SMTP=0 */' >> ${h}
1831 if feat_yes POP3; then
1832 echo '#define HAVE_POP3' >> ${h}
1833 else
1834 echo '/* WANT_POP3=0 */' >> ${h}
1837 if feat_yes GSSAPI; then
1838 ${cat} > ${tmp2}.c << \!
1839 #include <gssapi/gssapi.h>
1840 int main(void){
1841 gss_import_name(0, 0, GSS_C_NT_HOSTBASED_SERVICE, 0);
1842 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
1843 return 0;
1846 ${sed} -e '1s/gssapi\///' < ${tmp2}.c > ${tmp3}.c
1848 if command -v krb5-config >/dev/null 2>&1; then
1849 i=`command -v krb5-config`
1850 GSS_LIBS="`CFLAGS= ${i} --libs gssapi`"
1851 GSS_INCS="`CFLAGS= ${i} --cflags`"
1852 i='GSS-API via krb5-config(1)'
1853 else
1854 GSS_LIBS='-lgssapi'
1855 GSS_INCS=
1856 i='GSS-API in gssapi/gssapi.h, libgssapi'
1858 if < ${tmp2}.c link_check gss \
1859 "${i}" '#define HAVE_GSSAPI' "${GSS_LIBS}" "${GSS_INCS}" ||\
1860 < ${tmp3}.c link_check gss \
1861 'GSS-API in gssapi.h, libgssapi' \
1862 '#define HAVE_GSSAPI
1863 #define GSSAPI_REG_INCLUDE' \
1864 '-lgssapi' ||\
1865 < ${tmp2}.c link_check gss 'GSS-API in libgssapi_krb5' \
1866 '#define HAVE_GSSAPI' \
1867 '-lgssapi_krb5' ||\
1868 < ${tmp3}.c link_check gss \
1869 'GSS-API in libgssapi, OpenBSD-style (pre 5.3)' \
1870 '#define HAVE_GSSAPI
1871 #define GSS_REG_INCLUDE' \
1872 '-lgssapi -lkrb5 -lcrypto' \
1873 '-I/usr/include/kerberosV' ||\
1874 < ${tmp2}.c link_check gss 'GSS-API in libgss' \
1875 '#define HAVE_GSSAPI' \
1876 '-lgss' ||\
1877 link_check gss 'GSS-API in libgssapi_krb5, old-style' \
1878 '#define HAVE_GSSAPI
1879 #define GSSAPI_OLD_STYLE' \
1880 '-lgssapi_krb5' << \!
1881 #include <gssapi/gssapi.h>
1882 #include <gssapi/gssapi_generic.h>
1883 int main(void){
1884 gss_import_name(0, 0, gss_nt_service_name, 0);
1885 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
1886 return 0;
1889 then
1891 else
1892 feat_bail_required GSSAPI
1894 else
1895 echo '/* WANT_GSSAPI=0 */' >> ${h}
1896 fi # feat_yes GSSAPI
1898 if feat_yes NETRC; then
1899 echo '#define HAVE_NETRC' >> ${h}
1900 else
1901 echo '/* WANT_NETRC=0 */' >> ${h}
1904 if feat_yes AGENT; then
1905 echo '#define HAVE_AGENT' >> ${h}
1906 else
1907 echo '/* WANT_AGENT=0 */' >> ${h}
1910 if feat_yes IDNA; then
1911 if link_check idna 'GNU Libidn' '#define HAVE_IDNA HAVE_IDNA_LIBIDNA' \
1912 '-lidn' << \!
1913 #include <idna.h>
1914 #include <idn-free.h>
1915 #include <stringprep.h>
1916 int main(void){
1917 char *utf8, *idna_ascii, *idna_utf8;
1919 utf8 = stringprep_locale_to_utf8("does.this.work");
1920 if (idna_to_ascii_8z(utf8, &idna_ascii, IDNA_USE_STD3_ASCII_RULES)
1921 != IDNA_SUCCESS)
1922 return 1;
1923 idn_free(idna_ascii);
1924 /* (Rather link check only here) */
1925 idna_utf8 = stringprep_convert(idna_ascii, "UTF-8", "de_DE");
1926 return 0;
1929 then
1931 elif link_check idna 'idnkit' '#define HAVE_IDNA HAVE_IDNA_IDNKIT' \
1932 '-lidnkit' << \!
1933 #include <stdio.h>
1934 #include <idn/api.h>
1935 #include <idn/result.h>
1936 int main(void){
1937 idn_result_t r;
1938 char ace_name[256];
1939 char local_name[256];
1941 r = idn_encodename(IDN_ENCODE_APP, "does.this.work", ace_name,
1942 sizeof(ace_name));
1943 if (r != idn_success) {
1944 fprintf(stderr, "idn_encodename failed: %s\n", idn_result_tostring(r));
1945 return 1;
1947 r = idn_decodename(IDN_DECODE_APP, ace_name, local_name, sizeof(local_name));
1948 if (r != idn_success) {
1949 fprintf(stderr, "idn_decodename failed: %s\n", idn_result_tostring(r));
1950 return 1;
1952 return 0;
1955 then
1957 else
1958 feat_bail_required IDNA
1961 if [ -n "${have_idna}" ]; then
1962 echo '#define HAVE_IDNA_LIBIDNA 0' >> ${h}
1963 echo '#define HAVE_IDNA_IDNKIT 1' >> ${h}
1965 else
1966 echo '/* WANT_IDNA=0 */' >> ${h}
1969 if feat_yes IMAP_SEARCH; then
1970 echo '#define HAVE_IMAP_SEARCH' >> ${h}
1971 else
1972 echo '/* WANT_IMAP_SEARCH=0 */' >> ${h}
1975 if feat_yes REGEX; then
1976 if link_check regex 'regular expressions' '#define HAVE_REGEX' << \!
1977 #include <regex.h>
1978 #include <stdlib.h>
1979 int main(void){
1980 int status;
1981 regex_t re;
1983 if (regcomp(&re, ".*bsd", REG_EXTENDED | REG_ICASE | REG_NOSUB) != 0)
1984 return 1;
1985 status = regexec(&re, "plan9", 0,NULL, 0);
1986 regfree(&re);
1987 return !(status == REG_NOMATCH);
1990 then
1992 else
1993 feat_bail_required REGEX
1995 else
1996 echo '/* WANT_REGEX=0 */' >> ${h}
1999 if feat_yes READLINE; then
2000 __edrdlib() {
2001 link_check readline "for readline(3) (${1})" \
2002 '#define HAVE_READLINE' "${1}" << \!
2003 #include <stdio.h>
2004 #include <readline/history.h>
2005 #include <readline/readline.h>
2006 int main(void){
2007 char *rl;
2008 HISTORY_STATE *hs;
2009 HIST_ENTRY **he;
2010 int i;
2012 using_history();
2013 read_history("");
2014 stifle_history(242);
2015 rl = readline("Enter a line:");
2016 if (rl && *rl)
2017 add_history(rl);
2018 write_history("");
2019 rl_extend_line_buffer(10);
2020 rl_point = rl_end = 10;
2021 rl_pre_input_hook = (rl_hook_func_t*)NULL;
2022 rl_forced_update_display();
2023 clear_history();
2024 hs = history_get_history_state();
2025 i = hs->length;
2026 he = history_list();
2027 if (i > 0)
2028 rl = he[0]->line;
2029 rl_free_line_state();
2030 rl_cleanup_after_signal();
2031 rl_reset_after_signal();
2032 return 0;
2037 __edrdlib -lreadline ||
2038 __edrdlib '-lreadline -ltermcap' || feat_bail_required READLINE
2039 [ -n "${have_readline}" ] && WANT_TABEXPAND=1
2042 if feat_yes EDITLINE && [ -z "${have_readline}" ]; then
2043 __edlib() {
2044 link_check editline "for editline(3) (${1})" \
2045 '#define HAVE_EDITLINE' "${1}" << \!
2046 #include <stdio.h> /* For C89 NULL */
2047 #include <histedit.h>
2048 static char * getprompt(void) { return (char*)"ok"; }
2049 int main(void)
2051 EditLine *el_el = el_init("TEST", stdin, stdout, stderr);
2052 HistEvent he;
2053 History *el_hcom = history_init();
2054 history(el_hcom, &he, H_SETSIZE, 242);
2055 el_set(el_el, EL_SIGNAL, 0);
2056 el_set(el_el, EL_TERMINAL, NULL);
2057 el_set(el_el, EL_HIST, &history, el_hcom);
2058 el_set(el_el, EL_EDITOR, "emacs");
2059 el_set(el_el, EL_PROMPT, &getprompt);
2060 el_source(el_el, NULL);
2061 history(el_hcom, &he, H_GETSIZE);
2062 history(el_hcom, &he, H_CLEAR);
2063 el_end(el_el);
2064 /* TODO add loader and addfn checks */
2065 history_end(el_hcom);
2066 return 0;
2071 __edlib -ledit ||
2072 __edlib '-ledit -ltermcap' || feat_bail_required EDITLINE
2073 [ -n "${have_editline}" ] && WANT_TABEXPAND=0
2076 if feat_yes NCL && [ -z "${have_editline}" ] && [ -z "${have_readline}" ] &&\
2077 [ -n "${have_c90amend1}" ]; then
2078 have_ncl=1
2079 echo '#define HAVE_NCL' >> ${h}
2080 else
2081 feat_bail_required NCL
2082 echo '/* WANT_{READLINE,EDITLINE,NCL}=0 */' >> ${h}
2085 # Generic have-a-command-line-editor switch for those who need it below
2086 if [ -n "${have_ncl}" ] || [ -n "${have_editline}" ] ||\
2087 [ -n "${have_readline}" ]; then
2088 have_cle=1
2091 if [ -n "${have_cle}" ] && feat_yes HISTORY; then
2092 echo '#define HAVE_HISTORY' >> ${h}
2093 else
2094 echo '/* WANT_HISTORY=0 */' >> ${h}
2097 if [ -n "${have_cle}" ] && feat_yes TABEXPAND; then
2098 echo '#define HAVE_TABEXPAND' >> ${h}
2099 else
2100 echo '/* WANT_TABEXPAND=0 */' >> ${h}
2103 if feat_yes TERMCAP; then
2104 __termlib() {
2105 link_check termcap "for termcap(3) (via ${4})" \
2106 "#define HAVE_TERMCAP${3}" "${1}" << _EOT
2107 #include <stdio.h>
2108 #include <stdlib.h>
2109 #include <string.h>
2110 ${2}
2111 #include <term.h>
2112 #define PTR2SIZE(X) ((unsigned long)(X))
2113 #define UNCONST(P) ((void*)(unsigned long)(void const*)(P))
2114 static char *_termcap_buffer, *_termcap_ti, *_termcap_te;
2115 int main(void){
2116 char buf[1024+512], cmdbuf[2048], *cpb, *cpti, *cpte, *cp;
2118 tgetent(buf, getenv("TERM"));
2119 cpb = cmdbuf;
2120 cpti = cpb;
2121 if ((cp = tgetstr(UNCONST("ti"), &cpb)) == NULL)
2122 goto jleave;
2123 cpte = cpb;
2124 if ((cp = tgetstr(UNCONST("te"), &cpb)) == NULL)
2125 goto jleave;
2126 _termcap_buffer = malloc(PTR2SIZE(cpb - cmdbuf));
2127 memcpy(_termcap_buffer, cmdbuf, PTR2SIZE(cpb - cmdbuf));
2128 _termcap_ti = _termcap_buffer + PTR2SIZE(cpti - cmdbuf);
2129 _termcap_te = _termcap_ti + PTR2SIZE(cpte - cpti);
2130 tputs(_termcap_ti, 1, &putchar);
2131 tputs(_termcap_te, 1, &putchar);
2132 jleave:
2133 return (cp == NULL);
2135 _EOT
2138 __termlib -ltermcap '' '' termcap ||
2139 __termlib -ltermcap '#include <curses.h>' '
2140 #define HAVE_TERMCAP_CURSES' \
2141 'curses.h / -ltermcap' ||
2142 __termlib -lcurses '#include <curses.h>' '
2143 #define HAVE_TERMCAP_CURSES' \
2144 'curses.h / -lcurses' ||
2145 feat_bail_required TERMCAP
2146 else
2147 echo '/* WANT_TERMCAP=0 */' >> ${h}
2150 if feat_yes ERRORS; then
2151 echo '#define HAVE_ERRORS' >> ${h}
2152 else
2153 echo '/* WANT_ERRORS=0 */' >> ${h}
2158 if feat_yes SPAM_SPAMC; then
2159 echo '#define HAVE_SPAM_SPAMC' >> ${h}
2160 if command -v spamc >/dev/null 2>&1; then
2161 echo "#define SPAM_SPAMC_PATH \"`command -v spamc`\"" >> ${h}
2163 else
2164 echo '/* WANT_SPAM_SPAMC=0 */' >> ${h}
2167 if feat_yes SPAM_SPAMD && [ -n "${have_af_unix}" ]; then
2168 echo '#define HAVE_SPAM_SPAMD' >> ${h}
2169 else
2170 feat_bail_required SPAM_SPAMD
2171 echo '/* WANT_SPAM_SPAMD=0 */' >> ${h}
2174 if feat_yes SPAM_FILTER; then
2175 echo '#define HAVE_SPAM_FILTER' >> ${h}
2176 else
2177 echo '/* WANT_SPAM_FILTER=0 */' >> ${h}
2180 if feat_yes SPAM_SPAMC || feat_yes SPAM_SPAMD || feat_yes SPAM_FILTER; then
2181 echo '#define HAVE_SPAM' >> ${h}
2182 else
2183 echo '/* HAVE_SPAM */' >> ${h}
2186 if feat_yes DOCSTRINGS; then
2187 echo '#define HAVE_DOCSTRINGS' >> ${h}
2188 else
2189 echo '/* WANT_DOCSTRINGS=0 */' >> ${h}
2192 if feat_yes QUOTE_FOLD &&\
2193 [ -n "${have_c90amend1}" ] && [ -n "${have_wcwidth}" ]; then
2194 echo '#define HAVE_QUOTE_FOLD' >> ${h}
2195 else
2196 echo '/* WANT_QUOTE_FOLD=0 */' >> ${h}
2199 if feat_yes FILTER_HTML_TAGSOUP; then
2200 echo '#define HAVE_FILTER_HTML_TAGSOUP' >> ${h}
2201 else
2202 echo '/* WANT_FILTER_HTML_TAGSOUP=0 */' >> ${h}
2205 if feat_yes COLOUR; then
2206 echo '#define HAVE_COLOUR' >> ${h}
2207 else
2208 echo '/* WANT_COLOUR=0 */' >> ${h}
2211 if feat_yes DOTLOCK; then
2212 echo '#define HAVE_DOTLOCK' >> ${h}
2213 else
2214 echo '/* WANT_DOTLOCK=0 */' >> ${h}
2217 if feat_yes MD5; then
2218 echo '#define HAVE_MD5' >> ${h}
2219 else
2220 echo '/* WANT_MD5=0 */' >> ${h}
2223 ## Summarizing
2225 # Since we cat(1) the content of those to cc/"ld", convert them to single line
2226 squeeze_em() {
2227 < "${1}" > "${2}" ${awk} \
2228 'BEGIN {ORS = " "} /^[^#]/ {print} {next} END {ORS = ""; print "\n"}'
2230 ${rm} -f ${tmp}
2231 squeeze_em ${inc} ${tmp}
2232 ${mv} ${tmp} ${inc}
2233 squeeze_em ${lib} ${tmp}
2234 ${mv} ${tmp} ${lib}
2236 # config.h
2237 ${mv} ${h} ${tmp}
2238 printf '#ifndef _CONFIG_H\n# define _CONFIG_H 1\n' > ${h}
2239 ${cat} ${tmp} >> ${h}
2240 ${rm} -f ${tmp}
2242 printf '\n/* The "feature string" */\n' >> ${h}
2243 printf '# if defined _ACCMACVAR_SOURCE || defined HAVE_AMALGAMATION\n' >> ${h}
2244 printf 'static char const _features[] = "MIME"\n' >> ${h}
2245 printf '# ifdef HAVE_SETLOCALE\n ",LOCALES"\n# endif\n' >> ${h}
2246 printf '# ifdef HAVE_C90AMEND1\n ",MULTIBYTE CHARSETS"\n# endif\n' >> ${h}
2247 printf '# ifdef HAVE_NL_LANGINFO\n ",TERMINAL CHARSET"\n# endif\n' >> ${h}
2248 printf '# ifdef HAVE_ICONV\n ",ICONV"\n# endif\n' >> ${h}
2249 printf '# ifdef HAVE_SOCKETS\n ",NETWORK"\n# endif\n' >> ${h}
2250 printf '# ifdef HAVE_SSL\n ",S/MIME,SSL/TLS"\n# endif\n' >> ${h}
2251 printf '# ifdef HAVE_SSL_ALL_ALGORITHMS\n ",SSL-ALL-ALGORITHMS"\n# endif\n'\
2252 >> ${h}
2253 printf '# ifdef HAVE_SMTP\n ",SMTP"\n# endif\n' >> ${h}
2254 printf '# ifdef HAVE_POP3\n ",POP3"\n# endif\n' >> ${h}
2255 printf '# ifdef HAVE_GSSAPI\n ",GSS-API"\n# endif\n' >> ${h}
2256 printf '# ifdef HAVE_MD5\n ",MD5 [APOP,CRAM-MD5]"\n# endif\n' >> ${h}
2257 printf '# ifdef HAVE_NETRC\n ",NETRC"\n# endif\n' >> ${h}
2258 printf '# ifdef HAVE_AGENT\n ",AGENT"\n# endif\n' >> ${h}
2259 printf '# ifdef HAVE_IDNA\n ",IDNA"\n# endif\n' >> ${h}
2260 printf '# ifdef HAVE_IMAP_SEARCH\n ",IMAP-SEARCH"\n# endif\n' >> ${h}
2261 printf '# ifdef HAVE_REGEX\n ",REGEX"\n# endif\n' >> ${h}
2262 printf '# ifdef HAVE_READLINE\n ",READLINE"\n# endif\n' >> ${h}
2263 printf '# ifdef HAVE_EDITLINE\n ",EDITLINE"\n# endif\n' >> ${h}
2264 printf '# ifdef HAVE_NCL\n ",NCL"\n# endif\n' >> ${h}
2265 printf '# ifdef HAVE_TABEXPAND\n ",TABEXPAND"\n# endif\n' >> ${h}
2266 printf '# ifdef HAVE_HISTORY\n ",HISTORY"\n# endif\n' >> ${h}
2267 printf '# ifdef HAVE_TERMCAP\n ",TERMCAP"\n# endif\n' >> ${h}
2268 printf '# ifdef HAVE_SPAM_SPAMC\n ",SPAMC"\n# endif\n' >> ${h}
2269 printf '# ifdef HAVE_SPAM_SPAMD\n ",SPAMD"\n# endif\n' >> ${h}
2270 printf '# ifdef HAVE_SPAM_FILTER\n ",SPAMFILTER"\n# endif\n' >> ${h}
2271 printf '# ifdef HAVE_DOCSTRINGS\n ",DOCSTRINGS"\n# endif\n' >> ${h}
2272 printf '# ifdef HAVE_QUOTE_FOLD\n ",QUOTE-FOLD"\n# endif\n' >> ${h}
2273 printf '# ifdef HAVE_FILTER_HTML_TAGSOUP\n ",HTML-FILTER"\n# endif\n' >> ${h}
2274 printf '# ifdef HAVE_COLOUR\n ",COLOUR"\n# endif\n' >> ${h}
2275 printf '# ifdef HAVE_DOTLOCK\n ",DOTLOCK-FILES"\n# endif\n' >> ${h}
2276 printf '# ifdef HAVE_DEBUG\n ",DEBUG"\n# endif\n' >> ${h}
2277 printf '# ifdef HAVE_DEVEL\n ",DEVEL"\n# endif\n' >> ${h}
2278 printf ';\n# endif /* _ACCMACVAR_SOURCE || HAVE_AMALGAMATION */\n' >> ${h}
2280 # Create the real mk.mk
2281 # Note we cannout use explicit ./ filename prefix for source and object
2282 # pathnames because of a bug in bmake(1)
2283 ${rm} -rf ${tmp0}.* ${tmp0}*
2284 printf 'OBJ_SRC = ' >> ${mk}
2285 if feat_no AMALGAMATION; then
2286 for i in `printf '%s\n' *.c | ${sort}`; do
2287 if [ "${i}" = privsep.c ]; then
2288 continue
2290 printf "${i} " >> ${mk}
2291 done
2292 printf '\nAMALGAM_TARGET =\nAMALGAM_DEP =\n' >> ${mk}
2293 else
2294 printf 'main.c\nAMALGAM_TARGET = main.o\nAMALGAM_DEP = ' >> ${mk}
2296 printf '\n/* HAVE_AMALGAMATION: include sources */\n' >> ${h}
2297 printf '#elif _CONFIG_H + 0 == 1\n' >> ${h}
2298 printf '# undef _CONFIG_H\n' >> ${h}
2299 printf '# define _CONFIG_H 2\n' >> ${h}
2300 for i in `printf '%s\n' *.c | ${sort}`; do
2301 if [ "${i}" = "${j}" ] || [ "${i}" = main.c ] || \
2302 [ "${i}" = privsep.c ]; then
2303 continue
2305 printf "${i} " >> ${mk}
2306 printf "# include \"${i}\"\n" >> ${h}
2307 done
2308 echo >> ${mk}
2309 # tcc(1) fails on 2015-11-13 unless this #else clause existed
2310 echo '#else' >> ${h}
2313 printf '#endif /* _CONFIG_H */\n' >> ${h}
2315 echo "LIBS = `${cat} ${lib}`" >> ${mk}
2316 echo "INCS = `${cat} ${inc}`" >> ${mk}
2317 echo >> ${mk}
2318 ${cat} ./mk-mk.in >> ${mk}
2320 ## Finished!
2322 ${cat} > ${tmp2}.c << \!
2323 #include "config.h"
2325 :The following optional features are enabled:
2326 #ifdef HAVE_SETLOCALE
2327 : + Locale support: Printable characters depend on the environment
2328 # ifdef HAVE_C90AMEND1
2329 : + Multibyte character support
2330 # endif
2331 # ifdef HAVE_NL_LANGINFO
2332 : + Automatic detection of terminal character set
2333 # endif
2334 #endif
2335 #ifdef HAVE_ICONV
2336 : + Character set conversion using iconv()
2337 #endif
2338 #ifdef HAVE_SOCKETS
2339 : + Network support
2340 #endif
2341 #ifdef HAVE_SSL
2342 # ifdef HAVE_OPENSSL
2343 : + S/MIME and SSL/TLS (OpenSSL)
2344 # endif
2345 # ifdef HAVE_SSL_ALL_ALGORITHMS
2346 : + + Support for more ("all") digest and cipher algorithms
2347 # endif
2348 #endif
2349 #ifdef HAVE_SMTP
2350 : + SMTP protocol
2351 #endif
2352 #ifdef HAVE_POP3
2353 : + POP3 protocol
2354 #endif
2355 #ifdef HAVE_GSSAPI
2356 : + GSS-API authentication
2357 #endif
2358 #ifdef HAVE_MD5
2359 : + MD5 message digest (APOP, CRAM-MD5)
2360 #endif
2361 #ifdef HAVE_NETRC
2362 : + .netrc file support
2363 #endif
2364 #ifdef HAVE_AGENT
2365 : + Password query through agent
2366 #endif
2367 #ifdef HAVE_IDNA
2368 : + IDNA (internationalized domain names for applications) support
2369 #endif
2370 #ifdef HAVE_IMAP_SEARCH
2371 : + IMAP-style search expressions
2372 #endif
2373 #ifdef HAVE_REGEX
2374 : + Regular expression support (searches, conditional expressions etc.)
2375 #endif
2376 #if defined HAVE_READLINE || defined HAVE_EDITLINE || defined HAVE_NCL
2377 # ifdef HAVE_READLINE
2378 : + Command line editing via readline(3)
2379 # elif defined HAVE_EDITLINE
2380 : + Command line editing via editline(3)
2381 # else
2382 : + Command line editing via N(ail) C(ommand) L(ine)
2383 # endif
2384 # ifdef HAVE_TABEXPAND
2385 : + + Tabulator expansion
2386 # endif
2387 # ifdef HAVE_HISTORY
2388 : + + History management
2389 # endif
2390 #endif
2391 #ifdef HAVE_TERMCAP
2392 : + Terminal capability queries
2393 #endif
2394 #ifdef HAVE_SPAM
2395 : + Spam management
2396 # ifdef HAVE_SPAM_SPAMC
2397 : + + Via spamc(1) (of spamassassin(1))
2398 # endif
2399 # ifdef HAVE_SPAM_SPAMD
2400 : + + Directly via spamd(1) (of spamassassin(1))
2401 # endif
2402 # ifdef HAVE_SPAM_FILTER
2403 : + + Via freely configurable *spam-filter-XY*s
2404 # endif
2405 #endif
2406 #ifdef HAVE_DOCSTRINGS
2407 : + Documentation summary strings
2408 #endif
2409 #ifdef HAVE_QUOTE_FOLD
2410 : + Extended *quote-fold*ing
2411 #endif
2412 #ifdef HAVE_FILTER_HTML_TAGSOUP
2413 : + Builtin HTML-to-text filter (for display purposes, primitive)
2414 #endif
2415 #ifdef HAVE_COLOUR
2416 : + Coloured message display (simple)
2417 #endif
2418 #ifdef HAVE_DOTLOCK
2419 : + Dotlock files and privilege-separated file dotlock program
2420 #endif
2422 :The following optional features are disabled:
2423 #ifndef HAVE_SETLOCALE
2424 : - Locale support: Only ASCII characters are recognized
2425 #endif
2426 # ifndef HAVE_C90AMEND1
2427 : - Multibyte character support
2428 # endif
2429 # ifndef HAVE_NL_LANGINFO
2430 : - Automatic detection of terminal character set
2431 # endif
2432 #ifndef HAVE_ICONV
2433 : - Character set conversion using iconv()
2434 : _ (Ooooh, no iconv(3), NO character set conversion possible! Really...)
2435 #endif
2436 #ifndef HAVE_SOCKETS
2437 : - Network support
2438 #endif
2439 #ifndef HAVE_SSL
2440 : - S/MIME and SSL/TLS
2441 #else
2442 # ifndef HAVE_SSL_ALL_ALGORITHMS
2443 : - Support for more S/MIME and SSL/TLS digest and cipher algorithms
2444 # endif
2445 #endif
2446 #ifndef HAVE_SMTP
2447 : - SMTP protocol
2448 #endif
2449 #ifndef HAVE_POP3
2450 : - POP3 protocol
2451 #endif
2452 #ifndef HAVE_GSSAPI
2453 : - GSS-API authentication
2454 #endif
2455 #ifndef HAVE_MD5
2456 : - MD5 message digest (APOP, CRAM-MD5)
2457 #endif
2458 #ifndef HAVE_NETRC
2459 : - .netrc file support
2460 #endif
2461 #ifndef HAVE_AGENT
2462 : - Password query through agent
2463 #endif
2464 #ifndef HAVE_IDNA
2465 : - IDNA (internationalized domain names for applications) support
2466 #endif
2467 #ifndef HAVE_IMAP_SEARCH
2468 : - IMAP-style search expressions
2469 #endif
2470 #ifndef HAVE_REGEX
2471 : - Regular expression support
2472 #endif
2473 #if !defined HAVE_READLINE && !defined HAVE_EDITLINE && !defined HAVE_NCL
2474 : - Command line editing and history
2475 #endif
2476 #ifndef HAVE_TERMCAP
2477 : - Terminal capability queries
2478 #endif
2479 #ifndef HAVE_SPAM
2480 : - Spam management
2481 #endif
2482 #ifndef HAVE_DOCSTRINGS
2483 : - Documentation summary strings
2484 #endif
2485 #ifndef HAVE_QUOTE_FOLD
2486 : - Extended *quote-fold*ing
2487 #endif
2488 #ifndef HAVE_FILTER_HTML_TAGSOUP
2489 : - Builtin HTML-to-text filter (for display purposes, primitive)
2490 #endif
2491 #ifndef HAVE_COLOUR
2492 : - Coloured message display (simple)
2493 #endif
2494 #ifndef HAVE_DOTLOCK
2495 : - Dotlock files and privilege-separated file dotlock program
2496 #endif
2498 #if !defined HAVE_WORDEXP || !defined HAVE_FCHDIR ||\
2499 defined HAVE_DEBUG || defined HAVE_DEVEL
2500 :Remarks:
2501 # ifndef HAVE_WORDEXP
2502 : . WARNING: the function wordexp(3) could not be found.
2503 : _ This means that echo(1) will be used via the sh(1)ell in order
2504 : _ to expand shell meta characters in filenames, which is a potential
2505 : _ security hole. Consider to either upgrade your system or set the
2506 : _ *SHELL* variable to some safe(r) wrapper script.
2507 : _ P.S.: the codebase is in transition away from wordexp(3) to some
2508 : _ safe (restricted) internal mechanism, see "COMMANDS" manual, read
2509 : _ about shell word expression in its introduction for more on that.
2510 # endif
2511 # ifndef HAVE_FCHDIR
2512 : . The function fchdir(2) could not be found. We will use chdir(2)
2513 : _ instead. This is not a problem unless the current working
2514 : _ directory is changed while this program is inside of it.
2515 # endif
2516 # ifdef HAVE_DEBUG
2517 : . Debug enabled binary: not meant to be used by end-users: THANKS!
2518 # endif
2519 # ifdef HAVE_DEVEL
2520 : . Computers do not blunder.
2521 # endif
2523 #endif /* Remarks */
2524 :Setup:
2525 : . System-wide resource file: SYSCONFDIR/SYSCONFRC
2526 : . bindir: BINDIR
2527 #ifdef HAVE_DOTLOCK
2528 : . libexecdir: LIBEXECDIR
2529 #endif
2530 : . mandir: MANDIR
2531 : . sendmail(1): SENDMAIL (argv[0] = SENDMAIL_PROGNAME)
2532 : . Mail spool directory: MAILSPOOL
2536 ${make} -f ${makefile} ${tmp2}.x
2537 < ${tmp2}.x >&5 ${sed} -e '/^[^:]/d; /^$/d; s/^://'
2539 # s-it-mode