2 #@ Please see INSTALL and make.rc instead.
7 # The feature set, to be kept in sync with make.rc
8 # If no documentation given, the option is used as such; if doc is a hyphen,
9 # entry is suppressed when configuration overview is printed, and also in the
10 # *features* string: most likely for obsolete features etc.
12 ICONV='Character set conversion using iconv(3)' \
13 SOCKETS='Network support' \
14 SSL='SSL/TLS (OpenSSL / LibreSSL)' \
15 SSL_ALL_ALGORITHMS='Support of all digest and cipher algorithms' \
16 SMTP='Simple Mail Transfer Protocol client' \
17 POP3='Post Office Protocol Version 3 client' \
18 GSSAPI='Generic Security Service authentication' \
19 NETRC='.netrc file support' \
21 MD5='MD5 message digest (APOP, CRAM-MD5)' \
22 IDNA='Internationalized Domain Names for Applications (encode only)' \
23 IMAP_SEARCH='IMAP-style search expressions' \
24 REGEX='Regular expressions' \
25 MLE='Mailx Line Editor' \
26 HISTORY='Line editor history management' \
27 KEY_BINDINGS='Configurable key bindings' \
28 TERMCAP='Terminal capability queries (termcap(5))' \
29 TERMCAP_VIA_TERMINFO='Terminal capability queries use terminfo(5)' \
30 ERRORS='Error log message ring' \
31 SPAM_SPAMC='Spam management via spamc(1) of spamassassin(1)' \
33 SPAM_FILTER='Freely configurable *spam-filter-..*s' \
34 DOCSTRINGS='Command documentation help strings' \
35 QUOTE_FOLD='Extended *quote-fold*ing' \
36 FILTER_HTML_TAGSOUP='Simple builtin HTML-to-text display filter' \
37 COLOUR='Coloured message display' \
38 DOTLOCK='Dotlock files and privilege-separated dotlock program' \
41 # Options which are automatically deduced from host environment, i.e., these
42 # need special treatment all around here to warp from/to OPT_ stuff
43 # setlocale, C90AMEND1, NL_LANGINFO, wcwidth
45 LOCALES='Locale support - printable characters etc. depend on environment' \
46 MULTIBYTE_CHARSETS='Multibyte character sets' \
47 TERMINAL_CHARSET='Automatic detection of terminal character set' \
48 WIDE_GLYPHS='Wide glyph support' \
51 # Rather special options, for custom building, or which always exist.
52 # Mostly for generating the visual overview and the *features* string
54 MIME='Multipurpose Internet Mail Extensions' \
55 SMIME='S/MIME message signing, verification, en- and decryption' \
56 CROSS_BUILD='Cross-compilation: trust any detected environment' \
57 DEBUG='Debug enabled binary, not for end-users: THANKS!' \
58 DEVEL='Computers do not blunder' \
61 # The problem is that we don't have any tools we can use right now, so
62 # encapsulate stuff in functions which get called in right order later on
84 option_parse OPTIONS_DETECT
"${XOPTIONS_DETECT}"
85 option_parse OPTIONS
"${XOPTIONS}"
86 option_parse OPTIONS_XTRA
"${XOPTIONS_XTRA}"
89 # Predefined CONFIG= urations take precedence over anything else
90 if [ -n "${CONFIG}" ]; then
99 [mM
][iI
][nN
][iI
][mM
][aA
][lL
])
105 [mM
][eE
][dD
][iI
][uU
][mM
])
111 OPT_HISTORY
=1 OPT_KEY_BINDINGS
=1
118 [nN
][eE
][tT
][sS
][eE
][nN
][dD
])
124 OPT_GSSAPI
=1 OPT_NETRC
=1 OPT_AGENT
=1
128 OPT_HISTORY
=1 OPT_KEY_BINDINGS
=1
133 [mM
][aA
][xX
][iI
][mM
][aA
][lL
])
137 [dD
][eE
][vV
][eE
][lL
])
138 OPT_DEVEL
=1 OPT_DEBUG
=1 OPT_NYD2
=1
141 [oO
][dD
][eE
][vV
][eE
][lL
])
146 echo >&2 "Unknown CONFIG= setting: ${CONFIG}"
147 echo >&2 ' NULL, NULLI, MINIMAL, MEDIUM, NETSEND, MAXIMAL'
154 # Inter-relationships
156 if feat_no SMTP
&& feat_no POP3
; then
159 if feat_no SOCKETS
; then
160 if feat_require SMTP
; then
161 msg
'ERROR: need SOCKETS for required feature SMTP'
164 if feat_require POP3
; then
165 msg
'ERROR: need SOCKETS for required feature POP3'
168 OPT_SSL
=0 OPT_SSL_ALL_ALGORITHMS
=0
169 OPT_SMTP
=0 OPT_POP3
=0
170 OPT_GSSAPI
=0 OPT_NETRC
=0 OPT_AGENT
=0
172 if feat_no SMTP
; then
177 OPT_HISTORY
=0 OPT_KEY_BINDINGS
=0
180 # If we don't need MD5 leave it alone
181 if feat_no SOCKETS
; then
185 if feat_yes DEVEL
; then
193 h
=.
/config.h h_name
=config.h
196 newlst
=.
/config.lst-new
197 newmk
=.
/config.mk-new
198 newev
=.
/config.ev-new
204 ## -- >8 - << OPTIONS | OS/CC >> - 8< -- ##
206 # Note that potential duplicates in PATH, C_INCLUDE_PATH etc. will be cleaned
207 # via path_check() later on once possible
209 # TODO cc_maxopt is brute simple, we should compile test program and dig real
210 # compiler versions for known compilers, then be more specific
215 # We don't "have any utility": only path adjustments and such in here!
216 i
="${OS:-`uname -s`}"
218 if [ ${i} = SunOS
]; then
219 msg
'SunOS / Solaris? Applying some "early setup" rules ...'
220 _os_early_setup_sunos
224 _os_early_setup_sunos
() {
225 # According to standards(5), this is what we need to do
226 if [ -d /usr
/xpg4
]; then :; else
227 msg
'ERROR: On SunOS / Solaris we need /usr/xpg4 environment! Sorry.'
230 PATH
="/usr/xpg4/bin:/usr/ccs/bin:/usr/bin:${PATH}"
231 [ -d /usr
/xpg6
] && PATH
="/usr/xpg6/bin:${PATH}"
236 # OSFULLSPEC is used to recognize changes (i.e., machine type, updates etc.)
237 OSFULLSPEC
="${OS:-`uname -a | ${tr} '[A-Z]' '[a-z]'`}"
238 OS
="${OS:-`uname -s | ${tr} '[A-Z]' '[a-z]'`}"
239 msg
'Operating system is %s' ${OS}
241 if [ ${OS} = sunos
]; then
242 msg
' . have special SunOS / Solaris "setup" rules ...'
244 elif [ ${OS} = unixware
]; then
245 msg
' . have special UnixWare environmental rules ...'
246 if feat_yes AUTOCC
&& command -v cc
>/dev
/null
2>&1; then
248 feat_yes DEBUG
&& _CFLAGS
='-v -Xa -g' || _CFLAGS
='-Xa -O'
250 CFLAGS
="${_CFLAGS} ${EXTRA_CFLAGS}"
251 LDFLAGS
="${_LDFLAGS} ${EXTRA_LDFLAGS}"
252 export CC CFLAGS LDFLAGS
253 OPT_AUTOCC
=0 had_want_autocc
=1 need_R_ldflags
=-R
255 elif [ -n "${VERBOSE}" ]; then
256 msg
' . no special treatment for this system necessary or known'
259 # Sledgehammer: better set _GNU_SOURCE
260 # And in general: oh, boy!
261 OS_DEFINES
="${OS_DEFINES}#define _GNU_SOURCE\n"
262 #OS_DEFINES="${OS_DEFINES}#define _POSIX_C_SOURCE 200809L\n"
263 #OS_DEFINES="${OS_DEFINES}#define _XOPEN_SOURCE 700\n"
264 #[ ${OS} = darwin ] && OS_DEFINES="${OS_DEFINES}#define _DARWIN_C_SOURCE\n"
266 # On pkgsrc(7) systems automatically add /usr/pkg/*
267 if [ -d /usr
/pkg
]; then
268 C_INCLUDE_PATH
="${C_INCLUDE_PATH}:/usr/pkg/include"
269 LD_LIBRARY_PATH
="${LD_LIBRARY_PATH}:/usr/pkg/lib"
274 C_INCLUDE_PATH
="/usr/xpg4/include:${C_INCLUDE_PATH}"
275 LD_LIBRARY_PATH
="/usr/xpg4/lib:${LD_LIBRARY_PATH}"
278 if [ -d /opt
/csw
]; then
279 C_INCLUDE_PATH
="${C_INCLUDE_PATH}:/opt/csw/include"
280 LD_LIBRARY_PATH
="${LD_LIBRARY_PATH}:/opt/csw/lib"
283 OS_DEFINES
="${OS_DEFINES}#define __EXTENSIONS__\n"
284 #OS_DEFINES="${OS_DEFINES}#define _POSIX_C_SOURCE 200112L\n"
286 [ -n "${cksum}" ] ||
cksum=/opt
/csw
/gnu
/cksum
287 if [ -x "${cksum}" ]; then :; else
288 msg
'ERROR: Not an executable program: %s' "${cksum}"
289 msg
'ERROR: We need a CRC-32 cksum(1), as specified in POSIX.'
290 msg
'ERROR: However, we do so only for tests.'
291 msg
'ERROR: If that is ok, set "cksum=/usr/bin/true", then rerun'
295 if feat_yes AUTOCC
; then
296 if command -v cc
>/dev
/null
2>&1; then
298 feat_yes DEBUG
&& _CFLAGS
="-v -Xa -g" || _CFLAGS
="-Xa -O"
300 CFLAGS
="${_CFLAGS} ${EXTRA_CFLAGS}"
301 LDFLAGS
="${_LDFLAGS} ${EXTRA_LDFLAGS}"
302 export CC CFLAGS LDFLAGS
303 OPT_AUTOCC
=0 had_want_autocc
=1 need_R_ldflags
=-R
305 # Assume gcc(1), which supports -R for compat
306 cc_maxopt
=2 force_no_stackprot
=1 need_R_ldflags
=-Wl,-R
311 # Check out compiler ($CC) and -flags ($CFLAGS)
313 # Even though it belongs into cc_flags we will try to compile and link
314 # something, so ensure we have a clean state regarding CFLAGS/LDFLAGS or
315 # EXTRA_CFLAGS/EXTRA_LDFLAGS
316 if feat_no AUTOCC
; then
318 # Ensure those don't do any harm
319 EXTRA_CFLAGS
= EXTRA_LDFLAGS
=
320 export EXTRA_CFLAGS EXTRA_LDFLAGS
324 export CFLAGS LDFLAGS
327 [ -n "${CC}" ] && [ "${CC}" != cc ] && { _cc_default; return; }
329 msg_nonl 'Searching for a usable C compiler .. $CC='
330 if { i="`command -v clang`"; }; then
332 elif { i="`command -v gcc`"; }; then
334 elif { i="`command -v c99`"; }; then
336 elif { i="`command -v tcc`"; }; then
338 elif { i="`command -v pcc`"; }; then
341 if [ "${CC}" = cc ]; then
343 elif { i="`command -v c89`"; }; then
346 msg 'boing booom tschak'
347 msg 'ERROR: I cannot find a compiler!'
348 msg ' Neither of clang(1), gcc(1), tcc(1), pcc(1), c89(1) and c99(1).'
349 msg ' Please set ${CC} environment variable, maybe ${CFLAGS}, rerun.'
358 if [ -z "${CC}" ]; then
359 msg 'To go on like you have chosen, please set $CC, rerun.'
363 if [ -z "${VERBOSE}" ] && [ -f ${lst} ] && feat_no DEBUG; then
366 msg 'Using C compiler ${CC}=%s' "${CC}"
371 if feat_yes AUTOCC; then
372 if [ -f ${lst} ] && feat_no DEBUG && [ -z "${VERBOSE}" ]; then
374 msg 'Detecting ${CFLAGS}/${LDFLAGS} for ${CC}=%s, just a second..' \
378 msg 'Testing usable ${CFLAGS}/${LDFLAGS} for ${CC}=%s' "${CC}"
381 i
=`echo "${CC}" | ${awk} 'BEGIN{FS="/"}{print $NF}'`
382 if { echo "${i}" | ${grep} tcc; } >/dev/null 2>&1; then
383 msg ' . have special tcc(1) environmental rules ...'
386 # As of pcc CVS 2016-04-02, stack protection support is announced but
387 # will break if used on Linux
388 if { echo "${i}" | ${grep} pcc; } >/dev
/null
2>&1; then
394 feat_no DEBUG
&& _CFLAGS
="-DNDEBUG ${_CFLAGS}"
395 CFLAGS
="${_CFLAGS} ${EXTRA_CFLAGS}"
396 LDFLAGS
="${_LDFLAGS} ${EXTRA_LDFLAGS}"
398 if feat_no DEBUG
; then
399 CFLAGS
="-DNDEBUG ${CFLAGS}"
403 export CFLAGS LDFLAGS
407 __cflags
=${_CFLAGS} __ldflags
=${_LDFLAGS}
414 if feat_yes DEBUG
; then
415 # May have problems to find libtcc cc_check -b
419 if ld_check
-Wl,-rpath =.
/ no
; then
420 need_R_ldflags
=-Wl,-rpath=
421 ld_check
-Wl,--enable-new-dtags
422 ld_runtime_flags
# update!
425 _CFLAGS
="${_CFLAGS} ${__cflags}" _LDFLAGS="${_LDFLAGS} ${__ldflags}"
426 unset __cflags __ldflags
429 _cc_flags_generic
() {
430 __cflags
=${_CFLAGS} __ldflags
=${_LDFLAGS}
432 feat_yes DEVEL
&& cc_check
-std=c89 || cc_check
-std=c99
434 # Check -g first since some others may rely upon -g / optim. level
435 if feat_yes DEBUG
; then
438 elif [ ${cc_maxopt} -gt 2 ] && cc_check
-O3; then
440 elif [ ${cc_maxopt} -gt 1 ] && cc_check
-O2; then
442 elif [ ${cc_maxopt} -gt 0 ] && cc_check
-O1; then
448 #if feat_yes DEVEL && cc_check -Weverything; then
453 cc_check
-Wbad-function-cast
454 cc_check
-Wcast-align
457 cc_check
-Wmissing-prototypes
460 cc_check
-Wwrite-strings
461 cc_check
-Wno-long-long
465 if feat_yes AMALGAMATION
&& feat_no DEVEL
; then
466 cc_check
-Wno-unused-function
468 feat_no DEVEL
&& cc_check
-Wno-unused-result # XXX do right way (pragma too)
470 cc_check
-fno-unwind-tables
471 cc_check
-fno-asynchronous-unwind-tables
472 cc_check
-fstrict-aliasing
473 if cc_check
-fstrict-overflow && feat_yes DEVEL
; then
474 cc_check
-Wstrict-overflow=5
477 if feat_yes DEBUG || feat_yes FORCED_STACKPROT
; then
478 if [ -z "${force_no_stackprot}" ]; then
479 if cc_check
-fstack-protector-strong ||
480 cc_check
-fstack-protector-all; then
481 cc_check
-D_FORTIFY_SOURCE=2
484 msg
'Not checking for -fstack-protector compiler option,'
485 msg
'since that caused errors in a "similar" configuration.'
486 msg
'You may turn off OPT_AUTOCC and use your own settings, rerun'
490 if feat_yes AMALGAMATION
; then
494 # LD (+ dependend CC)
496 if feat_yes DEVEL
; then
499 #if cc_check -fsanitize=memory &&
500 # ld_check -fsanitize=memory &&
501 # cc_check -fsanitize-memory-track-origins=2 &&
502 # ld_check -fsanitize-memory-track-origins=2; then
509 ld_check
-Wl,-z,relro
511 ld_check
-Wl,-z,noexecstack
512 if ld_check
-Wl,-rpath =.
/ no
; then
513 need_R_ldflags
=-Wl,-rpath=
514 # Choose DT_RUNPATH (after $LD_LIBRARY_PATH) over DT_RPATH (before)
515 ld_check
-Wl,--enable-new-dtags
516 ld_runtime_flags
# update!
517 elif ld_check
-Wl,-R .
/ no
; then
518 need_R_ldflags
=-Wl,-R
519 ld_check
-Wl,--enable-new-dtags
520 ld_runtime_flags
# update!
523 # Address randomization
525 if cc_check
-fPIE || cc_check
-fpie; then
526 ld_check
-pie || _CFLAGS
=${_ccfg}
530 _CFLAGS
="${_CFLAGS} ${__cflags}" _LDFLAGS="${_LDFLAGS} ${__ldflags}"
531 unset __cflags __ldflags
534 ## -- >8 - <<OS/CC | SUPPORT FUNS>> - 8< -- ##
537 ## - Heirloom sh(1) (and same origin) have _sometimes_ problems with ': >'
538 ## redirection, so use "printf '' >" instead
540 ## Very first: we undergo several states regarding I/O redirection etc.,
541 ## but need to deal with option updates from within all. Since all the
542 ## option stuff should be above the scissor line, define utility functions
543 ## and redefine them as necessary.
544 ## And, since we have those functions, simply use them for whatever
553 printf >&2 -- "${fmt}\\n" "${@}"
559 printf >&2 -- "${fmt}" "${@}"
562 t1
=ten10one1ten10one1
563 if ( [ ${t1##*ten10} = one1
] && [ ${t1#*ten10} = one1ten10one1
] &&
564 [ ${t1%%one1*} = ten10
] && [ ${t1%one1*} = ten10one1ten10
]
565 ) > /dev
/null
2>&1; then
572 # We need some standard utilities
575 n
=${1} i=${2} opt=${3:-0}
576 # Evaluate, just in case user comes in with shell snippets (..well..)
578 if type "${i}" >/dev
/null
2>&1; then # XXX why have i type not command -v?
579 [ -n "${VERBOSE}" ] && msg ' . ${%s} ... %s' "${n}" "${i}"
583 if [ ${opt} -eq 0 ]; then
584 msg
'ERROR: no trace of utility %s' "${n}"
590 # Our feature check environment
592 [ "x${1}" = x0
] ||
[ "x${1}" = xn
] ||
593 [ "x${1}" = xfalse ] || [ "x${1}" = xno ] || [ "x${1}" = xoff
]
597 [ "x${1}" = x1
] ||
[ "x${1}" = xy
] ||
598 [ "x${1}" = xtrue ] || [ "x${1}" = xyes ] || [ "x${1}" = xon
] ||
599 [ "x${1}" = xrequire
]
603 [ "x${1}" = xrequire
]
608 i
="`echo ${i} | ${tr} '[A-Z]' '[a-z]'`"
609 if feat_val_no
"${i}"; then
611 elif feat_val_yes
"${i}"; then
614 msg
"ERROR: %s: 0/n/false/no/off or 1/y/true/yes/on/require, got: %s" \
625 _feat_check
${1} && return 1
631 i
="`echo ${i} | ${tr} '[A-Z]' '[a-z]'`"
632 [ "x${i}" = xrequire
] ||
[ "x${i}" = xrequired
]
635 feat_bail_required
() {
636 if feat_require
${1}; then
637 msg
'ERROR: feature OPT_%s is required but not available' "${1}"
641 option_update
# XXX this is rather useless here (dependency chain..)
645 # Parse one of our XOPTIONS* in $2 and assign the sh(1) compatible list of
646 # options, without documentation, to $1
648 i
="`${awk} -v input=\"${2}\" '
651 voff = match(input, /[[:alnum:]_]+(='${j}'[^'${j}']+)?/)
654 v = substr(input, voff, RLENGTH)
655 input = substr(input, voff + RLENGTH)
658 d = substr(v, doff + 2, length(v) - doff - 1)
659 v = substr(v, 1, doff - 1)
669 # Return the "documentation string" for option $1, itself if none such
671 ${awk} -v want
="${1}" \
672 -v input
="${XOPTIONS_DETECT}${XOPTIONS}${XOPTIONS_XTRA}" '
675 voff = match(input, /[[:alnum:]_]+(='${j}'[^'${j}']+)?/)
678 v = substr(input, voff, RLENGTH)
679 input = substr(input, voff + RLENGTH)
682 d = substr(v, doff + 2, length(v) - doff - 1)
683 v = substr(v, 1, doff - 1)
697 # Join the values from make.rc into what currently is defined, not
698 # overwriting yet existing settings
700 # We want read(1) to perform reverse solidus escaping in order to be able to
701 # use multiline values in make.rc; the resulting sh(1)/sed(1) code was very
702 # slow in VMs (see [fa2e248]), Aharon Robbins suggested the following
703 < ${rc} ${awk} 'BEGIN{line = ""}{
704 gsub
(/^
[[:space
:]]+/, "", $0)
705 gsub
(/[[:space
:]]+$
/, "", $0)
706 if(gsub
(/\\$
/, "", $0)){
711 if(index
(line
, "#") == 1){
713 }else if(length
(line
)){
719 if [ -n "${good_shell}" ]; then
722 i=`${awk} -v LINE="${line}" 'BEGIN
{
723 gsub
(/=.
*$
/, "", LINE
)
727 if [ "${i}" = "${line}" ]; then
728 msg 'ERROR
: invalid syntax
in: %s
' "${line}"
732 eval j="\$${i}" jx="\${${i}+x}"
733 if [ -n "${j}" ] || [ "${jx}" = x ]; then
736 j=`${awk} -v LINE="${line}" 'BEGIN
{
737 gsub
(/^
[^
=]*=/, "", LINE
)
738 gsub
(/^
\"*/, "", LINE
)
739 gsub
(/\"*$
/, "", LINE
)
743 [ "${i}" = "DESTDIR" ] && continue
746 # Reread the mixed version right now
751 # Expand the option values, which may contain shell snippets
752 ${rm} -f ${newlst} ${newmk} ${newh}
753 exec 5<&0 6>&1 <${tmp} >${newlst}
756 if [ -n "${good_shell}" ]; then
758 [ "${i}" != "${i#OPT_}" ] && z=1
760 i=`${awk} -v LINE="${line}" 'BEGIN
{
761 gsub
(/=.
*$
/, "", LINE
);\
764 if echo "${i}" | ${grep} '^OPT_
' >/dev/null 2>&1; then
770 if [ -n "${z}" ]; then
771 j="`echo ${j} | ${tr} '[A-Z
]' '[a-z
]'`"
772 if [ -z "${j}" ] || feat_val_no "${j}"; then
774 printf " /* #undef ${i} */\n" >> ${newh}
775 elif feat_val_yes "${j}"; then
776 if feat_val_require "${j}"; then
781 printf " /* #define ${i} */\n" >> ${newh}
783 msg 'ERROR
: cannot parse
<%s
>' "${line}"
787 printf "#define ${i} \"${j}\"\n" >> ${newh}
789 printf "${i} = ${j}\n" >> ${newmk}
793 exec 0<&5 1>&6 5<&- 6<&-
797 # "path_check VARNAME" or "path_check VARNAME FLAG VARNAME"
798 varname=${1} addflag=${2} flagvarname=${3}
806 [ -z "${i}" ] && continue
807 [ -d "${i}" ] || continue
808 # Skip any fakeroot packager environment
809 case "${i}" in *fakeroot*) continue;; esac
810 if [ -n "${j}" ]; then
811 if { z=${y}; echo "${z}"; } | ${grep} ":${i}:" >/dev/null 2>&1; then
816 [ -n "${addflag}" ] && k="${k} ${addflag}${i}"
821 [ -n "${addflag}" ] && k="${addflag}${i}"
824 eval "${varname}=\"${j}\""
825 [ -n "${addflag}" ] && eval "${flagvarname}=\"${k}\""
830 if [ -n "${need_R_ldflags}" ]; then
833 set -- ${LD_LIBRARY_PATH}
837 LDFLAGS="${LDFLAGS} ${need_R_ldflags}${i}"
838 _LDFLAGS="${_LDFLAGS} ${need_R_ldflags}${i}"
842 # Disable it for a possible second run.
847 [ -n "${cc_check_silent}" ] || msg_nonl ' . CC
%s ..
' "${1}"
849 ${_CFLAGS} ${1} ${EXTRA_CFLAGS} ${_LDFLAGS} ${EXTRA_LDFLAGS} \
850 -o ${tmp2} ${tmp}.c ${LIBS} >/dev/null 2>&1; then
851 _CFLAGS="${_CFLAGS} ${1}"
852 [ -n "${cc_check_silent}" ] || msg 'yes'
855 [ -n "${cc_check_silent}" ] || msg 'no
'
860 # $1=option [$2=option argument] [$3=if set, shall NOT be added to _LDFLAGS]
861 [ -n "${cc_check_silent}" ] || msg_nonl ' . LD
%s ..
' "${1}"
862 if "${CC}" ${INCS} ${_CFLAGS} ${_LDFLAGS} ${1}${2} ${EXTRA_LDFLAGS} \
863 -o ${tmp2} ${tmp}.c ${LIBS} >/dev/null 2>&1; then
864 [ -n "${3}" ] || _LDFLAGS="${_LDFLAGS} ${1}"
865 [ -n "${cc_check_silent}" ] || msg 'yes'
868 [ -n "${cc_check_silent}" ] || msg 'no
'
873 variable=$1 topic=$2 define=$3
876 msg_nonl ' .
%s ...
' "${topic}"
877 echo "/* checked ${topic} */" >> ${h}
878 ${rm} -f ${tmp} ${tmp}.o
879 echo '*** test program is
'
880 { echo '#include <'"${h_name}"'>'; cat; } | ${tee} ${tmp}.c
881 #echo '*** the preprocessor generates'
882 #${make} -f ${makefile} ${tmp}.x
884 echo '*** results are'
888 yesno
=$1 variable
=$2 topic
=$3 define
=$4 libs
=$5 incs
=$6
891 msg_nonl
' . %s ... ' "${topic}"
893 echo '*** enforced unchecked results are'
894 if feat_val_yes
${yesno}; then
895 if [ -n "${incs}" ] ||
[ -n "${libs}" ]; then
896 echo "*** adding INCS<${incs}> LIBS<${libs}>"
897 LIBS
="${LIBS} ${libs}"
898 echo "${libs}" >> ${lib}
899 INCS
="${INCS} ${incs}"
900 echo "${incs}" >> ${inc}
903 echo "${define}" >> ${h}
904 eval have_
${variable}=yes
907 echo "/* ${define} */" >> ${h}
909 eval unset have_
${variable}
915 variable
=$1 topic
=$2 define
=$3
917 _check_preface
"${variable}" "${topic}" "${define}"
919 if ${make} -f ${makefile} XINCS="${INCS}" \
920 CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
922 [ -f ./${tmp}.o ]; then
924 echo "${define}" >> ${h}
925 eval have_${variable}=yes
928 echo "/* ${define} */" >> ${h}
930 eval unset have_${variable}
936 run=$1 variable=$2 topic=$3 define=$4 libs=$5 incs=$6
938 _check_preface "${variable}" "${topic}" "${define}"
940 if feat_yes CROSS_BUILD; then
941 if [ ${run} = 1 ]; then
946 if ${make} -f ${makefile} XINCS="${INCS} ${incs}" \
947 CFLAGS
="${CFLAGS}" LDFLAGS
="${LDFLAGS}" \
948 XLIBS
="${LIBS} ${libs}" \
951 { [ ${run} -eq 0 ] || ./${tmp}; }; then
952 echo "*** adding INCS<${incs}> LIBS<${libs}>; executed: ${run}"
954 echo "${define}" >> ${h}
955 LIBS
="${LIBS} ${libs}"
956 echo "${libs}" >> ${lib}
957 INCS
="${INCS} ${incs}"
958 echo "${incs}" >> ${inc}
959 eval have_
${variable}=yes
963 echo "/* ${define} */" >> ${h}
964 eval unset have_
${variable}
970 _link_mayrun
0 "${1}" "${2}" "${3}" "${4}" "${5}"
974 _link_mayrun
1 "${1}" "${2}" "${3}" "${4}" "${5}"
978 _link_mayrun
2 "${1}" "${2}" "${3}" "${4}" "${5}"
982 if feat_yes
${1}; then
983 echo '#define HAVE_'${1}'' >> ${h}
986 echo '/* OPT_'${1}'=0 */' >> ${h}
992 < "${1}" > "${2}" ${awk} \
993 'BEGIN {ORS = " "} /^[^#]/ {print} {next} END {ORS = ""; print "\n"}'
996 ## -- >8 - <<SUPPORT FUNS | RUNNING>> - 8< -- ##
998 # First of all, create new configuration and check whether it changed
1000 # Very easy checks for the operating system in order to be able to adjust paths
1001 # or similar very basic things which we need to be able to go at all
1004 # Check those tools right now that we need before including $rc
1005 msg 'Checking for basic utility set'
1006 check_tool awk "${awk:-`command -v awk`}"
1007 check_tool rm "${rm:-`command -v rm`}"
1008 check_tool tr "${tr:-`command -v tr`}"
1010 # Initialize the option set
1011 msg_nonl 'Setting up configuration options ... '
1015 # Include $rc, but only take from it what wasn't overwritten by the user from
1016 # within the command line or from a chosen fixed CONFIG=
1017 # Note we leave alone the values
1018 trap "exit 1" HUP INT TERM
1019 trap "${rm} -f ${tmp}" EXIT
1021 msg_nonl 'Joining in %s ... ' ${rc}
1025 # We need to know about that now, in order to provide utility overwrites etc.
1028 msg 'Checking for remaining set of utilities'
1029 check_tool grep "${grep:-`command -v grep`}"
1031 # Before we step ahead with the other utilities perform a path cleanup first.
1035 check_tool cat "${cat:-`command -v cat`}"
1036 check_tool chmod "${chmod:-`command -v chmod`}"
1037 check_tool cp "${cp:-`command -v cp`}"
1038 check_tool cmp "${cmp:-`command -v cmp`}"
1040 check_tool mkdir "${mkdir:-`command -v mkdir`}"
1041 check_tool mv "${mv:-`command -v mv`}"
1043 check_tool sed "${sed:-`command -v sed`}"
1044 check_tool sort "${sort:-`command -v sort`}"
1045 check_tool tee "${tee:-`command -v tee`}"
1047 check_tool chown "${chown:-`command -v chown`}" 1 ||
1048 check_tool chown "/sbin
/chown
" 1 ||
1049 check_tool chown "/usr
/sbin
/chown
"
1051 check_tool make "${MAKE:-`command -v make`}"
1053 check_tool strip "${STRIP:-`command -v strip`}" 1 &&
1054 HAVE_STRIP=1 || HAVE_STRIP=0
1056 # For ./cc-test.sh only
1057 check_tool cksum "${cksum:-`command -v cksum`}"
1059 # Update OPT_ options now, in order to get possible inter-dependencies right
1062 # (No functions since some shells loose non-exported variables in traps)
1063 trap "trap \"\" HUP INT TERM
; exit 1" HUP INT TERM
1064 trap "trap \"\" HUP INT TERM EXIT
;\
1065 ${rm} -rf ${newlst} ${tmp0}.* ${tmp0}* ${newmk} ${newev} ${newh}" EXIT
1067 # Our configuration options may at this point still contain shell snippets,
1068 # we need to evaluate them in order to get them expanded, and we need those
1069 # evaluated values not only in our new configuration file, but also at hand..
1070 msg_nonl 'Evaluating all configuration items ... '
1074 # Add the known utility and some other variables
1075 printf "#define VAL_UAGENT \"${VAL_SID}${VAL_NAIL}\"\n" >> ${newh}
1076 printf "VAL_UAGENT = ${VAL_SID}${VAL_NAIL}\n" >> ${newmk}
1078 printf "#define VAL_PRIVSEP \"${VAL_SID}${VAL_NAIL}-privsep\"\n" >> ${newh}
1079 printf "VAL_PRIVSEP = \$(VAL_UAGENT)-privsep\n" >> ${newmk}
1080 if feat_yes DOTLOCK
; then
1081 printf "OPTIONAL_PRIVSEP = \$(VAL_PRIVSEP)\n" >> ${newmk}
1083 printf "OPTIONAL_PRIVSEP =\n" >> ${newmk}
1087 awk cat chmod chown
cp cmp grep mkdir
mv rm sed sort tee tr \
1088 MAKE MAKEFLAGS
make SHELL strip \
1091 printf "${i} = ${j}\n" >> ${newmk}
1092 printf "${i}=${j}\n" >> ${newlst}
1093 printf "${i}=\"${j}\";export ${i}; " >> ${newev}
1095 printf "\n" >> ${newev}
1097 # Build a basic set of INCS and LIBS according to user environment.
1098 path_check C_INCLUDE_PATH -I _INCS
1099 INCS="${INCS} ${_INCS}"
1100 path_check LD_LIBRARY_PATH -L _LIBS
1101 LIBS="${LIBS} ${_LIBS}"
1103 export C_INCLUDE_PATH LD_LIBRARY_PATH
1105 # Some environments need runtime path flags to be able to go at all
1108 ## Detect CC, whether we can use it, and possibly which CFLAGS we can use
1112 ${cat} > ${tmp}.c << \!
1115 static void doit(char const *s);
1117 main(int argc, char **argv){
1120 doit("Hello world
");
1124 doit(char const *s){
1126 memcpy(buf, s, strlen(s) +1);
1131 if "${CC}" ${INCS} ${CFLAGS} ${EXTRA_CFLAGS} ${LDFLAGS} ${EXTRA_LDFLAGS} \
1132 -o ${tmp2} ${tmp}.c ${LIBS}; then
1135 msg
'ERROR: i cannot compile a "Hello world" via'
1137 "${CC} ${INCS} ${CFLAGS} ${EXTRA_CFLAGS} ${LDFLAGS} ${EXTRA_LDFLAGS} ${LIBS}"
1138 msg
'ERROR: Please read INSTALL, rerun'
1142 # This may also update ld_runtime_flags() (again)
1149 printf -- "${i}=${j}\n" >> ${newlst}
1155 PATH C_INCLUDE_PATH LD_LIBRARY_PATH \
1159 printf -- "${i} = ${j}\n" >> ${newmk}
1160 printf -- "${i}=${j}\n" >> ${newlst}
1163 # Now finally check whether we already have a configuration and if so, whether
1164 # all those parameters are still the same.. or something has actually changed
1165 if [ -f ${lst} ] && ${cmp} ${newlst} ${lst} >/dev/null 2>&1; then
1166 echo 'Configuration is up-to-date'
1168 elif [ -f ${lst} ]; then
1169 echo 'Configuration has been updated..'
1170 ( eval "${MAKE} -f .
/mk.mk clean
" )
1173 echo 'Shiny configuration..'
1176 # Time to redefine helper 1
1178 ${rm} -f ${lst} ${h} ${mk}
1182 ${mv} -f ${newlst} ${lst}
1183 ${mv} -f ${newev} ${ev}
1184 ${mv} -f ${newh} ${h}
1185 ${mv} -f ${newmk} ${mk}
1187 if [ -z "${VERBOSE}" ]; then
1188 printf -- "ECHO_CC
= @
echo ' 'CC \$
(@
);\n" >> ${mk}
1189 printf -- "ECHO_LINK
= @
echo ' 'LINK \$
(@
);\n" >> ${mk}
1190 printf -- "ECHO_GEN
= @
echo ' 'GEN \$
(@
);\n" >> ${mk}
1191 printf -- "ECHO_TEST
= @
\n" >> ${mk}
1192 printf -- "ECHO_CMD
= @
echo ' CMD';\n" >> ${mk}
1193 printf -- "ECHO_BLOCK_BEGIN
= @
( \n" >> ${mk}
1194 printf -- "ECHO_BLOCK_END
= ) >/dev
/null
\n" >> ${mk}
1197 ## Compile and link checking
1203 makefile=./config.mk
1205 # (No function since some shells loose non-exported variables in traps)
1206 trap "trap \"\" HUP INT TERM
;\
1207 ${rm} -f ${lst} ${h} ${mk} ${lib} ${inc}; exit 1" HUP INT TERM
1208 trap "trap \"\" HUP INT TERM EXIT
;\
1209 ${rm} -rf ${tmp0}.* ${tmp0}* ${makefile}" EXIT
1211 # Time to redefine helper 2
1215 printf "*** ${fmt}\\n
" "${@}"
1216 printf -- "${fmt}\\n
" "${@}" >&5
1221 printf "*** ${fmt}\\n
" "${@}"
1222 printf -- "${fmt}" "${@}" >&5
1226 exec 5>&2 > ${log} 2>&1
1228 echo "${LIBS}" > ${lib}
1229 echo "${INCS}" > ${inc}
1230 ${cat} > ${makefile} << \!
1231 .SUFFIXES: .o .c .x .y
1233 $(CC) -I./ $(XINCS) $(CFLAGS) -c $(<)
1235 $(CC) -I./ $(XINCS) -E $(<) > $(@)
1237 $(CC) -I./ $(XINCS) $(CFLAGS) $(LDFLAGS) -o $(@) $(<) $(XLIBS)
1242 # May be multiline..
1243 [ -n "${OS_DEFINES}" ] && printf -- "${OS_DEFINES}" >> ${h}
1245 feat_def ALWAYS_UNICODE_LOCALE
1246 feat_def AMALGAMATION
1247 feat_def CROSS_BUILD
1255 if xrun_check inline
'inline functions' \
1256 '#define HAVE_INLINE
1257 #define n_INLINE static inline' << \
!
1258 static inline int ilf
(int i
){return ++i
;}
1259 int main
(void
){return ilf
(-1);}
1263 elif xrun_check inline
'inline functions (via __inline)' \
1264 '#define HAVE_INLINE
1265 #define n_INLINE static __inline' << \
!
1266 static __inline int ilf
(int i
){return ++i
;}
1267 int main
(void
){return ilf
(-1);}
1273 ## Test for "basic" system-calls / functionality that is used by all parts
1274 ## of our program. Once this is done fork away BASE_LIBS and other BASE_*
1275 ## macros to be used by only the subprograms (potentially).
1277 if run_check clock_gettime
'clock_gettime(2)' \
1278 '#define HAVE_CLOCK_GETTIME' << \
!
1284 if(!clock_gettime
(CLOCK_REALTIME
, &ts
) || errno
!= ENOSYS
)
1291 elif run_check clock_gettime
'clock_gettime(2) (via -lrt)' \
1292 '#define HAVE_CLOCK_GETTIME' '-lrt' << \
!
1298 if(!clock_gettime
(CLOCK_REALTIME
, &ts
) || errno
!= ENOSYS
)
1305 elif run_check gettimeofday
'gettimeofday(2)' \
1306 '#define HAVE_GETTIMEOFDAY' << \
!
1307 #include <stdio.h> /* For C89 NULL */
1308 #include <sys/time.h>
1313 if(!gettimeofday
(&tv
, NULL
) || errno
!= ENOSYS
)
1321 have_no_subsecond_time
=1
1324 if run_check nanosleep
'nanosleep(2)' \
1325 '#define HAVE_NANOSLEEP' << \
!
1332 ts.tv_nsec
= 100000;
1333 if(!nanosleep
(&ts
, NULL
) || errno
!= ENOSYS
)
1340 elif run_check nanosleep
'nanosleep(2) (via -lrt)' \
1341 '#define HAVE_NANOSLEEP' '-lrt' << \
!
1348 ts.tv_nsec
= 100000;
1349 if(!nanosleep
(&ts
, NULL
) || errno
!= ENOSYS
)
1356 # link_check is enough for this, that function is so old, trust the proto
1357 elif link_check
sleep 'sleep(3)' \
1358 '#define HAVE_SLEEP' << \
!
1362 if(!sleep(1) || errno
!= ENOSYS
)
1370 msg
'ERROR: we require one of nanosleep(2) and sleep(3).'
1374 if run_check userdb
'gete?[gu]id(2), getpwuid(3), getpwnam(3)' << \
!
1383 if((gid
= getgid
()) != 0)
1385 if((uid
= getuid
()) != 0)
1387 if((pw
= getpwuid
(uid
)) == NULL
&& errno
== ENOSYS
)
1389 if((pw
= getpwnam
("root")) == NULL
&& errno
== ENOSYS
)
1397 msg
'ERROR: we require user and group info / database searches.'
1398 msg
'That much Unix we indulge ourselfs.'
1402 if link_check ftruncate
'ftruncate(2)' \
1403 '#define HAVE_FTRUNCATE' << \
!
1405 #include <sys/types.h>
1407 return (ftruncate
(0, 0) != 0);
1413 msg
'ERROR: we require the ftruncate(2) system call.'
1417 if run_check sa_restart
'SA_RESTART (for sigaction(2))' << \
!
1421 struct sigaction nact
, oact
;
1423 nact.sa_handler
= SIG_DFL
;
1424 sigemptyset
(&nact.sa_mask
);
1425 nact.sa_flags
= SA_RESTART
;
1426 return !(!sigaction
(SIGCHLD
, &nact
, &oact
) || errno
!= ENOSYS
);
1432 msg
'ERROR: we (yet) require the SA_RESTART flag for sigaction(2).'
1436 if link_check snprintf
'snprintf(3)' << \
!
1441 snprintf
(b
, sizeof b
, "%s", "string");
1448 msg
'ERROR: we require the snprintf(3) function.'
1452 if link_check environ
'environ(3)' << \
!
1453 #include <stdio.h> /* For C89 NULL */
1455 extern char
**environ
;
1457 return environ
[0] == NULL
;
1463 msg
'ERROR: we require the environ(3) array for subprocess control.'
1467 if link_check setenv
'(un)?setenv(3)' '#define HAVE_SETENV' << \
!
1470 setenv
("s-mailx", "i want to see it cute!", 1);
1471 unsetenv
("s-mailx");
1477 elif link_check setenv
'putenv(3)' '#define HAVE_PUTENV' << \
!
1480 putenv
("s-mailx=i want to see it cute!");
1487 msg
'ERROR: we require either the setenv(3) or putenv(3) functions.'
1491 if link_check termios
'termios.h and tc*(3) family' << \
!
1492 #include <termios.h>
1494 struct termios tios
;
1496 tcgetattr
(0, &tios
);
1497 tcsetattr
(0, TCSANOW | TCSADRAIN | TCSAFLUSH
, &tios
);
1504 msg
'ERROR: we require termios.h and the tc*() family of functions.'
1505 msg
'That much Unix we indulge ourselfs.'
1511 if link_check vsnprintf
'vsnprintf(3)' << \
!
1514 static void dome
(char
*buf
, size_t blen
, ...
){
1518 vsnprintf
(buf
, blen
, "%s", ap
);
1524 dome
(b
, sizeof b
, "string");
1531 feat_bail_required ERRORS
1534 if [ "${have_vsnprintf}" = yes ]; then
1536 link_check va_copy
"va_copy(3) (as ${2})" \
1537 "#define HAVE_N_VA_COPY
1538 #define n_va_copy ${2}" <<_EOT
1542 # if defined __va_copy && !defined va_copy
1543 # define va_copy __va_copy
1546 static void dome2(char *buf, size_t blen, va_list src){
1550 vsnprintf(buf, blen, "%s", ap);
1553 static void dome(char *buf, size_t blen, ...){
1557 dome2(buf, blen, ap);
1563 dome(b, sizeof b, "string");
1568 __va_copy
0 va_copy || __va_copy
1 __va_copy
1571 run_check pathconf
'f?pathconf(2)' '#define HAVE_PATHCONF' << \
!
1578 rv |
= !(pathconf
(".", _PC_NAME_MAX
) >= 0 || errno
== 0 || errno
!= ENOSYS
);
1580 rv |
= !(pathconf
(".", _PC_PATH_MAX
) >= 0 || errno
== 0 || errno
!= ENOSYS
);
1582 /* Only link check
*/
1583 fpathconf
(0, _PC_NAME_MAX
);
1589 run_check pipe2
'pipe2(2)' '#define HAVE_PIPE2' << \
!
1596 if(!pipe2
(fds
, O_CLOEXEC
) || errno
!= ENOSYS
)
1602 # We use this only then for now (need NOW+1)
1603 run_check utimensat
'utimensat(2)' '#define HAVE_UTIMENSAT' << \
!
1604 #include <fcntl.h> /* For AT_* */
1605 #include <sys/stat.h>
1608 struct timespec ts
[2];
1610 ts
[0].tv_nsec
= UTIME_NOW
;
1611 ts
[1].tv_nsec
= UTIME_OMIT
;
1612 if(!utimensat
(AT_FDCWD
, "", ts
, 0) || errno
!= ENOSYS
)
1620 # XXX Add POSIX check once standardized
1621 if link_check posix_random
'arc4random(3)' '#define HAVE_POSIX_RANDOM 0' << \
!
1630 elif link_check getrandom
'getrandom(2) (in sys/random.h)' \
1631 '#define HAVE_GETRANDOM(B,S) getrandom(B, S, 0)
1632 #define HAVE_GETRANDOM_HEADER <sys/random.h>' <<\
!
1633 #include <sys/random.h>
1636 getrandom
(buf
, sizeof buf
, 0);
1642 elif link_check getrandom
'getrandom(2) (via syscall(2))' \
1643 '#define HAVE_GETRANDOM(B,S) syscall(SYS_getrandom, B, S, 0)
1644 #define HAVE_GETRANDOM_HEADER <sys/syscall.h>' <<\
!
1645 #include <sys/syscall.h>
1648 syscall
(SYS_getrandom
, buf
, sizeof buf
, 0);
1654 elif [ -n "${have_no_subsecond_time}" ]; then
1655 msg
'ERROR: %s %s' 'without a native random' \
1656 'one of clock_gettime(2) and gettimeofday(2) is required.'
1661 link_check putc_unlocked
'putc_unlocked(3)' '#define HAVE_PUTC_UNLOCKED' <<\
!
1664 putc_unlocked
('@', stdout
);
1669 link_check fchdir
'fchdir(3)' '#define HAVE_FCHDIR' << \
!
1677 if run_check realpath
'realpath(3)' '#define HAVE_REALPATH' << \
!
1680 char x_buf
[4096], *x
= realpath
(".", x_buf
);
1682 return (x
!= NULL
) ?
0 : 1;
1686 if run_check realpath_malloc
'realpath(3) takes NULL' \
1687 '#define HAVE_REALPATH_NULL' << \
!
1690 char
*x
= realpath
(".", NULL
);
1694 return (x
!= NULL
) ?
0 : 1;
1702 ## optional and selectable
1704 if feat_yes DOTLOCK
; then
1705 if run_check readlink
'readlink(2)' << \
!
1711 if(!readlink
("here", buf
, sizeof buf
) || errno
!= ENOSYS
)
1719 feat_bail_required DOTLOCK
1723 if feat_yes DOTLOCK
; then
1724 if run_check fchown
'fchown(2)' << \
!
1728 if(!fchown
(0, 0, 0) || errno
!= ENOSYS
)
1736 feat_bail_required DOTLOCK
1740 ## Now it is the time to fork away the BASE_ series
1743 squeeze_em
${inc} ${tmp}
1745 squeeze_em
${lib} ${tmp}
1748 echo "BASE_LIBS = `${cat} ${lib}`" >> ${mk}
1749 echo "BASE_INCS
= `${cat} ${inc}`" >> ${mk}
1751 ## The remains are expected to be used only by the main MUA binary!
1754 link_check setlocale 'setlocale(3)' '#define HAVE_SETLOCALE' << \!
1757 setlocale(LC_ALL, "");
1761 [ -n "${have_setlocale}" ] && OPT_LOCALES=1
1763 OPT_MULTIBYTE_CHARSETS=0
1765 OPT_TERMINAL_CHARSET=0
1766 if [ -n "${have_setlocale}" ]; then
1767 link_check c90amend1 'ISO/IEC 9899:1990/Amendment 1:1995' \
1768 '#define HAVE_C90AMEND1' << \!
1774 char mbb[MB_LEN_MAX + 1];
1779 mbtowc(&wc, "x", 1);
1780 mbrtowc(&wc, "x", 1, NULL);
1782 return (mblen("\0", 1) == 0);
1785 [ -n "${have_c90amend1}" ] && OPT_MULTIBYTE_CHARSETS=1
1787 if [ -n "${have_c90amend1}" ]; then
1788 link_check wcwidth 'wcwidth(3)' '#define HAVE_WCWIDTH' << \!
1795 [ -n "${have_wcwidth}" ] && OPT_WIDE_GLYPHS=1
1798 link_check nl_langinfo 'nl_langinfo(3)' '#define HAVE_NL_LANGINFO' << \!
1799 #include <langinfo.h>
1803 return (nl_langinfo(CODESET) == NULL);
1806 [ -n "${have_nl_langinfo}" ] && OPT_TERMINAL_CHARSET=1
1809 link_check fnmatch 'fnmatch(3)' '#define HAVE_FNMATCH' << \!
1810 #include <fnmatch.h>
1812 return (fnmatch("*", ".", FNM_PATHNAME | FNM_PERIOD) == FNM_NOMATCH);
1816 link_check dirent_d_type 'struct dirent.d_type' '#define HAVE_DIRENT_TYPE' << \!
1820 return !(de.d_type == DT_UNKNOWN ||
1821 de.d_type == DT_DIR || de.d_type == DT_LNK);
1825 ## optional and selectable
1827 if feat_yes ICONV; then
1828 ${cat} > ${tmp2}.c << \!
1829 #include <stdio.h> /* For C89 NULL */
1834 id = iconv_open("foo", "bar");
1835 iconv(id, NULL, NULL, NULL, NULL);
1840 < ${tmp2}.c link_check iconv 'iconv(3) functionality' \
1841 '#define HAVE_ICONV' ||
1842 < ${tmp2}.c link_check iconv 'iconv(3) functionality (via -liconv)' \
1843 '#define HAVE_ICONV' '-liconv' ||
1844 feat_bail_required ICONV
1846 echo '/* OPT_ICONV=0 */' >> ${h}
1849 if feat_yes SOCKETS || feat_yes SPAM_SPAMD; then
1850 ${cat} > ${tmp2}.c << \!
1851 #include <sys/types.h>
1852 #include <sys/socket.h>
1856 struct sockaddr_un soun;
1858 if(socket(AF_UNIX, SOCK_STREAM, 0) == -1 && errno == ENOSYS)
1860 if(connect(0, (struct sockaddr*)&soun, 0) == -1 && errno == ENOSYS)
1862 if(shutdown(0, SHUT_RD | SHUT_WR | SHUT_RDWR) == -1 && errno == ENOSYS)
1868 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets' \
1869 '#define HAVE_UNIX_SOCKETS' ||
1870 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets (via -lnsl)' \
1871 '#define HAVE_UNIX_SOCKETS' '-lnsl' ||
1872 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets (via -lsocket -lnsl)' \
1873 '#define HAVE_UNIX_SOCKETS' '-lsocket -lnsl'
1876 if feat_yes SOCKETS; then
1877 ${cat} > ${tmp2}.c << \!
1879 #include <sys/types.h>
1880 #include <sys/socket.h>
1881 #include <netinet/in.h>
1886 if(socket(AF_INET, SOCK_STREAM, 0) == -1 && errno == ENOSYS)
1888 if(connect(0, &s, 0) == -1 && errno == ENOSYS)
1894 < ${tmp2}.c run_check sockets 'sockets' \
1895 '#define HAVE_SOCKETS' ||
1896 < ${tmp2}.c run_check sockets 'sockets (via -lnsl)' \
1897 '#define HAVE_SOCKETS' '-lnsl' ||
1898 < ${tmp2}.c run_check sockets 'sockets (via -lsocket -lnsl)' \
1899 '#define HAVE_SOCKETS' '-lsocket -lnsl' ||
1900 feat_bail_required SOCKETS
1902 echo '/* OPT_SOCKETS=0 */' >> ${h}
1903 fi # feat_yes SOCKETS
1905 if feat_yes SOCKETS; then
1906 link_check getaddrinfo 'getaddrinfo(3)' \
1907 '#define HAVE_GETADDRINFO' << \!
1909 #include <sys/types.h>
1910 #include <sys/socket.h>
1914 struct addrinfo a, *ap;
1917 switch((lrv = getaddrinfo("foo", "0", &a, &ap))){
1921 fprintf(stderr, "%s\n", gai_strerror(lrv));
1930 if feat_yes SOCKETS && [ -z "${have_getaddrinfo}" ]; then
1931 compile_check arpa_inet_h '<arpa/inet.h>' \
1932 '#define HAVE_ARPA_INET_H' << \!
1934 #include <sys/types.h>
1935 #include <sys/socket.h>
1937 #include <netinet/in.h>
1938 #include <arpa/inet.h>
1941 ${cat} > ${tmp2}.c << \!
1943 #include <sys/types.h>
1944 #include <sys/socket.h>
1948 #include <netinet/in.h>
1949 #ifdef HAVE_ARPA_INET_H
1950 #include <arpa/inet.h>
1953 struct sockaddr_in servaddr;
1954 unsigned short portno;
1957 struct in_addr **pptr;
1960 if((ep = getservbyname("POPPY-PORT", "tcp")) != NULL)
1961 portno = (unsigned short)ep->s_port;
1963 if((hp = gethostbyname("POPPY-HOST")) != NULL){
1964 pptr = (struct in_addr**)hp->h_addr_list;
1965 if(hp->h_addrtype != AF_INET)
1966 fprintf(stderr, "au\n");
1969 case HOST_NOT_FOUND:
1975 fprintf(stderr, "au\n");
1980 memset(&servaddr, 0, sizeof servaddr);
1981 servaddr.sin_family = AF_INET;
1982 servaddr.sin_port = htons(portno);
1983 memcpy(&servaddr.sin_addr, *pptr, sizeof(struct in_addr));
1984 fprintf(stderr, "Would connect to %s:%d ...\n",
1985 inet_ntoa(**pptr), (int)portno);
1990 < ${tmp2}.c link_check gethostbyname 'get(serv|host)byname(3)' ||
1991 < ${tmp2}.c link_check gethostbyname \
1992 'get(serv|host)byname(3) (via -nsl)' '' '-lnsl' ||
1993 < ${tmp2}.c link_check gethostbyname \
1994 'get(serv|host)byname(3) (via -lsocket -nsl)' \
1995 '' '-lsocket -lnsl' ||
1996 feat_bail_required SOCKETS
2000 run_check setsockopt 'setsockopt(2)' '#define HAVE_SETSOCKOPT' << \!
2001 #include <sys/socket.h>
2007 if(setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, NULL, 0) == -1 &&
2014 feat_yes SOCKETS && [ -n "${have_setsockopt}" ] &&
2015 link_check so_sndtimeo 'SO_SNDTIMEO' '#define HAVE_SO_SNDTIMEO' << \!
2016 #include <sys/socket.h>
2024 setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof tv);
2025 setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof tv);
2030 feat_yes SOCKETS && [ -n "${have_setsockopt}" ] &&
2031 link_check so_linger 'SO_LINGER' '#define HAVE_SO_LINGER' << \!
2032 #include <sys/socket.h>
2040 setsockopt(sockfd, SOL_SOCKET, SO_LINGER, &li, sizeof li);
2045 if feat_yes SSL; then # {{{
2046 # {{{ LibreSSL decided to define OPENSSL_VERSION_NUMBER with a useless value
2047 # instead of keeping it at the one that corresponds to the OpenSSL at fork
2048 # time: we need to test it first in order to get things right
2049 if compile_check _xssl 'TLS/SSL (LibreSSL)' \
2052 #define HAVE_XSSL_RESSL
2053 #define HAVE_XSSL_OPENSSL 0' << \!
2054 #include <openssl/opensslv.h>
2055 #ifdef LIBRESSL_VERSION_NUMBER
2062 # TODO OPENSSL_IS_BORINGSSL, but never tried that one!
2063 elif compile_check _xssl 'TLS/SSL (OpenSSL >= v1.1.0)' \
2066 #define HAVE_XSSL_OPENSSL 0x10100' << \!
2067 #include <openssl/opensslv.h>
2068 #if OPENSSL_VERSION_NUMBER + 0 >= 0x10100000L
2075 elif compile_check _xssl 'TLS/SSL (OpenSSL)' \
2078 #define HAVE_XSSL_OPENSSL 0x10000' << \!
2079 #include <openssl/opensslv.h>
2080 #ifdef OPENSSL_VERSION_NUMBER
2088 feat_bail_required SSL
2091 if feat_yes SSL; then # {{{
2092 if [ -n "${ossl_v1_1}" ]; then
2093 without_check yes xssl 'TLS/SSL (new style *_client_method(3ssl))' \
2094 '#define n_XSSL_CLIENT_METHOD TLS_client_method' \
2096 elif link_check xssl 'TLS/SSL (new style *_client_method(3ssl))' \
2097 '#define n_XSSL_CLIENT_METHOD TLS_client_method' \
2098 '-lssl -lcrypto' << \!
2099 #include <openssl/ssl.h>
2100 #include <openssl/err.h>
2101 #include <openssl/x509v3.h>
2102 #include <openssl/x509.h>
2103 #include <openssl/rand.h>
2104 #ifdef OPENSSL_NO_TLS1 /* TODO only deduced from OPENSSL_NO_SSL[23]! */
2105 # error We need TLSv1.
2108 SSL_CTX *ctx = SSL_CTX_new(TLS_client_method());
2111 PEM_read_PrivateKey(0, 0, 0, 0);
2117 elif link_check xssl 'TLS/SSL (old style *_client_method(3ssl))' \
2118 '#define n_XSSL_CLIENT_METHOD SSLv23_client_method' \
2119 '-lssl -lcrypto' << \!
2120 #include <openssl/ssl.h>
2121 #include <openssl/err.h>
2122 #include <openssl/x509v3.h>
2123 #include <openssl/x509.h>
2124 #include <openssl/rand.h>
2125 #if defined OPENSSL_NO_SSL3 &&\
2126 defined OPENSSL_NO_TLS1 /* TODO only deduced from OPENSSL_NO_SSL[23]! */
2127 # error We need one of SSLv3 and TLSv1.
2130 SSL_CTX *ctx = SSL_CTX_new(SSLv23_client_method());
2133 PEM_read_PrivateKey(0, 0, 0, 0);
2140 feat_bail_required SSL
2144 if feat_yes SSL; then # {{{
2145 if [ -n "${ossl_v1_1}" ]; then
2146 without_check yes xssl_stack_of 'TLS/SSL STACK_OF()' \
2147 '#define HAVE_XSSL_STACK_OF'
2148 elif compile_check xssl_stack_of 'TLS/SSL STACK_OF()' \
2149 '#define HAVE_XSSL_STACK_OF' << \!
2150 #include <stdio.h> /* For C89 NULL */
2151 #include <openssl/ssl.h>
2152 #include <openssl/err.h>
2153 #include <openssl/x509v3.h>
2154 #include <openssl/x509.h>
2155 #include <openssl/rand.h>
2157 STACK_OF(GENERAL_NAME) *gens = NULL;
2159 printf("%p", gens); /* to use it */
2167 if [ -n "${ossl_v1_1}" ]; then
2168 without_check yes xssl_conf 'TLS/SSL OpenSSL_modules_load_file()' \
2169 '#define HAVE_XSSL_CONFIG'
2170 elif link_check xssl_conf 'TLS/SSL OpenSSL_modules_load_file() support' \
2171 '#define HAVE_XSSL_CONFIG' << \!
2172 #include <stdio.h> /* For C89 NULL */
2173 #include <openssl/conf.h>
2175 CONF_modules_load_file(NULL, NULL, CONF_MFLAGS_IGNORE_MISSING_FILE);
2176 CONF_modules_free();
2184 if [ -n "${ossl_v1_1}" ]; then
2185 without_check yes xssl_conf_ctx 'TLS/SSL SSL_CONF_CTX support' \
2186 '#define HAVE_XSSL_CONF_CTX'
2187 elif link_check xssl_conf_ctx 'TLS/SSL SSL_CONF_CTX support' \
2188 '#define HAVE_XSSL_CONF_CTX' << \!
2190 #include <openssl/ssl.h>
2191 #include <openssl/err.h>
2193 SSL_CTX *ctx = SSL_CTX_new(n_XSSL_CLIENT_METHOD());
2194 SSL_CONF_CTX *cctx = SSL_CONF_CTX_new();
2196 SSL_CONF_CTX_set_flags(cctx,
2197 SSL_CONF_FLAG_FILE | SSL_CONF_FLAG_CLIENT |
2198 SSL_CONF_FLAG_CERTIFICATE | SSL_CONF_FLAG_SHOW_ERRORS);
2199 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx);
2200 SSL_CONF_cmd(cctx, "Protocol", "ALL");
2201 SSL_CONF_CTX_finish(cctx);
2202 SSL_CONF_CTX_free(cctx);
2211 if [ -n "${ossl_v1_1}" ]; then
2212 without_check no xssl_rand_egd 'TLS/SSL RAND_egd(3ssl)' \
2213 '#define HAVE_XSSL_RAND_EGD'
2214 elif link_check xssl_rand_egd 'TLS/SSL RAND_egd(3ssl)' \
2215 '#define HAVE_XSSL_RAND_EGD' << \!
2216 #include <openssl/rand.h>
2218 return RAND_egd("some.where") > 0;
2225 if feat_yes SSL_ALL_ALGORITHMS; then
2226 if [ -n "${ossl_v1_1}" ]; then
2227 without_check yes ssl_all_algo 'TLS/SSL all-algorithms support' \
2228 '#define HAVE_SSL_ALL_ALGORITHMS'
2229 elif link_check ssl_all_algo 'TLS/SSL all-algorithms support' \
2230 '#define HAVE_SSL_ALL_ALGORITHMS' << \!
2231 #include <openssl/evp.h>
2233 OpenSSL_add_all_algorithms();
2234 EVP_get_cipherbyname("two cents i never exist");
2242 feat_bail_required SSL_ALL_ALGORITHMS
2245 fi # feat_yes SSL }}}
2247 if feat_yes SSL && feat_yes MD5 && feat_no NOEXTMD5; then # {{{
2248 run_check ssl_md5 'MD5 digest in the used crypto library' \
2249 '#define HAVE_XSSL_MD5' << \!
2252 #include <openssl/md5.h>
2254 char const dat[] = "abrakadabrafidibus";
2255 char dig[16], hex[16 * 2];
2259 memset(dig, 0, sizeof(dig));
2260 memset(hex, 0, sizeof(hex));
2262 MD5_Update(&ctx, dat, sizeof(dat) - 1);
2263 MD5_Final(dig, &ctx);
2265 #define hexchar(n) ((n) > 9 ? (n) - 10 + 'a' : (n) + '0')
2266 for(i = 0; i < sizeof(hex) / 2; i++){
2268 hex[j] = hexchar((dig[i] & 0xf0) >> 4);
2269 hex[++j] = hexchar(dig[i] & 0x0f);
2271 return !!memcmp("6d7d0a3d949da2e96f2aa010f65d8326", hex, sizeof(hex));
2276 echo '/* OPT_SSL=0 */' >> ${h}
2277 fi # }}} feat_yes SSL
2279 if [ "${have_xssl}" = yes ]; then
2289 if feat_yes GSSAPI; then
2290 ${cat} > ${tmp2}.c << \!
2291 #include <gssapi/gssapi.h>
2293 gss_import_name(0, 0, GSS_C_NT_HOSTBASED_SERVICE, 0);
2294 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
2298 ${sed} -e '1s/gssapi\///' < ${tmp2}.c > ${tmp3}.c
2300 if command -v krb5-config >/dev/null 2>&1; then
2301 i=`command -v krb5-config
`
2302 GSS_LIBS="`CFLAGS
= ${i} --libs gssapi
`"
2303 GSS_INCS="`CFLAGS
= ${i} --cflags`"
2304 i='GSS-API via krb5-config(1)'
2308 i='GSS-API in gssapi/gssapi.h, libgssapi'
2310 if < ${tmp2}.c link_check gss \
2311 "${i}" '#define HAVE_GSSAPI' "${GSS_LIBS}" "${GSS_INCS}" ||\
2312 < ${tmp3}.c link_check gss \
2313 'GSS-API in gssapi.h, libgssapi' \
2314 '#define HAVE_GSSAPI
2315 #define GSSAPI_REG_INCLUDE' \
2317 < ${tmp2}.c link_check gss 'GSS-API in libgssapi_krb5' \
2318 '#define HAVE_GSSAPI' \
2320 < ${tmp3}.c link_check gss \
2321 'GSS-API in libgssapi, OpenBSD-style (pre 5.3)' \
2322 '#define HAVE_GSSAPI
2323 #define GSS_REG_INCLUDE' \
2324 '-lgssapi -lkrb5 -lcrypto' \
2325 '-I/usr/include/kerberosV' ||\
2326 < ${tmp2}.c link_check gss 'GSS-API in libgss' \
2327 '#define HAVE_GSSAPI' \
2329 link_check gss 'GSS-API in libgssapi_krb5, old-style' \
2330 '#define HAVE_GSSAPI
2331 #define GSSAPI_OLD_STYLE' \
2332 '-lgssapi_krb5' << \!
2333 #include <gssapi/gssapi.h>
2334 #include <gssapi/gssapi_generic.h>
2336 gss_import_name(0, 0, gss_nt_service_name, 0);
2337 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
2344 feat_bail_required GSSAPI
2347 echo '/* OPT_GSSAPI=0 */' >> ${h}
2348 fi # feat_yes GSSAPI
2353 if feat_yes IDNA; then
2354 if link_check idna 'GNU Libidn' '#define HAVE_IDNA HAVE_IDNA_LIBIDNA' \
2357 #include <idn-free.h>
2358 #include <stringprep.h>
2360 char *utf8, *idna_ascii, *idna_utf8;
2362 utf8 = stringprep_locale_to_utf8("does.this.work");
2363 if (idna_to_ascii_8z(utf8, &idna_ascii, IDNA_USE_STD3_ASCII_RULES)
2366 idn_free(idna_ascii);
2367 /* (Rather link check only here) */
2368 idna_utf8 = stringprep_convert(idna_ascii, "UTF-8", "de_DE");
2374 elif link_check idna 'idnkit' '#define HAVE_IDNA HAVE_IDNA_IDNKIT' \
2377 #include <idn/api.h>
2378 #include <idn/result.h>
2382 char local_name[256];
2384 r = idn_encodename(IDN_ENCODE_APP, "does.this.work", ace_name,
2386 if (r != idn_success) {
2387 fprintf(stderr, "idn_encodename failed: %s\n", idn_result_tostring(r));
2390 r = idn_decodename(IDN_DECODE_APP, ace_name, local_name, sizeof(local_name));
2391 if (r != idn_success) {
2392 fprintf(stderr, "idn_decodename failed: %s\n", idn_result_tostring(r));
2401 feat_bail_required IDNA
2404 if [ -n "${have_idna}" ]; then
2405 echo '#define HAVE_IDNA_LIBIDNA 0' >> ${h}
2406 echo '#define HAVE_IDNA_IDNKIT 1' >> ${h}
2409 echo '/* OPT_IDNA=0 */' >> ${h}
2412 feat_def IMAP_SEARCH
2414 if feat_yes REGEX; then
2415 if link_check regex 'regular expressions' '#define HAVE_REGEX' << \!
2423 status = regcomp(&re, ".*bsd", REG_EXTENDED | REG_ICASE | REG_NOSUB);
2424 xret = regerror(status, &re, NULL, 0);
2425 status = regexec(&re, "plan9", 0,NULL, 0);
2427 return !(status == REG_NOMATCH);
2433 feat_bail_required REGEX
2436 echo '/* OPT_REGEX=0 */' >> ${h}
2439 if feat_yes MLE && [ -n "${have_c90amend1}" ]; then
2441 echo '#define HAVE_MLE' >> ${h}
2443 feat_bail_required MLE
2444 echo '/* OPT_MLE=0 */' >> ${h}
2447 # Generic have-a-line-editor switch for those who need it below
2448 if [ -n "${have_mle}" ]; then
2452 if [ -n "${have_cle}" ] && feat_yes HISTORY; then
2453 echo '#define HAVE_HISTORY' >> ${h}
2455 echo '/* OPT_HISTORY=0 */' >> ${h}
2458 if [ -n "${have_mle}" ] && feat_yes KEY_BINDINGS; then
2459 echo '#define HAVE_KEY_BINDINGS' >> ${h}
2461 echo '/* OPT_KEY_BINDINGS=0 */' >> ${h}
2464 if feat_yes TERMCAP; then
2466 link_check termcap "termcap(5) (via ${4})" \
2467 "#define HAVE_TERMCAP${3}" "${1}" << _EOT
2472 #define UNCONST(P) ((void*)(unsigned long)(void const*)(P))
2473 static int my_putc(int c){return putchar(c);}
2475 char buf[1024+512], cmdbuf[2048], *cpb, *r1;
2476 int r2 = OK, r3 = ERR;
2478 tgetent(buf, getenv("TERM"));
2480 r1 = tgetstr(UNCONST("cm"), &cpb);
2482 r2 = tgetnum(UNCONST("Co"));
2483 r3 = tgetflag(UNCONST("ut"));
2484 tputs("cr", 1, &my_putc);
2485 return (r1 == NULL || r2 == -1 || r3 == 0);
2491 link_check terminfo "terminfo(5) (via ${2})" \
2492 '#define HAVE_TERMCAP
2493 #define HAVE_TERMCAP_CURSES
2494 #define HAVE_TERMINFO' "${1}" << _EOT
2498 #define UNCONST(P) ((void*)(unsigned long)(void const*)(P))
2499 static int my_putc(int c){return putchar(c);}
2505 r0 = setupterm(NULL, 1, &er);
2506 r1 = tigetflag(UNCONST("bce"));
2507 r2 = tigetnum(UNCONST("colors"));
2508 r3 = tigetstr(UNCONST("cr"));
2509 tp = tparm(r3, NULL, NULL, 0,0,0,0,0,0,0);
2510 tputs(tp, 1, &my_putc);
2511 return (r0 == ERR || r1 == -1 || r2 == -2 || r2 == -1 ||
2512 r3 == (char*)-1 || r3 == NULL);
2517 if feat_yes TERMCAP_VIA_TERMINFO; then
2518 __terminfolib -ltinfo -ltinfo ||
2519 __terminfolib -lcurses -lcurses ||
2520 __terminfolib -lcursesw -lcursesw ||
2521 feat_bail_required TERMCAP_VIA_TERMINFO
2524 if [ -z "${have_terminfo}" ]; then
2525 __termcaplib -ltermcap '' '' '-ltermcap' ||
2526 __termcaplib -ltermcap '#include <curses.h>' '
2527 #define HAVE_TERMCAP_CURSES' \
2528 'curses.h / -ltermcap' ||
2529 __termcaplib -lcurses '#include <curses.h>' '
2530 #define HAVE_TERMCAP_CURSES' \
2531 'curses.h / -lcurses' ||
2532 __termcaplib -lcursesw '#include <curses.h>' '
2533 #define HAVE_TERMCAP_CURSES' \
2534 'curses.h / -lcursesw' ||
2535 feat_bail_required TERMCAP
2537 if [ -n "${have_termcap}" ]; then
2538 run_check tgetent_null \
2539 "tgetent(3) of termcap(5) takes NULL buffer" \
2540 "#define HAVE_TGETENT_NULL_BUF" << _EOT
2541 #include <stdio.h> /* For C89 NULL */
2543 #ifdef HAVE_TERMCAP_CURSES
2544 # include <curses.h>
2548 tgetent(NULL, getenv("TERM"));
2555 echo '/* OPT_TERMCAP=0 */' >> ${h}
2556 echo '/* OPT_TERMCAP_VIA_TERMINFO=0 */' >> ${h}
2559 if feat_def SPAM_SPAMC; then
2560 if command -v spamc >/dev/null 2>&1; then
2561 echo "#define SPAM_SPAMC_PATH \"`command -v spamc
`\"" >> ${h}
2565 if feat_yes SPAM_SPAMD && [ -n "${have_af_unix}" ]; then
2566 echo '#define HAVE_SPAM_SPAMD' >> ${h}
2568 feat_bail_required SPAM_SPAMD
2569 echo '/* OPT_SPAM_SPAMD=0 */' >> ${h}
2572 feat_def SPAM_FILTER
2574 if feat_yes SPAM_SPAMC || feat_yes SPAM_SPAMD || feat_yes SPAM_FILTER; then
2575 echo '#define HAVE_SPAM' >> ${h}
2577 echo '/* HAVE_SPAM */' >> ${h}
2580 if feat_yes QUOTE_FOLD &&\
2581 [ -n "${have_c90amend1}" ] && [ -n "${have_wcwidth}" ]; then
2582 echo '#define HAVE_QUOTE_FOLD' >> ${h}
2584 feat_bail_required QUOTE_FOLD
2585 echo '/* OPT_QUOTE_FOLD=0 */' >> ${h}
2588 feat_def FILTER_HTML_TAGSOUP
2597 squeeze_em ${inc} ${tmp}
2599 squeeze_em ${lib} ${tmp}
2604 printf '#ifndef n_CONFIG_H\n# define n_CONFIG_H 1\n' > ${h}
2605 ${cat} ${tmp} >> ${h}
2609 # Create the real mk.mk
2610 # Note we cannout use explicit ./ filename prefix for source and object
2611 # pathnames because of a bug in bmake(1)
2612 ${rm} -rf ${tmp0}.* ${tmp0}*
2613 printf 'OBJ_SRC = ' >> ${mk}
2614 if feat_no AMALGAMATION; then
2615 for i in `printf '%s\n' *.c |
${sort}`; do
2616 if [ "${i}" = privsep.c ]; then
2619 printf "${i} " >> ${mk}
2621 printf '\nAMALGAM_TARGET =\nAMALGAM_DEP =\n' >> ${mk}
2623 printf 'main.c\nAMALGAM_TARGET = main.o\nAMALGAM_DEP = ' >> ${mk}
2625 printf '\n/* HAVE_AMALGAMATION: include sources */\n' >> ${h}
2626 printf '#elif _CONFIG_H + 0 == 1\n' >> ${h}
2627 printf '# undef _CONFIG_H\n' >> ${h}
2628 printf '# define _CONFIG_H 2\n' >> ${h}
2629 for i in `printf '%s\n' *.c |
${sort}`; do
2630 if [ "${i}" = "${j}" ] || [ "${i}" = main.c ] || \
2631 [ "${i}" = privsep.c ]; then
2634 printf "${i} " >> ${mk}
2635 printf "# include \"${i}\"\n" >> ${h}
2638 # tcc(1) fails on 2015-11-13 unless this #else clause existed
2639 echo '#else' >> ${h}
2642 # Finally, create the string that is used by *features* and `version
'.
2643 # Take this nice opportunity and generate a visual listing of included and
2644 # non-included features for the person who runs the configuration
2645 msg '\nThe following features are included
(+) or not
(-):'
2646 set -- ${OPTIONS_DETECT} ${OPTIONS} ${OPTIONS_XTRA}
2647 printf '/* The
"feature string" */\n' >> ${h}
2648 # Because + is expanded by *folder* if first in "echo $features", put something
2649 printf '#define VAL_FEATURES_CNT '${#}'\n#define VAL_FEATURES "#' >> ${h}
2653 sdoc
=`option_doc_of ${opt}`
2654 [ -z "${sdoc}" ] && continue
2655 sopt
="`echo ${opt} | ${tr} '[A-Z]_' '[a-z]-'`"
2656 feat_yes
${opt} && sign
=+ || sign
=-
2657 printf -- "${sep}${sign}${sopt}" >> ${h}
2659 msg " %s
%s
: %s
" ${sign} ${sopt} "${sdoc}"
2661 # TODO instead of using sh+tr+awk+printf, use awk, drop option_doc_of, inc here
2663 #${awk} -v opts="${OPTIONS_DETECT} ${OPTIONS} ${OPTIONS_XTRA}" \
2664 # -v xopts="${XOPTIONS_DETECT} ${XOPTIONS} ${XOPTIONS_XTRA}" \
2666 printf '"\n#endif /* n_CONFIG_H */\n' >> ${h}
2668 echo "LIBS = `${cat} ${lib}`" >> ${mk}
2669 echo "INCS
= `${cat} ${inc}`" >> ${mk}
2671 ${cat} ./mk-mk.in >> ${mk}
2676 msg ' . System-wide resource file: %s/%s' "${VAL_SYSCONFDIR}" "${VAL_SYSCONFRC}"
2677 msg ' . bindir: %s' "${VAL_BINDIR}"
2678 if feat_yes DOTLOCK; then
2679 msg ' . libexecdir: %s' "${VAL_LIBEXECDIR}"
2681 msg ' . mandir: %s' "${VAL_MANDIR}"
2682 msg ' . M(ail)T(ransfer)A(gent): %s (argv0 %s)' "${VAL_MTA}" "${VAL_MTA_ARGV0}"
2683 msg ' . $MAIL spool directory: %s' "${VAL_MAIL}"
2686 if [ -n "${have_fnmatch}" ] && [ -n "${have_fchdir}" ]; then
2690 if [ -z "${have_fnmatch}" ]; then
2691 msg ' . The function fnmatch(3) could not be found.'
2692 msg ' Filename patterns like wildcard are not supported on your system'
2694 if [ -z "${have_fchdir}" ]; then
2695 msg ' . The function fchdir(2) could not be found.'
2696 msg ' We will use chdir(2) instead.'
2697 msg ' This is a problem only if the current working directory is changed'
2698 msg ' while this program is inside of it'