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 backslash escaping in order to be able to use
701 # multiline values in make.rc; the resulting sh(1)/sed(1) code was very slow
702 # 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}
985 echo '/* OPT_'${1}'=0 */' >> ${h}
990 < "${1}" > "${2}" ${awk} \
991 'BEGIN {ORS = " "} /^[^#]/ {print} {next} END {ORS = ""; print "\n"}'
994 ## -- >8 - <<SUPPORT FUNS | RUNNING>> - 8< -- ##
996 # First of all, create new configuration and check whether it changed
998 # Very easy checks for the operating system in order to be able to adjust paths
999 # or similar very basic things which we need to be able to go at all
1002 # Check those tools right now that we need before including $rc
1003 msg 'Checking for basic utility set'
1004 check_tool awk "${awk:-`command -v awk`}"
1005 check_tool rm "${rm:-`command -v rm`}"
1006 check_tool tr "${tr:-`command -v tr`}"
1008 # Initialize the option set
1009 msg_nonl 'Setting up configuration options ... '
1013 # Include $rc, but only take from it what wasn't overwritten by the user from
1014 # within the command line or from a chosen fixed CONFIG=
1015 # Note we leave alone the values
1016 trap "exit 1" HUP INT TERM
1017 trap "${rm} -f ${tmp}" EXIT
1019 msg_nonl 'Joining in %s ... ' ${rc}
1023 # We need to know about that now, in order to provide utility overwrites etc.
1026 msg 'Checking for remaining set of utilities'
1027 check_tool grep "${grep:-`command -v grep`}"
1029 # Before we step ahead with the other utilities perform a path cleanup first.
1033 check_tool cat "${cat:-`command -v cat`}"
1034 check_tool chmod "${chmod:-`command -v chmod`}"
1035 check_tool cp "${cp:-`command -v cp`}"
1036 check_tool cmp "${cmp:-`command -v cmp`}"
1038 check_tool mkdir "${mkdir:-`command -v mkdir`}"
1039 check_tool mv "${mv:-`command -v mv`}"
1041 check_tool sed "${sed:-`command -v sed`}"
1042 check_tool sort "${sort:-`command -v sort`}"
1043 check_tool tee "${tee:-`command -v tee`}"
1045 check_tool chown "${chown:-`command -v chown`}" 1 ||
1046 check_tool chown "/sbin
/chown
" 1 ||
1047 check_tool chown "/usr
/sbin
/chown
"
1049 check_tool make "${MAKE:-`command -v make`}"
1051 check_tool strip "${STRIP:-`command -v strip`}" 1 &&
1052 HAVE_STRIP=1 || HAVE_STRIP=0
1054 # For ./cc-test.sh only
1055 check_tool cksum "${cksum:-`command -v cksum`}"
1057 # Update OPT_ options now, in order to get possible inter-dependencies right
1060 # (No functions since some shells loose non-exported variables in traps)
1061 trap "trap \"\" HUP INT TERM
; exit 1" HUP INT TERM
1062 trap "trap \"\" HUP INT TERM EXIT
;\
1063 ${rm} -rf ${newlst} ${tmp0}.* ${tmp0}* ${newmk} ${newev} ${newh}" EXIT
1065 # Our configuration options may at this point still contain shell snippets,
1066 # we need to evaluate them in order to get them expanded, and we need those
1067 # evaluated values not only in our new configuration file, but also at hand..
1068 msg_nonl 'Evaluating all configuration items ... '
1072 # Add the known utility and some other variables
1073 printf "#define VAL_UAGENT \"${VAL_SID}${VAL_NAIL}\"\n" >> ${newh}
1074 printf "VAL_UAGENT = ${VAL_SID}${VAL_NAIL}\n" >> ${newmk}
1076 printf "#define VAL_PRIVSEP \"${VAL_SID}${VAL_NAIL}-privsep\"\n" >> ${newh}
1077 printf "VAL_PRIVSEP = \$(VAL_UAGENT)-privsep\n" >> ${newmk}
1078 if feat_yes DOTLOCK
; then
1079 printf "OPTIONAL_PRIVSEP = \$(VAL_PRIVSEP)\n" >> ${newmk}
1081 printf "OPTIONAL_PRIVSEP =\n" >> ${newmk}
1085 awk cat chmod chown
cp cmp grep mkdir
mv rm sed sort tee tr \
1086 MAKE MAKEFLAGS
make SHELL strip \
1089 printf "${i} = ${j}\n" >> ${newmk}
1090 printf "${i}=${j}\n" >> ${newlst}
1091 printf "${i}=\"${j}\";export ${i}; " >> ${newev}
1093 printf "\n" >> ${newev}
1095 # Build a basic set of INCS and LIBS according to user environment.
1096 path_check C_INCLUDE_PATH -I _INCS
1097 INCS="${INCS} ${_INCS}"
1098 path_check LD_LIBRARY_PATH -L _LIBS
1099 LIBS="${LIBS} ${_LIBS}"
1101 export C_INCLUDE_PATH LD_LIBRARY_PATH
1103 # Some environments need runtime path flags to be able to go at all
1106 ## Detect CC, whether we can use it, and possibly which CFLAGS we can use
1110 ${cat} > ${tmp}.c << \!
1113 static void doit(char const *s);
1115 main(int argc, char **argv){
1118 doit("Hello world
");
1122 doit(char const *s){
1124 memcpy(buf, s, strlen(s) +1);
1129 if "${CC}" ${INCS} ${CFLAGS} ${EXTRA_CFLAGS} ${LDFLAGS} ${EXTRA_LDFLAGS} \
1130 -o ${tmp2} ${tmp}.c ${LIBS}; then
1133 msg
'ERROR: i cannot compile a "Hello world" via'
1135 "${CC} ${INCS} ${CFLAGS} ${EXTRA_CFLAGS} ${LDFLAGS} ${EXTRA_LDFLAGS} ${LIBS}"
1136 msg
'ERROR: Please read INSTALL, rerun'
1140 # This may also update ld_runtime_flags() (again)
1147 printf -- "${i}=${j}\n" >> ${newlst}
1153 PATH C_INCLUDE_PATH LD_LIBRARY_PATH \
1157 printf -- "${i} = ${j}\n" >> ${newmk}
1158 printf -- "${i}=${j}\n" >> ${newlst}
1161 # Now finally check whether we already have a configuration and if so, whether
1162 # all those parameters are still the same.. or something has actually changed
1163 if [ -f ${lst} ] && ${cmp} ${newlst} ${lst} >/dev/null 2>&1; then
1164 echo 'Configuration is up-to-date'
1166 elif [ -f ${lst} ]; then
1167 echo 'Configuration has been updated..'
1168 ( eval "${MAKE} -f .
/mk.mk clean
" )
1171 echo 'Shiny configuration..'
1174 # Time to redefine helper 1
1176 ${rm} -f ${lst} ${h} ${mk}
1180 ${mv} -f ${newlst} ${lst}
1181 ${mv} -f ${newev} ${ev}
1182 ${mv} -f ${newh} ${h}
1183 ${mv} -f ${newmk} ${mk}
1185 if [ -z "${VERBOSE}" ]; then
1186 printf -- "ECHO_CC
= @
echo ' 'CC \$
(@
);\n" >> ${mk}
1187 printf -- "ECHO_LINK
= @
echo ' 'LINK \$
(@
);\n" >> ${mk}
1188 printf -- "ECHO_GEN
= @
echo ' 'GEN \$
(@
);\n" >> ${mk}
1189 printf -- "ECHO_TEST
= @
\n" >> ${mk}
1190 printf -- "ECHO_CMD
= @
echo ' CMD';\n" >> ${mk}
1191 printf -- "ECHO_BLOCK_BEGIN
= @
( \n" >> ${mk}
1192 printf -- "ECHO_BLOCK_END
= ) >/dev
/null
\n" >> ${mk}
1195 ## Compile and link checking
1201 makefile=./config.mk
1203 # (No function since some shells loose non-exported variables in traps)
1204 trap "trap \"\" HUP INT TERM
;\
1205 ${rm} -f ${lst} ${h} ${mk} ${lib} ${inc}; exit 1" HUP INT TERM
1206 trap "trap \"\" HUP INT TERM EXIT
;\
1207 ${rm} -rf ${tmp0}.* ${tmp0}* ${makefile}" EXIT
1209 # Time to redefine helper 2
1213 printf "*** ${fmt}\\n
" "${@}"
1214 printf -- "${fmt}\\n
" "${@}" >&5
1219 printf "*** ${fmt}\\n
" "${@}"
1220 printf -- "${fmt}" "${@}" >&5
1224 exec 5>&2 > ${log} 2>&1
1226 echo "${LIBS}" > ${lib}
1227 echo "${INCS}" > ${inc}
1228 ${cat} > ${makefile} << \!
1229 .SUFFIXES: .o .c .x .y
1231 $(CC) -I./ $(XINCS) $(CFLAGS) -c $(<)
1233 $(CC) -I./ $(XINCS) -E $(<) > $(@)
1235 $(CC) -I./ $(XINCS) $(CFLAGS) $(LDFLAGS) -o $(@) $(<) $(XLIBS)
1240 # May be multiline..
1241 [ -n "${OS_DEFINES}" ] && printf -- "${OS_DEFINES}" >> ${h}
1243 feat_def ALWAYS_UNICODE_LOCALE
1244 feat_def AMALGAMATION
1245 feat_def CROSS_BUILD
1253 if xrun_check inline
'inline functions' \
1254 '#define HAVE_INLINE
1255 #define n_INLINE static inline' << \
!
1256 static inline int ilf
(int i
){return ++i
;}
1257 int main
(void
){return ilf
(-1);}
1261 elif xrun_check inline
'inline functions (via __inline)' \
1262 '#define HAVE_INLINE
1263 #define n_INLINE static __inline' << \
!
1264 static __inline int ilf
(int i
){return ++i
;}
1265 int main
(void
){return ilf
(-1);}
1271 ## Test for "basic" system-calls / functionality that is used by all parts
1272 ## of our program. Once this is done fork away BASE_LIBS and other BASE_*
1273 ## macros to be used by only the subprograms (potentially).
1275 if run_check clock_gettime
'clock_gettime(2)' \
1276 '#define HAVE_CLOCK_GETTIME' << \
!
1282 if(!clock_gettime
(CLOCK_REALTIME
, &ts
) || errno
!= ENOSYS
)
1289 elif run_check clock_gettime
'clock_gettime(2) (via -lrt)' \
1290 '#define HAVE_CLOCK_GETTIME' '-lrt' << \
!
1296 if(!clock_gettime
(CLOCK_REALTIME
, &ts
) || errno
!= ENOSYS
)
1303 elif run_check gettimeofday
'gettimeofday(2)' \
1304 '#define HAVE_GETTIMEOFDAY' << \
!
1305 #include <stdio.h> /* For C89 NULL */
1306 #include <sys/time.h>
1311 if(!gettimeofday
(&tv
, NULL
) || errno
!= ENOSYS
)
1319 have_no_subsecond_time
=1
1322 if run_check nanosleep
'nanosleep(2)' \
1323 '#define HAVE_NANOSLEEP' << \
!
1330 ts.tv_nsec
= 100000;
1331 if(!nanosleep
(&ts
, NULL
) || errno
!= ENOSYS
)
1338 elif run_check nanosleep
'nanosleep(2) (via -lrt)' \
1339 '#define HAVE_NANOSLEEP' '-lrt' << \
!
1346 ts.tv_nsec
= 100000;
1347 if(!nanosleep
(&ts
, NULL
) || errno
!= ENOSYS
)
1354 # link_check is enough for this, that function is so old, trust the proto
1355 elif link_check
sleep 'sleep(3)' \
1356 '#define HAVE_SLEEP' << \
!
1360 if(!sleep(1) || errno
!= ENOSYS
)
1368 msg
'ERROR: we require one of nanosleep(2) and sleep(3).'
1372 if run_check userdb
'gete?[gu]id(2), getpwuid(3), getpwnam(3)' << \
!
1381 if((gid
= getgid
()) != 0)
1383 if((uid
= getuid
()) != 0)
1385 if((pw
= getpwuid
(uid
)) == NULL
&& errno
== ENOSYS
)
1387 if((pw
= getpwnam
("root")) == NULL
&& errno
== ENOSYS
)
1395 msg
'ERROR: we require user and group info / database searches.'
1396 msg
'That much Unix we indulge ourselfs.'
1400 if link_check ftruncate
'ftruncate(2)' \
1401 '#define HAVE_FTRUNCATE' << \
!
1403 #include <sys/types.h>
1405 return (ftruncate
(0, 0) != 0);
1411 msg
'ERROR: we require the ftruncate(2) system call.'
1415 if run_check sa_restart
'SA_RESTART (for sigaction(2))' << \
!
1419 struct sigaction nact
, oact
;
1421 nact.sa_handler
= SIG_DFL
;
1422 sigemptyset
(&nact.sa_mask
);
1423 nact.sa_flags
= SA_RESTART
;
1424 return !(!sigaction
(SIGCHLD
, &nact
, &oact
) || errno
!= ENOSYS
);
1430 msg
'ERROR: we (yet) require the SA_RESTART flag for sigaction(2).'
1434 if link_check snprintf
'snprintf(3)' << \
!
1439 snprintf
(b
, sizeof b
, "%s", "string");
1446 msg
'ERROR: we require the snprintf(3) function.'
1450 if link_check environ
'environ(3)' << \
!
1451 #include <stdio.h> /* For C89 NULL */
1453 extern char
**environ
;
1455 return environ
[0] == NULL
;
1461 msg
'ERROR: we require the environ(3) array for subprocess control.'
1465 if link_check setenv
'(un)?setenv(3)' '#define HAVE_SETENV' << \
!
1468 setenv
("s-mailx", "i want to see it cute!", 1);
1469 unsetenv
("s-mailx");
1475 elif link_check setenv
'putenv(3)' '#define HAVE_PUTENV' << \
!
1478 putenv
("s-mailx=i want to see it cute!");
1485 msg
'ERROR: we require either the setenv(3) or putenv(3) functions.'
1489 if link_check termios
'termios.h and tc*(3) family' << \
!
1490 #include <termios.h>
1492 struct termios tios
;
1494 tcgetattr
(0, &tios
);
1495 tcsetattr
(0, TCSANOW | TCSADRAIN | TCSAFLUSH
, &tios
);
1502 msg
'ERROR: we require termios.h and the tc*() family of functions.'
1503 msg
'That much Unix we indulge ourselfs.'
1509 if link_check vsnprintf
'vsnprintf(3)' << \
!
1512 static void dome
(char
*buf
, size_t blen
, ...
){
1516 vsnprintf
(buf
, blen
, "%s", ap
);
1522 dome
(b
, sizeof b
, "string");
1529 feat_bail_required ERRORS
1532 if [ "${have_vsnprintf}" = yes ]; then
1534 link_check va_copy
"va_copy(3) (as ${2})" \
1535 "#define HAVE_N_VA_COPY
1536 #define n_va_copy ${2}" <<_EOT
1540 # if defined __va_copy && !defined va_copy
1541 # define va_copy __va_copy
1544 static void dome2(char *buf, size_t blen, va_list src){
1548 vsnprintf(buf, blen, "%s", ap);
1551 static void dome(char *buf, size_t blen, ...){
1555 dome2(buf, blen, ap);
1561 dome(b, sizeof b, "string");
1566 __va_copy
0 va_copy || __va_copy
1 __va_copy
1569 run_check pathconf
'f?pathconf(2)' '#define HAVE_PATHCONF' << \
!
1576 rv |
= !(pathconf
(".", _PC_NAME_MAX
) >= 0 || errno
== 0 || errno
!= ENOSYS
);
1578 rv |
= !(pathconf
(".", _PC_PATH_MAX
) >= 0 || errno
== 0 || errno
!= ENOSYS
);
1580 /* Only link check
*/
1581 fpathconf
(0, _PC_NAME_MAX
);
1587 run_check pipe2
'pipe2(2)' '#define HAVE_PIPE2' << \
!
1594 if(!pipe2
(fds
, O_CLOEXEC
) || errno
!= ENOSYS
)
1600 # We use this only then for now (need NOW+1)
1601 run_check utimensat
'utimensat(2)' '#define HAVE_UTIMENSAT' << \
!
1602 #include <fcntl.h> /* For AT_* */
1603 #include <sys/stat.h>
1606 struct timespec ts
[2];
1608 ts
[0].tv_nsec
= UTIME_NOW
;
1609 ts
[1].tv_nsec
= UTIME_OMIT
;
1610 if(!utimensat
(AT_FDCWD
, "", ts
, 0) || errno
!= ENOSYS
)
1618 # XXX Add POSIX check once standardized
1619 if link_check posix_random
'arc4random(3)' '#define HAVE_POSIX_RANDOM 0' << \
!
1628 elif link_check getrandom
'getrandom(2) (in sys/random.h)' \
1629 '#define HAVE_GETRANDOM(B,S) getrandom(B, S, 0)
1630 #define HAVE_GETRANDOM_HEADER <sys/random.h>' <<\
!
1631 #include <sys/random.h>
1634 getrandom
(buf
, sizeof buf
, 0);
1640 elif link_check getrandom
'getrandom(2) (via syscall(2))' \
1641 '#define HAVE_GETRANDOM(B,S) syscall(SYS_getrandom, B, S, 0)
1642 #define HAVE_GETRANDOM_HEADER <sys/syscall.h>' <<\
!
1643 #include <sys/syscall.h>
1646 syscall
(SYS_getrandom
, buf
, sizeof buf
, 0);
1652 elif [ -n "${have_no_subsecond_time}" ]; then
1653 msg
'ERROR: %s %s' 'without a native random' \
1654 'one of clock_gettime(2) and gettimeofday(2) is required.'
1659 link_check putc_unlocked
'putc_unlocked(3)' '#define HAVE_PUTC_UNLOCKED' <<\
!
1662 putc_unlocked
('@', stdout
);
1667 link_check fchdir
'fchdir(3)' '#define HAVE_FCHDIR' << \
!
1675 if run_check realpath
'realpath(3)' '#define HAVE_REALPATH' << \
!
1678 char x_buf
[4096], *x
= realpath
(".", x_buf
);
1680 return (x
!= NULL
) ?
0 : 1;
1684 if run_check realpath_malloc
'realpath(3) takes NULL' \
1685 '#define HAVE_REALPATH_NULL' << \
!
1688 char
*x
= realpath
(".", NULL
);
1692 return (x
!= NULL
) ?
0 : 1;
1700 ## optional and selectable
1702 if feat_yes DOTLOCK
; then
1703 if run_check readlink
'readlink(2)' << \
!
1709 if(!readlink
("here", buf
, sizeof buf
) || errno
!= ENOSYS
)
1717 feat_bail_required DOTLOCK
1721 if feat_yes DOTLOCK
; then
1722 if run_check fchown
'fchown(2)' << \
!
1726 if(!fchown
(0, 0, 0) || errno
!= ENOSYS
)
1734 feat_bail_required DOTLOCK
1738 ## Now it is the time to fork away the BASE_ series
1741 squeeze_em
${inc} ${tmp}
1743 squeeze_em
${lib} ${tmp}
1746 echo "BASE_LIBS = `${cat} ${lib}`" >> ${mk}
1747 echo "BASE_INCS
= `${cat} ${inc}`" >> ${mk}
1749 ## The remains are expected to be used only by the main MUA binary!
1752 link_check setlocale 'setlocale(3)' '#define HAVE_SETLOCALE' << \!
1755 setlocale(LC_ALL, "");
1759 [ -n "${have_setlocale}" ] && OPT_LOCALES=1
1761 OPT_MULTIBYTE_CHARSETS=0
1763 OPT_TERMINAL_CHARSET=0
1764 if [ -n "${have_setlocale}" ]; then
1765 link_check c90amend1 'ISO/IEC 9899:1990/Amendment 1:1995' \
1766 '#define HAVE_C90AMEND1' << \!
1772 char mbb[MB_LEN_MAX + 1];
1777 mbtowc(&wc, "x", 1);
1778 mbrtowc(&wc, "x", 1, NULL);
1780 return (mblen("\0", 1) == 0);
1783 [ -n "${have_c90amend1}" ] && OPT_MULTIBYTE_CHARSETS=1
1785 if [ -n "${have_c90amend1}" ]; then
1786 link_check wcwidth 'wcwidth(3)' '#define HAVE_WCWIDTH' << \!
1793 [ -n "${have_wcwidth}" ] && OPT_WIDE_GLYPHS=1
1796 link_check nl_langinfo 'nl_langinfo(3)' '#define HAVE_NL_LANGINFO' << \!
1797 #include <langinfo.h>
1801 return (nl_langinfo(CODESET) == NULL);
1804 [ -n "${have_nl_langinfo}" ] && OPT_TERMINAL_CHARSET=1
1807 link_check fnmatch 'fnmatch(3)' '#define HAVE_FNMATCH' << \!
1808 #include <fnmatch.h>
1810 return (fnmatch("*", ".", FNM_PATHNAME | FNM_PERIOD) == FNM_NOMATCH);
1814 link_check dirent_d_type 'struct dirent.d_type' '#define HAVE_DIRENT_TYPE' << \!
1818 return !(de.d_type == DT_UNKNOWN ||
1819 de.d_type == DT_DIR || de.d_type == DT_LNK);
1823 ## optional and selectable
1825 if feat_yes ICONV; then
1826 ${cat} > ${tmp2}.c << \!
1827 #include <stdio.h> /* For C89 NULL */
1832 id = iconv_open("foo", "bar");
1833 iconv(id, NULL, NULL, NULL, NULL);
1838 < ${tmp2}.c link_check iconv 'iconv(3) functionality' \
1839 '#define HAVE_ICONV' ||
1840 < ${tmp2}.c link_check iconv 'iconv(3) functionality (via -liconv)' \
1841 '#define HAVE_ICONV' '-liconv' ||
1842 feat_bail_required ICONV
1844 echo '/* OPT_ICONV=0 */' >> ${h}
1847 if feat_yes SOCKETS || feat_yes SPAM_SPAMD; then
1848 ${cat} > ${tmp2}.c << \!
1849 #include <sys/types.h>
1850 #include <sys/socket.h>
1854 struct sockaddr_un soun;
1856 if(socket(AF_UNIX, SOCK_STREAM, 0) == -1 && errno == ENOSYS)
1858 if(connect(0, (struct sockaddr*)&soun, 0) == -1 && errno == ENOSYS)
1860 if(shutdown(0, SHUT_RD | SHUT_WR | SHUT_RDWR) == -1 && errno == ENOSYS)
1866 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets' \
1867 '#define HAVE_UNIX_SOCKETS' ||
1868 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets (via -lnsl)' \
1869 '#define HAVE_UNIX_SOCKETS' '-lnsl' ||
1870 < ${tmp2}.c run_check af_unix 'AF_UNIX sockets (via -lsocket -lnsl)' \
1871 '#define HAVE_UNIX_SOCKETS' '-lsocket -lnsl'
1874 if feat_yes SOCKETS; then
1875 ${cat} > ${tmp2}.c << \!
1877 #include <sys/types.h>
1878 #include <sys/socket.h>
1879 #include <netinet/in.h>
1884 if(socket(AF_INET, SOCK_STREAM, 0) == -1 && errno == ENOSYS)
1886 if(connect(0, &s, 0) == -1 && errno == ENOSYS)
1892 < ${tmp2}.c run_check sockets 'sockets' \
1893 '#define HAVE_SOCKETS' ||
1894 < ${tmp2}.c run_check sockets 'sockets (via -lnsl)' \
1895 '#define HAVE_SOCKETS' '-lnsl' ||
1896 < ${tmp2}.c run_check sockets 'sockets (via -lsocket -lnsl)' \
1897 '#define HAVE_SOCKETS' '-lsocket -lnsl' ||
1898 feat_bail_required SOCKETS
1900 echo '/* OPT_SOCKETS=0 */' >> ${h}
1901 fi # feat_yes SOCKETS
1903 if feat_yes SOCKETS; then
1904 link_check getaddrinfo 'getaddrinfo(3)' \
1905 '#define HAVE_GETADDRINFO' << \!
1907 #include <sys/types.h>
1908 #include <sys/socket.h>
1912 struct addrinfo a, *ap;
1915 switch((lrv = getaddrinfo("foo", "0", &a, &ap))){
1919 fprintf(stderr, "%s\n", gai_strerror(lrv));
1928 if feat_yes SOCKETS && [ -z "${have_getaddrinfo}" ]; then
1929 compile_check arpa_inet_h '<arpa/inet.h>' \
1930 '#define HAVE_ARPA_INET_H' << \!
1932 #include <sys/types.h>
1933 #include <sys/socket.h>
1935 #include <netinet/in.h>
1936 #include <arpa/inet.h>
1939 ${cat} > ${tmp2}.c << \!
1941 #include <sys/types.h>
1942 #include <sys/socket.h>
1946 #include <netinet/in.h>
1947 #ifdef HAVE_ARPA_INET_H
1948 #include <arpa/inet.h>
1951 struct sockaddr_in servaddr;
1952 unsigned short portno;
1955 struct in_addr **pptr;
1958 if((ep = getservbyname("POPPY-PORT", "tcp")) != NULL)
1959 portno = (unsigned short)ep->s_port;
1961 if((hp = gethostbyname("POPPY-HOST")) != NULL){
1962 pptr = (struct in_addr**)hp->h_addr_list;
1963 if(hp->h_addrtype != AF_INET)
1964 fprintf(stderr, "au\n");
1967 case HOST_NOT_FOUND:
1973 fprintf(stderr, "au\n");
1978 memset(&servaddr, 0, sizeof servaddr);
1979 servaddr.sin_family = AF_INET;
1980 servaddr.sin_port = htons(portno);
1981 memcpy(&servaddr.sin_addr, *pptr, sizeof(struct in_addr));
1982 fprintf(stderr, "Would connect to %s:%d ...\n",
1983 inet_ntoa(**pptr), (int)portno);
1988 < ${tmp2}.c link_check gethostbyname 'get(serv|host)byname(3)' ||
1989 < ${tmp2}.c link_check gethostbyname \
1990 'get(serv|host)byname(3) (via -nsl)' '' '-lnsl' ||
1991 < ${tmp2}.c link_check gethostbyname \
1992 'get(serv|host)byname(3) (via -lsocket -nsl)' \
1993 '' '-lsocket -lnsl' ||
1994 feat_bail_required SOCKETS
1998 run_check setsockopt 'setsockopt(2)' '#define HAVE_SETSOCKOPT' << \!
1999 #include <sys/socket.h>
2005 if(setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, NULL, 0) == -1 &&
2012 feat_yes SOCKETS && [ -n "${have_setsockopt}" ] &&
2013 link_check so_sndtimeo 'SO_SNDTIMEO' '#define HAVE_SO_SNDTIMEO' << \!
2014 #include <sys/socket.h>
2022 setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof tv);
2023 setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof tv);
2028 feat_yes SOCKETS && [ -n "${have_setsockopt}" ] &&
2029 link_check so_linger 'SO_LINGER' '#define HAVE_SO_LINGER' << \!
2030 #include <sys/socket.h>
2038 setsockopt(sockfd, SOL_SOCKET, SO_LINGER, &li, sizeof li);
2043 if feat_yes SSL; then # {{{
2044 # {{{ LibreSSL decided to define OPENSSL_VERSION_NUMBER with a useless value
2045 # instead of keeping it at the one that corresponds to the OpenSSL at fork
2046 # time: we need to test it first in order to get things right
2047 if compile_check _xssl 'TLS/SSL (LibreSSL)' \
2050 #define HAVE_XSSL_RESSL
2051 #define HAVE_XSSL_OPENSSL 0' << \!
2052 #include <openssl/opensslv.h>
2053 #ifdef LIBRESSL_VERSION_NUMBER
2060 # TODO OPENSSL_IS_BORINGSSL, but never tried that one!
2061 elif compile_check _xssl 'TLS/SSL (OpenSSL >= v1.1.0)' \
2064 #define HAVE_XSSL_OPENSSL 0x10100' << \!
2065 #include <openssl/opensslv.h>
2066 #if OPENSSL_VERSION_NUMBER + 0 >= 0x10100000L
2073 elif compile_check _xssl 'TLS/SSL (OpenSSL)' \
2076 #define HAVE_XSSL_OPENSSL 0x10000' << \!
2077 #include <openssl/opensslv.h>
2078 #ifdef OPENSSL_VERSION_NUMBER
2086 feat_bail_required SSL
2089 if feat_yes SSL; then # {{{
2090 if [ -n "${ossl_v1_1}" ]; then
2091 without_check yes xssl 'TLS/SSL (new style *_client_method(3ssl))' \
2092 '#define n_XSSL_CLIENT_METHOD TLS_client_method' \
2094 elif link_check xssl 'TLS/SSL (new style *_client_method(3ssl))' \
2095 '#define n_XSSL_CLIENT_METHOD TLS_client_method' \
2096 '-lssl -lcrypto' << \!
2097 #include <openssl/ssl.h>
2098 #include <openssl/err.h>
2099 #include <openssl/x509v3.h>
2100 #include <openssl/x509.h>
2101 #include <openssl/rand.h>
2102 #ifdef OPENSSL_NO_TLS1 /* TODO only deduced from OPENSSL_NO_SSL[23]! */
2103 # error We need TLSv1.
2106 SSL_CTX *ctx = SSL_CTX_new(TLS_client_method());
2109 PEM_read_PrivateKey(0, 0, 0, 0);
2115 elif link_check xssl 'TLS/SSL (old style *_client_method(3ssl))' \
2116 '#define n_XSSL_CLIENT_METHOD SSLv23_client_method' \
2117 '-lssl -lcrypto' << \!
2118 #include <openssl/ssl.h>
2119 #include <openssl/err.h>
2120 #include <openssl/x509v3.h>
2121 #include <openssl/x509.h>
2122 #include <openssl/rand.h>
2123 #if defined OPENSSL_NO_SSL3 &&\
2124 defined OPENSSL_NO_TLS1 /* TODO only deduced from OPENSSL_NO_SSL[23]! */
2125 # error We need one of SSLv3 and TLSv1.
2128 SSL_CTX *ctx = SSL_CTX_new(SSLv23_client_method());
2131 PEM_read_PrivateKey(0, 0, 0, 0);
2138 feat_bail_required SSL
2142 if feat_yes SSL; then # {{{
2143 if [ -n "${ossl_v1_1}" ]; then
2144 without_check yes xssl_stack_of 'TLS/SSL STACK_OF()' \
2145 '#define HAVE_XSSL_STACK_OF'
2146 elif compile_check xssl_stack_of 'TLS/SSL STACK_OF()' \
2147 '#define HAVE_XSSL_STACK_OF' << \!
2148 #include <stdio.h> /* For C89 NULL */
2149 #include <openssl/ssl.h>
2150 #include <openssl/err.h>
2151 #include <openssl/x509v3.h>
2152 #include <openssl/x509.h>
2153 #include <openssl/rand.h>
2155 STACK_OF(GENERAL_NAME) *gens = NULL;
2157 printf("%p", gens); /* to use it */
2165 if [ -n "${ossl_v1_1}" ]; then
2166 without_check yes xssl_conf 'TLS/SSL OpenSSL_modules_load_file()' \
2167 '#define HAVE_XSSL_CONFIG'
2168 elif link_check xssl_conf 'TLS/SSL OpenSSL_modules_load_file() support' \
2169 '#define HAVE_XSSL_CONFIG' << \!
2170 #include <stdio.h> /* For C89 NULL */
2171 #include <openssl/conf.h>
2173 CONF_modules_load_file(NULL, NULL, CONF_MFLAGS_IGNORE_MISSING_FILE);
2174 CONF_modules_free();
2182 if [ -n "${ossl_v1_1}" ]; then
2183 without_check yes xssl_conf_ctx 'TLS/SSL SSL_CONF_CTX support' \
2184 '#define HAVE_XSSL_CONF_CTX'
2185 elif link_check xssl_conf_ctx 'TLS/SSL SSL_CONF_CTX support' \
2186 '#define HAVE_XSSL_CONF_CTX' << \!
2188 #include <openssl/ssl.h>
2189 #include <openssl/err.h>
2191 SSL_CTX *ctx = SSL_CTX_new(n_XSSL_CLIENT_METHOD());
2192 SSL_CONF_CTX *cctx = SSL_CONF_CTX_new();
2194 SSL_CONF_CTX_set_flags(cctx,
2195 SSL_CONF_FLAG_FILE | SSL_CONF_FLAG_CLIENT |
2196 SSL_CONF_FLAG_CERTIFICATE | SSL_CONF_FLAG_SHOW_ERRORS);
2197 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx);
2198 SSL_CONF_cmd(cctx, "Protocol", "ALL");
2199 SSL_CONF_CTX_finish(cctx);
2200 SSL_CONF_CTX_free(cctx);
2209 if [ -n "${ossl_v1_1}" ]; then
2210 without_check no xssl_rand_egd 'TLS/SSL RAND_egd(3ssl)' \
2211 '#define HAVE_XSSL_RAND_EGD'
2212 elif link_check xssl_rand_egd 'TLS/SSL RAND_egd(3ssl)' \
2213 '#define HAVE_XSSL_RAND_EGD' << \!
2214 #include <openssl/rand.h>
2216 return RAND_egd("some.where") > 0;
2223 if feat_yes SSL_ALL_ALGORITHMS; then
2224 if [ -n "${ossl_v1_1}" ]; then
2225 without_check yes ssl_all_algo 'TLS/SSL all-algorithms support' \
2226 '#define HAVE_SSL_ALL_ALGORITHMS'
2227 elif link_check ssl_all_algo 'TLS/SSL all-algorithms support' \
2228 '#define HAVE_SSL_ALL_ALGORITHMS' << \!
2229 #include <openssl/evp.h>
2231 OpenSSL_add_all_algorithms();
2232 EVP_get_cipherbyname("two cents i never exist");
2240 feat_bail_required SSL_ALL_ALGORITHMS
2243 fi # feat_yes SSL }}}
2245 if feat_yes SSL && feat_yes MD5 && feat_no NOEXTMD5; then # {{{
2246 run_check ssl_md5 'MD5 digest in the used crypto library' \
2247 '#define HAVE_XSSL_MD5' << \!
2250 #include <openssl/md5.h>
2252 char const dat[] = "abrakadabrafidibus";
2253 char dig[16], hex[16 * 2];
2257 memset(dig, 0, sizeof(dig));
2258 memset(hex, 0, sizeof(hex));
2260 MD5_Update(&ctx, dat, sizeof(dat) - 1);
2261 MD5_Final(dig, &ctx);
2263 #define hexchar(n) ((n) > 9 ? (n) - 10 + 'a' : (n) + '0')
2264 for(i = 0; i < sizeof(hex) / 2; i++){
2266 hex[j] = hexchar((dig[i] & 0xf0) >> 4);
2267 hex[++j] = hexchar(dig[i] & 0x0f);
2269 return !!memcmp("6d7d0a3d949da2e96f2aa010f65d8326", hex, sizeof(hex));
2274 echo '/* OPT_SSL=0 */' >> ${h}
2275 fi # }}} feat_yes SSL
2277 if [ "${have_xssl}" = yes ]; then
2283 if feat_yes SMTP; then
2284 echo '#define HAVE_SMTP' >> ${h}
2286 echo '/* OPT_SMTP=0 */' >> ${h}
2289 if feat_yes POP3; then
2290 echo '#define HAVE_POP3' >> ${h}
2292 echo '/* OPT_POP3=0 */' >> ${h}
2295 if feat_yes GSSAPI; then
2296 ${cat} > ${tmp2}.c << \!
2297 #include <gssapi/gssapi.h>
2299 gss_import_name(0, 0, GSS_C_NT_HOSTBASED_SERVICE, 0);
2300 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
2304 ${sed} -e '1s/gssapi\///' < ${tmp2}.c > ${tmp3}.c
2306 if command -v krb5-config >/dev/null 2>&1; then
2307 i=`command -v krb5-config
`
2308 GSS_LIBS="`CFLAGS
= ${i} --libs gssapi
`"
2309 GSS_INCS="`CFLAGS
= ${i} --cflags`"
2310 i='GSS-API via krb5-config(1)'
2314 i='GSS-API in gssapi/gssapi.h, libgssapi'
2316 if < ${tmp2}.c link_check gss \
2317 "${i}" '#define HAVE_GSSAPI' "${GSS_LIBS}" "${GSS_INCS}" ||\
2318 < ${tmp3}.c link_check gss \
2319 'GSS-API in gssapi.h, libgssapi' \
2320 '#define HAVE_GSSAPI
2321 #define GSSAPI_REG_INCLUDE' \
2323 < ${tmp2}.c link_check gss 'GSS-API in libgssapi_krb5' \
2324 '#define HAVE_GSSAPI' \
2326 < ${tmp3}.c link_check gss \
2327 'GSS-API in libgssapi, OpenBSD-style (pre 5.3)' \
2328 '#define HAVE_GSSAPI
2329 #define GSS_REG_INCLUDE' \
2330 '-lgssapi -lkrb5 -lcrypto' \
2331 '-I/usr/include/kerberosV' ||\
2332 < ${tmp2}.c link_check gss 'GSS-API in libgss' \
2333 '#define HAVE_GSSAPI' \
2335 link_check gss 'GSS-API in libgssapi_krb5, old-style' \
2336 '#define HAVE_GSSAPI
2337 #define GSSAPI_OLD_STYLE' \
2338 '-lgssapi_krb5' << \!
2339 #include <gssapi/gssapi.h>
2340 #include <gssapi/gssapi_generic.h>
2342 gss_import_name(0, 0, gss_nt_service_name, 0);
2343 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
2350 feat_bail_required GSSAPI
2353 echo '/* OPT_GSSAPI=0 */' >> ${h}
2354 fi # feat_yes GSSAPI
2356 if feat_yes NETRC; then
2357 echo '#define HAVE_NETRC' >> ${h}
2359 echo '/* OPT_NETRC=0 */' >> ${h}
2362 if feat_yes AGENT; then
2363 echo '#define HAVE_AGENT' >> ${h}
2365 echo '/* OPT_AGENT=0 */' >> ${h}
2368 if feat_yes IDNA; then
2369 if link_check idna 'GNU Libidn' '#define HAVE_IDNA HAVE_IDNA_LIBIDNA' \
2372 #include <idn-free.h>
2373 #include <stringprep.h>
2375 char *utf8, *idna_ascii, *idna_utf8;
2377 utf8 = stringprep_locale_to_utf8("does.this.work");
2378 if (idna_to_ascii_8z(utf8, &idna_ascii, IDNA_USE_STD3_ASCII_RULES)
2381 idn_free(idna_ascii);
2382 /* (Rather link check only here) */
2383 idna_utf8 = stringprep_convert(idna_ascii, "UTF-8", "de_DE");
2389 elif link_check idna 'idnkit' '#define HAVE_IDNA HAVE_IDNA_IDNKIT' \
2392 #include <idn/api.h>
2393 #include <idn/result.h>
2397 char local_name[256];
2399 r = idn_encodename(IDN_ENCODE_APP, "does.this.work", ace_name,
2401 if (r != idn_success) {
2402 fprintf(stderr, "idn_encodename failed: %s\n", idn_result_tostring(r));
2405 r = idn_decodename(IDN_DECODE_APP, ace_name, local_name, sizeof(local_name));
2406 if (r != idn_success) {
2407 fprintf(stderr, "idn_decodename failed: %s\n", idn_result_tostring(r));
2416 feat_bail_required IDNA
2419 if [ -n "${have_idna}" ]; then
2420 echo '#define HAVE_IDNA_LIBIDNA 0' >> ${h}
2421 echo '#define HAVE_IDNA_IDNKIT 1' >> ${h}
2424 echo '/* OPT_IDNA=0 */' >> ${h}
2427 if feat_yes IMAP_SEARCH; then
2428 echo '#define HAVE_IMAP_SEARCH' >> ${h}
2430 echo '/* OPT_IMAP_SEARCH=0 */' >> ${h}
2433 if feat_yes REGEX; then
2434 if link_check regex 'regular expressions' '#define HAVE_REGEX' << \!
2442 status = regcomp(&re, ".*bsd", REG_EXTENDED | REG_ICASE | REG_NOSUB);
2443 xret = regerror(status, &re, NULL, 0);
2444 status = regexec(&re, "plan9", 0,NULL, 0);
2446 return !(status == REG_NOMATCH);
2452 feat_bail_required REGEX
2455 echo '/* OPT_REGEX=0 */' >> ${h}
2458 if feat_yes MLE && [ -n "${have_c90amend1}" ]; then
2460 echo '#define HAVE_MLE' >> ${h}
2462 feat_bail_required MLE
2463 echo '/* OPT_MLE=0 */' >> ${h}
2466 # Generic have-a-line-editor switch for those who need it below
2467 if [ -n "${have_mle}" ]; then
2471 if [ -n "${have_cle}" ] && feat_yes HISTORY; then
2472 echo '#define HAVE_HISTORY' >> ${h}
2474 echo '/* OPT_HISTORY=0 */' >> ${h}
2477 if [ -n "${have_mle}" ] && feat_yes KEY_BINDINGS; then
2478 echo '#define HAVE_KEY_BINDINGS' >> ${h}
2480 echo '/* OPT_KEY_BINDINGS=0 */' >> ${h}
2483 if feat_yes TERMCAP; then
2485 link_check termcap "termcap(5) (via ${4})" \
2486 "#define HAVE_TERMCAP${3}" "${1}" << _EOT
2491 #define UNCONST(P) ((void*)(unsigned long)(void const*)(P))
2492 static int my_putc(int c){return putchar(c);}
2494 char buf[1024+512], cmdbuf[2048], *cpb, *r1;
2495 int r2 = OK, r3 = ERR;
2497 tgetent(buf, getenv("TERM"));
2499 r1 = tgetstr(UNCONST("cm"), &cpb);
2501 r2 = tgetnum(UNCONST("Co"));
2502 r3 = tgetflag(UNCONST("ut"));
2503 tputs("cr", 1, &my_putc);
2504 return (r1 == NULL || r2 == -1 || r3 == 0);
2510 link_check terminfo "terminfo(5) (via ${2})" \
2511 '#define HAVE_TERMCAP
2512 #define HAVE_TERMCAP_CURSES
2513 #define HAVE_TERMINFO' "${1}" << _EOT
2517 #define UNCONST(P) ((void*)(unsigned long)(void const*)(P))
2518 static int my_putc(int c){return putchar(c);}
2524 r0 = setupterm(NULL, 1, &er);
2525 r1 = tigetflag(UNCONST("bce"));
2526 r2 = tigetnum(UNCONST("colors"));
2527 r3 = tigetstr(UNCONST("cr"));
2528 tp = tparm(r3, NULL, NULL, 0,0,0,0,0,0,0);
2529 tputs(tp, 1, &my_putc);
2530 return (r0 == ERR || r1 == -1 || r2 == -2 || r2 == -1 ||
2531 r3 == (char*)-1 || r3 == NULL);
2536 if feat_yes TERMCAP_VIA_TERMINFO; then
2537 __terminfolib -ltinfo -ltinfo ||
2538 __terminfolib -lcurses -lcurses ||
2539 __terminfolib -lcursesw -lcursesw ||
2540 feat_bail_required TERMCAP_VIA_TERMINFO
2543 if [ -z "${have_terminfo}" ]; then
2544 __termcaplib -ltermcap '' '' '-ltermcap' ||
2545 __termcaplib -ltermcap '#include <curses.h>' '
2546 #define HAVE_TERMCAP_CURSES' \
2547 'curses.h / -ltermcap' ||
2548 __termcaplib -lcurses '#include <curses.h>' '
2549 #define HAVE_TERMCAP_CURSES' \
2550 'curses.h / -lcurses' ||
2551 __termcaplib -lcursesw '#include <curses.h>' '
2552 #define HAVE_TERMCAP_CURSES' \
2553 'curses.h / -lcursesw' ||
2554 feat_bail_required TERMCAP
2556 if [ -n "${have_termcap}" ]; then
2557 run_check tgetent_null \
2558 "tgetent(3) of termcap(5) takes NULL buffer" \
2559 "#define HAVE_TGETENT_NULL_BUF" << _EOT
2560 #include <stdio.h> /* For C89 NULL */
2562 #ifdef HAVE_TERMCAP_CURSES
2563 # include <curses.h>
2567 tgetent(NULL, getenv("TERM"));
2574 echo '/* OPT_TERMCAP=0 */' >> ${h}
2575 echo '/* OPT_TERMCAP_VIA_TERMINFO=0 */' >> ${h}
2578 if feat_yes SPAM_SPAMC; then
2579 echo '#define HAVE_SPAM_SPAMC' >> ${h}
2580 if command -v spamc >/dev/null 2>&1; then
2581 echo "#define SPAM_SPAMC_PATH \"`command -v spamc
`\"" >> ${h}
2584 echo '/* OPT_SPAM_SPAMC=0 */' >> ${h}
2587 if feat_yes SPAM_SPAMD && [ -n "${have_af_unix}" ]; then
2588 echo '#define HAVE_SPAM_SPAMD' >> ${h}
2590 feat_bail_required SPAM_SPAMD
2591 echo '/* OPT_SPAM_SPAMD=0 */' >> ${h}
2594 feat_def SPAM_FILTER
2596 if feat_yes SPAM_SPAMC || feat_yes SPAM_SPAMD || feat_yes SPAM_FILTER; then
2597 echo '#define HAVE_SPAM' >> ${h}
2599 echo '/* HAVE_SPAM */' >> ${h}
2602 if feat_yes QUOTE_FOLD &&\
2603 [ -n "${have_c90amend1}" ] && [ -n "${have_wcwidth}" ]; then
2604 echo '#define HAVE_QUOTE_FOLD' >> ${h}
2606 feat_bail_required QUOTE_FOLD
2607 echo '/* OPT_QUOTE_FOLD=0 */' >> ${h}
2610 feat_def FILTER_HTML_TAGSOUP
2619 squeeze_em ${inc} ${tmp}
2621 squeeze_em ${lib} ${tmp}
2626 printf '#ifndef n_CONFIG_H\n# define n_CONFIG_H 1\n' > ${h}
2627 ${cat} ${tmp} >> ${h}
2631 # Create the real mk.mk
2632 # Note we cannout use explicit ./ filename prefix for source and object
2633 # pathnames because of a bug in bmake(1)
2634 ${rm} -rf ${tmp0}.* ${tmp0}*
2635 printf 'OBJ_SRC = ' >> ${mk}
2636 if feat_no AMALGAMATION; then
2637 for i in `printf '%s\n' *.c |
${sort}`; do
2638 if [ "${i}" = privsep.c ]; then
2641 printf "${i} " >> ${mk}
2643 printf '\nAMALGAM_TARGET =\nAMALGAM_DEP =\n' >> ${mk}
2645 printf 'main.c\nAMALGAM_TARGET = main.o\nAMALGAM_DEP = ' >> ${mk}
2647 printf '\n/* HAVE_AMALGAMATION: include sources */\n' >> ${h}
2648 printf '#elif _CONFIG_H + 0 == 1\n' >> ${h}
2649 printf '# undef _CONFIG_H\n' >> ${h}
2650 printf '# define _CONFIG_H 2\n' >> ${h}
2651 for i in `printf '%s\n' *.c |
${sort}`; do
2652 if [ "${i}" = "${j}" ] || [ "${i}" = main.c ] || \
2653 [ "${i}" = privsep.c ]; then
2656 printf "${i} " >> ${mk}
2657 printf "# include \"${i}\"\n" >> ${h}
2660 # tcc(1) fails on 2015-11-13 unless this #else clause existed
2661 echo '#else' >> ${h}
2664 # Finally, create the string that is used by *features* and `version
'.
2665 # Take this nice opportunity and generate a visual listing of included and
2666 # non-included features for the person who runs the configuration
2667 msg '\nThe following features are included
(+) or not
(-):'
2668 set -- ${OPTIONS_DETECT} ${OPTIONS} ${OPTIONS_XTRA}
2669 printf '/* The
"feature string" */\n' >> ${h}
2670 # Because + is expanded by *folder* if first in "echo $features", put something
2671 printf '#define VAL_FEATURES_CNT '${#}'\n#define VAL_FEATURES "#' >> ${h}
2675 sdoc
=`option_doc_of ${opt}`
2676 [ -z "${sdoc}" ] && continue
2677 sopt
="`echo ${opt} | ${tr} '[A-Z]_' '[a-z]-'`"
2678 feat_yes
${opt} && sign
=+ || sign
=-
2679 printf -- "${sep}${sign}${sopt}" >> ${h}
2681 msg " %s
%s
: %s
" ${sign} ${sopt} "${sdoc}"
2683 # TODO instead of using sh+tr+awk+printf, use awk, drop option_doc_of, inc here
2685 #${awk} -v opts="${OPTIONS_DETECT} ${OPTIONS} ${OPTIONS_XTRA}" \
2686 # -v xopts="${XOPTIONS_DETECT} ${XOPTIONS} ${XOPTIONS_XTRA}" \
2688 printf '"\n#endif /* n_CONFIG_H */\n' >> ${h}
2690 echo "LIBS = `${cat} ${lib}`" >> ${mk}
2691 echo "INCS
= `${cat} ${inc}`" >> ${mk}
2693 ${cat} ./mk-mk.in >> ${mk}
2698 msg ' . System-wide resource file: %s/%s' "${VAL_SYSCONFDIR}" "${VAL_SYSCONFRC}"
2699 msg ' . bindir: %s' "${VAL_BINDIR}"
2700 if feat_yes DOTLOCK; then
2701 msg ' . libexecdir: %s' "${VAL_LIBEXECDIR}"
2703 msg ' . mandir: %s' "${VAL_MANDIR}"
2704 msg ' . M(ail)T(ransfer)A(gent): %s (argv0 %s)' "${VAL_MTA}" "${VAL_MTA_ARGV0}"
2705 msg ' . $MAIL spool directory: %s' "${VAL_MAIL}"
2708 if [ -n "${have_fnmatch}" ] && [ -n "${have_fchdir}" ]; then
2712 if [ -z "${have_fnmatch}" ]; then
2713 msg ' . The function fnmatch(3) could not be found.'
2714 msg ' Filename patterns like wildcard are not supported on your system'
2716 if [ -z "${have_fchdir}" ]; then
2717 msg ' . The function fchdir(2) could not be found.'
2718 msg ' We will use chdir(2) instead.'
2719 msg ' This is a problem only if the current working directory is changed'
2720 msg ' while this program is inside of it'