2 #@ Please see `INSTALL' and `conf.rc' instead.
7 # Predefined CONFIG= urations take precedence over anything else
8 if [ -n "${CONFIG}" ]; then
13 WANT_READLINE
=0 WANT_EDITLINE
=0 WANT_NCL
=0
23 WANT_READLINE
=0 WANT_EDITLINE
=0
32 WANT_READLINE
=0 WANT_EDITLINE
=0
39 echo >&2 "Unknown CONFIG= setting: ${CONFIG}"
40 echo >&2 'Possible values: MINIMAL, MEDIUM, NETSEND'
47 if nwantfeat SOCKETS
; then
48 WANT_IPV6
=0 WANT_SSL
=0
49 WANT_IMAP
=0 WANT_GSSAPI
=0 WANT_POP3
=0 WANT_SMTP
=0
51 if nwantfeat IMAP
&& nwantfeat POP3
&& nwantfeat SMTP
; then
52 WANT_SOCKETS
=0 WANT_IPV6
=0 WANT_SSL
=0
54 if nwantfeat IMAP
; then
57 # If we don't need MD5 except for producing boundary and message-id strings,
58 # leave it off, plain old srand(3) should be enough for that purpose.
59 if nwantfeat SOCKETS
; then
62 if wantfeat DEBUG
; then
67 # Check out compiler ($CC) and -flags ($CFLAGS)
72 # $CC is overwritten when empty or a default "cc", even without WANT_AUTOCC
74 if [ -z "${CC}" ] ||
[ "${CC}" = cc
]; then
76 if { CC
="`command -v clang`"; }; then
78 elif { CC
="`command -v gcc`"; }; then
80 elif { CC
="`command -v c89`"; }; then
81 [ "${i}" = UnixWare
] && _CFLAGS
=-v optim
=-O dbgoptim
=
82 elif { CC
="`command -v c99`"; }; then
86 echo >&2 ' I cannot find a compiler!'
87 echo >&2 ' Neither of clang(1), gcc(1), c89(1) and c99(1).'
88 echo >&2 ' Please set the CC environment variable, maybe CFLAGS also.'
94 ccver
=`${CC} --version 2>/dev/null`
96 if { i
=$ccver; echo "${i}"; } |
${grep} -q -i -e gcc
-e clang
; then
97 #if echo "${i}" | ${grep} -q -i -e gcc -e 'clang version 1'; then
101 _CFLAGS
="${_CFLAGS} -Wall -Wextra -pedantic"
102 _CFLAGS
="${_CFLAGS} -fno-unwind-tables -fno-asynchronous-unwind-tables"
103 _CFLAGS
="${_CFLAGS} -fstrict-aliasing"
104 _CFLAGS
="${_CFLAGS} -Wbad-function-cast -Wcast-align -Wcast-qual"
105 _CFLAGS
="${_CFLAGS} -Winit-self -Wshadow -Wunused -Wwrite-strings"
106 if { i
=$ccver; echo "${i}"; } |
${grep} -q -e 'clang version 1'; then
109 _CFLAGS
="${_CFLAGS} -fstrict-overflow -Wstrict-overflow=5"
110 if wantfeat AMALGAMATION
&& nwantfeat DEBUG
; then
111 _CFLAGS
="${_CFLAGS} -Wno-unused-function"
113 if { i
=$ccver; echo "${i}"; } |
${grep} -q -i -e clang
; then
114 _CFLAGS
="${_CFLAGS} -Wno-unused-result" # TODO handle the right way
117 _CFLAGS
="${_CFLAGS} -Wno-long-long" # ISO C89 has no 'long long'...
118 # elif { i=$ccver; echo "${i}"; } | ${grep} -q -i -e clang; then
120 # optim=-O3 dbgoptim=-O
121 # _CFLAGS='-std=c89 -g -Weverything -Wno-long-long'
122 elif [ -z "${optim}" ]; then
123 optim
=-O1 dbgoptim
=-O
126 if nwantfeat DEBUG
; then
127 _CFLAGS
="${optim} -DNDEBUG ${_CFLAGS}"
129 _CFLAGS
="${dbgoptim} -g ${_CFLAGS}";
130 if [ "${stackprot}" = yes ]; then
131 _CFLAGS
="${_CFLAGS} -fstack-protector-all "
132 _CFLAGS
="${_CFLAGS} -Wstack-protector -D_FORTIFY_SOURCE=2"
135 _CFLAGS
="${_CFLAGS} ${ADDCFLAGS}"
136 _LDFLAGS
="${_LDFLAGS} ${ADDLDFLAGS}" # XXX -Wl,--sort-common,[-O1]
137 export _CFLAGS _LDFLAGS
139 # $CFLAGS and $LDFLAGS are only overwritten if explicitly wanted
140 if wantfeat AUTOCC
; then
143 export CFLAGS LDFLAGS
150 ## - Heirloom sh(1) (and same origin) have problems with ': >' redirection,
151 ## so use "printf '' >" instead
152 ## - Heirloom sh(1) and maybe more execute loops with redirection in a subshell
153 ## (but don't export eval's from within), therefore we need to (re)include
154 ## variable assignments at toplevel instead (via reading temporary files)
156 ## First of all, create new configuration and check wether it changed ##
163 newlst
=.
/config.lst-new
164 newmk
=.
/config.mk-new
169 # We need some standard utilities
172 n
=$1 i
=$2 opt
=${3:-0}
173 if type "${i}" >/dev
/null
2>&1; then
177 if [ ${opt} -eq 0 ]; then
178 echo >&2 "ERROR: no trace of the utility \`${n}'"
184 # Check those tools right now that we need before including ${conf}
185 check_tool
rm "${rm:-`command -v rm`}"
186 check_tool
sed "${sed:-`command -v sed`}"
188 # Only incorporate what wasn't overwritten from command line / CONFIG
189 trap "${rm} -f ${tmp}; exit" 1 2 15
190 trap "${rm} -f ${tmp}" 0
193 < ${conf} ${sed} -e '/^[ \t]*#/d' -e '/^$/d' -e 's/[ \t]*$//' |
195 i
=`echo ${line} | ${sed} -e 's/=.*$//'`
196 eval j
=\$
${i} jx=\${${i}+x}
197 if [ -n "${j}" ] ||
[ "${jx}" = x
]; then
204 check_tool
awk "${awk:-`command -v awk`}"
205 check_tool
cat "${cat:-`command -v cat`}"
206 check_tool
chmod "${chmod:-`command -v chmod`}"
207 check_tool
cp "${cp:-`command -v cp`}"
208 check_tool
cmp "${cmp:-`command -v cmp`}"
209 check_tool
grep "${grep:-`command -v grep`}"
210 check_tool mkdir
"${mkdir:-`command -v mkdir`}"
211 check_tool
mv "${mv:-`command -v mv`}"
212 # rm(1), sed(1) above
213 check_tool
tee "${tee:-`command -v tee`}"
215 check_tool
make "${MAKE:-`command -v make`}"
216 check_tool strip
"${STRIP:-`command -v strip`}" 1
230 # (No function since some shells loose non-exported variables in traps)
231 trap "${rm} -f ${tmp} ${newlst} ${newmk} ${newh}; exit" 1 2 15
232 trap "${rm} -f ${tmp} ${newlst} ${newmk} ${newh}" 0
233 ${rm} -f ${newlst} ${newmk} ${newh}
235 # (Could: use FD redirection, add eval(1) and don't re-'. ./${newlst}')
237 i
=`echo ${line} | ${sed} -e 's/=.*$//'`
239 if [ -z "${j}" ] ||
[ "${j}" = 0 ]; then
240 printf "/*#define ${i}*/\n" >> ${newh}
241 elif [ "${j}" = 1 ]; then
242 printf "#define ${i}\n" >> ${newh}
244 printf "#define ${i} \"${j}\"\n" >> ${newh}
246 printf "${i} = ${j}\n" >> ${newmk}
247 printf "${i}=\"${j}\"\n"
248 done < ${tmp} > ${newlst}
251 printf "#define UAGENT \"${SID}${NAIL}\"\n" >> ${newh}
252 printf "UAGENT
= ${SID}${NAIL}\n" >> ${newmk}
256 printf "CC = ${CC}\n" >> ${newmk}
257 printf "_CFLAGS = ${_CFLAGS}\nCFLAGS = ${CFLAGS}\n" >> ${newmk}
258 printf "_LDFLAGS
= ${_LDFLAGS}\nLDFLAGS = ${LDFLAGS}\n" >> ${newmk}
259 printf "AWK = ${awk}\nCMP = ${cmp}\nCHMOD = ${chmod}\nCP = ${cp}\n" >> ${newmk}
260 printf "GREP
= ${grep}\nMKDIR = ${mkdir}\nRM = ${rm}\nSED = ${sed}\n" \
262 printf "STRIP
= ${strip}\nHAVE_STRIP = ${HAVE_STRIP}\n" >> ${newmk}
263 # (We include the cc(1)/ld(1) environment only for update detection..)
264 printf "CC=\"${CC}\"\n" >> ${newlst}
265 printf "_CFLAGS=\"${_CFLAGS}\"\nCFLAGS=\"${CFLAGS}\"\n" >> ${newlst}
266 printf "_LDFLAGS
=\"${_LDFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n" >> ${newlst}
267 printf "AWK=${awk}\nCMP=${cmp}\nCHMOD=${chmod}\nCP=${cp}\n" >> ${newlst}
268 printf "GREP
=${grep}\nMKDIR=${mkdir}\nRM=${rm}\nSED=${sed}\n" >> ${newlst}
269 printf "STRIP=${strip}\nHAVE_STRIP=${HAVE_STRIP}\n" >> ${newlst}
271 if [ -f ${lst} ] && ${cmp} ${newlst} ${lst} >/dev/null 2>&1; then
274 [ -f ${lst} ] && echo 'configuration updated..' || echo 'shiny configuration..'
276 ${mv} -f ${newlst} ${lst}
277 ${mv} -f ${newh} ${h}
278 ${mv} -f ${newmk} ${mk}
280 ## Compile and link checking ##
290 # (No function since some shells loose non-exported variables in traps)
291 trap "${rm} -f ${lst} ${h} ${mk} ${lib} ${inc} ${src} ${makefile}; exit" 1 2 15
292 trap "${rm} -rf ${tmp0}.* ${tmp0}* ${makefile}" 0
294 exec 5>&2 > ${log} 2>&1
297 # ${src} is only created if WANT_AMALGAMATION
299 ${cat} > ${makefile} << \!
300 .SUFFIXES: .o .c .x .y
304 $(CC) $(XINCS) -E $< >$@
306 $(CC) $(XINCS) -o $@ $< $(XLIBS)
314 printf "*** ${fmt}\\n
" "${@}"
315 printf "${fmt}" "${@}" >&5
319 variable=$1 topic=$2 define=$3
322 msg "checking
${topic} ...
"
323 echo "/* checked
${topic} */" >> ${h}
324 ${rm} -f ${tmp} ${tmp}.o
325 echo '*** test program is'
327 #echo '*** the preprocessor generates'
328 #${make} -f ${makefile} ${tmp}.x
330 echo '*** results are'
334 variable=$1 topic=$2 define=$3
336 _check_preface "${variable}" "${topic}" "${define}"
338 if ${make} -f ${makefile} XINCS="${INCS}" ./${tmp}.o &&
339 [ -f ./${tmp}.o ]; then
341 echo "${define}" >> ${h}
342 eval have_${variable}=yes
345 echo "/* ${define} */" >> ${h}
347 eval unset have_${variable}
353 run=$1 variable=$2 topic=$3 define=$4 libs=$5 incs=$6
355 _check_preface "${variable}" "${topic}" "${define}"
357 if ${make} -f ${makefile} XINCS="${INCS} ${incs}" \
358 XLIBS
="${LIBS} ${libs}" ./${tmp} &&
360 { [ ${run} -eq 0 ] || ./${tmp}; }; then
361 echo "*** adding INCS
<${incs}> LIBS
<${libs}>"
363 echo "${define}" >> ${h}
364 LIBS="${LIBS} ${libs}"
365 echo "${libs}" >> ${lib}
366 INCS="${INCS} ${incs}"
367 echo "${incs}" >> ${inc}
368 eval have_${variable}=yes
372 echo "/* ${define} */" >> ${h}
373 eval unset have_${variable}
379 _link_mayrun 0 "${1}" "${2}" "${3}" "${4}" "${5}"
383 _link_mayrun 1 "${1}" "${2}" "${3}" "${4}" "${5}"
386 # Build a basic set of INCS and LIBS according to user environment.
387 # On pkgsrc(7) systems automatically add /usr/pkg/*
388 if [ -n "${C_INCLUDE_PATH}" ]; then
391 set -- ${C_INCLUDE_PATH}
393 # for i; do -- new in POSIX Issue 7 + TC1
396 [ "${i}" = '/usr/pkg/include' ] && continue
397 INCS="${INCS} -I${i}"
400 [ -d /usr/pkg/include ] && INCS="${INCS} -I/usr
/pkg
/include
"
401 echo "${INCS}" >> ${inc}
403 if [ -n "${LD_LIBRARY_PATH}" ]; then
406 set -- ${LD_LIBRARY_PATH}
408 # for i; do -- new in POSIX Issue 7 + TC1
411 [ "${i}" = '/usr/pkg/lib' ] && continue
412 LIBS="${LIBS} -L${i}"
415 [ -d /usr/pkg/lib ] && LIBS="${LIBS} -L/usr
/pkg
/lib
"
416 echo "${LIBS}" >> ${lib}
420 # Better set _GNU_SOURCE (if we are on Linux only?); 'surprised it did without
421 echo '#define _GNU_SOURCE' >> ${h}
423 link_check hello 'if a hello world program can be built' << \! || {\
424 echo >&5 'This oooops is most certainly not related to me.';\
425 echo >&5 "Read the
file ${log} and check your compiler environment.
";\
426 ${rm} -f ${lst} ${h} ${mk};\
431 int main(int argc, char *argv[])
440 link_check termios 'for termios.h and tc*() family' << \! || {\
441 echo >&5 'We require termios.h and the tc*() family of functions.';\
442 echo >&5 "That much Unix we indulge ourselfs.
";\
443 ${rm} -f ${lst} ${h} ${mk};\
451 tcsetattr(0, TCSADRAIN | TCSAFLUSH, &tios);
456 link_check setenv 'for setenv()/unsetenv()' '#define HAVE_SETENV' << \!
460 setenv("s-nail
", "to be made nifty
!", 1);
466 link_check snprintf 'for snprintf()' '#define HAVE_SNPRINTF' << \!
471 snprintf(b, sizeof b, "%s
", "string
");
476 link_check putc_unlocked 'for putc_unlocked()' '#define HAVE_PUTC_UNLOCKED' <<\!
480 putc_unlocked('@', stdout);
485 link_check fchdir 'for fchdir()' '#define HAVE_FCHDIR' << \!
494 link_check mmap 'for mmap()' '#define HAVE_MMAP' << \!
495 #include <sys/types.h>
496 #include <sys/mman.h>
499 mmap(0, 0, 0, 0, 0, 0);
504 link_check mremap 'for mremap()' '#define HAVE_MREMAP' << \!
505 #include <sys/types.h>
506 #include <sys/mman.h>
509 mremap(0, 0, 0, MREMAP_MAYMOVE);
514 link_check setlocale 'for setlocale()' '#define HAVE_SETLOCALE' << \!
518 setlocale(LC_ALL, "");
523 if [ "${have_setlocale}" = yes ]; then
524 link_check c90amend1 'for ISO/IEC 9899:1990/Amendment 1:1995' \
525 '#define HAVE_C90AMEND1' << \!
532 char mbb[MB_LEN_MAX + 1];
537 mbrtowc(&wc, "x
", 1, NULL);
538 (void)wctomb(mbb, wc);
539 return (mblen("\
0", 1) == 0);
543 if [ "${have_c90amend1}" = yes ]; then
544 link_check wcwidth 'for wcwidth()' '#define HAVE_WCWIDTH' << \!
554 link_check nl_langinfo 'for nl_langinfo()' '#define HAVE_NL_LANGINFO' << \!
555 #include <langinfo.h>
560 return (nl_langinfo(CODESET) == NULL);
565 link_check mkstemp 'for mkstemp()' '#define HAVE_MKSTEMP' << \!
574 # Note: run_check, thus we also get only the desired implementation...
575 run_check realpath 'for realpath()' '#define HAVE_REALPATH' << \!
579 char *x = realpath(".
", NULL), *y = realpath("/", NULL);
580 return (x != NULL && y != NULL) ? 0 : 1;
584 link_check wordexp 'for wordexp()' '#define HAVE_WORDEXP' << \!
588 wordexp((char *)0, (wordexp_t *)0, 0);
595 if wantfeat DEBUG; then
596 echo '#define HAVE_DEBUG' >> ${h}
599 if wantfeat AMALGAMATION; then
600 echo '#define HAVE_AMALGAMATION' >> ${h}
603 if nwantfeat NOALLOCA; then
604 # Due to NetBSD PR lib/47120 it seems best not to use non-cc-builtin
605 # versions of alloca(3) since modern compilers just can't be trusted
606 # not to overoptimize and silently break some code
607 link_check alloca 'for __builtin_alloca()' \
608 '#define HAVE_ALLOCA __builtin_alloca' << \!
611 void *vp = __builtin_alloca(1);
617 if nwantfeat NOGETOPT; then
618 link_check getopt 'for getopt()' '#define HAVE_GETOPT' << \!
620 int main(int argc, char **argv)
622 #if defined __GLIBC__ || defined __linux__
623 Argument and option reordering is not a desired feature.
625 getopt(argc, argv, "oPt
");
627 return (((long)optarg + optind) & 0x7F);
634 if wantfeat ICONV; then
635 ${cat} > ${tmp2}.c << \!
641 id = iconv_open("foo
", "bar
");
645 < ${tmp2}.c link_check iconv 'for iconv functionality' \
646 '#define HAVE_ICONV' ||
647 < ${tmp2}.c link_check iconv \
648 'for iconv functionality in libiconv' \
649 '#define HAVE_ICONV' '-liconv'
651 echo '/* WANT_ICONV=0 */' >> ${h}
654 if wantfeat SOCKETS; then
655 compile_check arpa_inet_h 'for <arpa/inet.h>' \
656 '#define HAVE_ARPA_INET_H' << \!
658 #include <sys/types.h>
659 #include <sys/socket.h>
661 #include <netinet/in.h>
662 #include <arpa/inet.h>
665 ${cat} > ${tmp2}.c << \!
667 #include <sys/types.h>
668 #include <sys/socket.h>
670 #include <netinet/in.h>
671 #ifdef HAVE_ARPA_INET_H
672 #include <arpa/inet.h>
678 socket(AF_INET, SOCK_STREAM, 0);
680 gethostbyname("foo
");
685 < ${tmp2}.c link_check sockets 'for sockets in libc' \
686 '#define HAVE_SOCKETS' ||
687 < ${tmp2}.c link_check sockets 'for sockets in libnsl' \
688 '#define HAVE_SOCKETS' '-lnsl' ||
689 < ${tmp2}.c link_check sockets \
690 'for sockets in libsocket and libnsl' \
691 '#define HAVE_SOCKETS' '-lsocket -lnsl' ||
694 # XXX Shouldn't it be a hard error if there is no socket support, then?
697 echo '/* WANT_SOCKETS=0 */' >> ${h}
698 fi # wantfeat SOCKETS
701 link_check setsockopt 'for setsockopt()' '#define HAVE_SETSOCKOPT' << \!
702 #include <sys/socket.h>
707 setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, NULL, 0);
712 wantfeat SOCKETS && [ -n "${have_setsockopt}" ] &&
713 link_check so_sndtimeo 'for SO_SNDTIMEO' '#define HAVE_SO_SNDTIMEO' << \!
714 #include <sys/socket.h>
722 setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof tv);
723 setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof tv);
728 wantfeat SOCKETS && [ -n "${have_setsockopt}" ] &&
729 link_check so_linger 'for SO_LINGER' '#define HAVE_SO_LINGER' << \!
730 #include <sys/socket.h>
738 setsockopt(sockfd, SOL_SOCKET, SO_LINGER, &li, sizeof li);
743 if wantfeat IPV6; then
744 link_check ipv6 'for IPv6 functionality' '#define HAVE_IPV6' << \!
746 #include <sys/types.h>
747 #include <sys/socket.h>
749 #include <netinet/in.h>
750 #ifdef HAVE_ARPA_INET_H
751 #include <arpa/inet.h>
756 struct addrinfo a, *ap;
757 getaddrinfo("foo
", "0", &a, &ap);
762 echo '/* WANT_IPV6=0 */' >> ${h}
765 if wantfeat IMAP; then
766 echo '#define HAVE_IMAP' >> ${h}
768 echo '/* WANT_IMAP=0 */' >> ${h}
771 if wantfeat POP3; then
772 echo '#define HAVE_POP3' >> ${h}
774 echo '/* WANT_POP3=0 */' >> ${h}
777 if wantfeat SMTP; then
778 echo '#define HAVE_SMTP' >> ${h}
780 echo '/* WANT_SMTP=0 */' >> ${h}
783 if wantfeat SSL; then
784 link_check openssl 'for sufficiently recent OpenSSL' \
786 #define HAVE_OPENSSL' '-lssl -lcrypto' << \!
787 #include <openssl/ssl.h>
788 #include <openssl/err.h>
789 #include <openssl/x509v3.h>
790 #include <openssl/x509.h>
791 #include <openssl/rand.h>
793 #if defined OPENSSL_NO_SSL2 && defined OPENSSL_NO_SSL3 &&\
794 defined OPENSSL_NO_TLS1
795 # error We need one of (SSLv2 and) SSLv3 and TLS1.
800 SSLv23_client_method();
801 #ifndef OPENSSL_NO_SSL3
802 SSLv3_client_method();
804 #ifndef OPENSSL_NO_TLS1
805 TLSv1_client_method();
806 # ifdef TLS1_1_VERSION
807 TLSv1_1_client_method();
809 # ifdef TLS1_2_VERSION
810 TLSv1_2_client_method();
813 PEM_read_PrivateKey(0, 0, 0, 0);
818 if [ "${have_openssl}" = 'yes' ]; then
819 compile_check stack_of 'for OpenSSL STACK_OF()' \
820 '#define HAVE_STACK_OF' << \!
821 #include <openssl/ssl.h>
822 #include <openssl/err.h>
823 #include <openssl/x509v3.h>
824 #include <openssl/x509.h>
825 #include <openssl/rand.h>
829 STACK_OF(GENERAL_NAME) *gens = NULL;
830 printf("%p
", gens); /* to make it used */
835 run_check openssl_md5 'for MD5 digest in OpenSSL' \
836 '#define HAVE_OPENSSL_MD5' << \!
838 #include <openssl/md5.h>
842 char const dat[] = "abrakadabrafidibus
";
843 char dig[16], hex[16 * 2];
847 memset(dig, 0, sizeof(dig));
848 memset(hex, 0, sizeof(hex));
850 MD5_Update(&ctx, dat, sizeof(dat) - 1);
851 MD5_Final(dig, &ctx);
853 #define hexchar(n) ((n)>9 ? (n)-10+'a' : (n)+'0')
854 for (i = 0; i < sizeof(hex) / 2; i++) {
856 hex[j] = hexchar((dig[i] & 0xf0) >> 4);
857 hex[++j] = hexchar(dig[i] & 0x0f);
859 return !!memcmp("6d7d0a3d949da2e96f2aa010f65d8326
", hex, sizeof(hex));
865 echo '/* WANT_SSL=0 */' >> ${h}
868 if wantfeat GSSAPI; then
869 ${cat} > ${tmp2}.c << \!
870 #include <gssapi/gssapi.h>
874 gss_import_name(0, 0, GSS_C_NT_HOSTBASED_SERVICE, 0);
875 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
879 ${sed} -e '1s/gssapi\///' < ${tmp2}.c > ${tmp3}.c
881 if command -v krb5-config >/dev/null 2>&1; then
882 i=`command -v krb5-config`
883 GSSAPI_LIBS="`CFLAGS= ${i} --libs gssapi`"
884 GSSAPI_INCS="`CFLAGS= ${i} --cflags`"
885 i='for GSSAPI via krb5-config(1)'
887 GSSAPI_LIBS='-lgssapi'
889 i='for GSSAPI in gssapi/gssapi.h, libgssapi'
891 < ${tmp2}.c link_check gssapi \
892 "${i}" '#define HAVE_GSSAPI' \
893 "${GSSAPI_LIBS}" "${GSSAPI_INCS}" ||\
894 < ${tmp3}.c link_check gssapi \
895 'for GSSAPI in gssapi.h, libgssapi' \
897 #define GSSAPI_REG_INCLUDE' \
899 < ${tmp2}.c link_check gssapi 'for GSSAPI in libgssapi_krb5' \
900 '#define HAVE_GSSAPI' \
902 < ${tmp3}.c link_check gssapi \
903 'for GSSAPI in libgssapi, OpenBSD-style (pre 5.3)' \
905 #define GSSAPI_REG_INCLUDE' \
906 '-lgssapi -lkrb5 -lcrypto' \
907 '-I/usr/include/kerberosV' ||\
908 < ${tmp2}.c link_check gssapi 'for GSSAPI in libgss' \
909 '#define HAVE_GSSAPI' \
911 link_check gssapi 'for GSSAPI in libgssapi_krb5, old-style' \
913 #define GSSAPI_OLD_STYLE' \
914 '-lgssapi_krb5' << \!
915 #include <gssapi/gssapi.h>
916 #include <gssapi/gssapi_generic.h>
920 gss_import_name(0, 0, gss_nt_service_name, 0);
921 gss_init_sec_context(0,0,0,0,0,0,0,0,0,0,0,0,0);
926 echo '/* WANT_GSSAPI=0 */' >> ${h}
929 if wantfeat IDNA; then
930 link_check idna 'for GNU Libidn' '#define HAVE_IDNA' '-lidn' << \!
932 #include <stringprep.h>
935 char *utf8, *idna_ascii, *idna_utf8;
936 utf8 = stringprep_locale_to_utf8("does.this.work
");
937 if (idna_to_ascii_8z(utf8, &idna_ascii, IDNA_USE_STD3_ASCII_RULES)
940 /* (Rather link check only here) */
941 idna_utf8 = stringprep_convert(idna_ascii, "UTF-8
", "de_DE
");
946 echo '/* WANT_IDNA=0 */' >> ${h}
949 if wantfeat REGEX; then
950 link_check regex 'for regular expressions' '#define HAVE_REGEX' << \!
957 if (regcomp(&re, ".
*bsd
", REG_EXTENDED | REG_ICASE | REG_NOSUB) != 0)
959 status = regexec(&re, "plan9
", 0,NULL, 0);
961 return !(status == REG_NOMATCH);
965 echo '/* WANT_REGEX=0 */' >> ${h}
968 if wantfeat READLINE; then
970 link_check readline "for readline
(3) (${1})" \
971 '#define HAVE_READLINE' "${1}" << \!
973 #include <readline/history.h>
974 #include <readline/readline.h>
981 rl = readline("Enter a line
:");
985 rl_extend_line_buffer(10);
986 rl_point = rl_end = 10;
987 rl_pre_input_hook = (rl_hook_func_t*)NULL;
988 rl_forced_update_display();
991 rl_free_line_state();
992 rl_cleanup_after_signal();
993 rl_reset_after_signal();
999 __edrdlib -lreadline ||
1000 __edrdlib '-lreadline -ltermcap'
1001 [ -n "${have_readline}" ] && WANT_TABEXPAND=1
1004 if wantfeat EDITLINE && [ -z "${have_readline}" ]; then
1006 link_check editline "for editline
(3) (${1})" \
1007 '#define HAVE_EDITLINE' "${1}" << \!
1008 #include <histedit.h>
1009 static char * getprompt(void) { return (char*)"ok
"; }
1012 EditLine *el_el = el_init("TEST
", stdin, stdout, stderr);
1014 History *el_hcom = history_init();
1015 history(el_hcom, &he, H_SETSIZE, 242);
1016 el_set(el_el, EL_SIGNAL, 0);
1017 el_set(el_el, EL_TERMINAL, NULL);
1018 el_set(el_el, EL_HIST, &history, el_hcom);
1019 el_set(el_el, EL_EDITOR, "emacs
");
1020 el_set(el_el, EL_PROMPT, &getprompt);
1021 el_source(el_el, NULL);
1022 history(el_hcom, &he, H_GETSIZE);
1023 history(el_hcom, &he, H_CLEAR);
1025 /* TODO add loader and addfn checks */
1026 history_end(el_hcom);
1033 __edlib '-ledit -ltermcap'
1034 [ -n "${have_editline}" ] && WANT_TABEXPAND=0
1037 if wantfeat NCL && [ -z "${have_editline}" ] && [ -z "${have_readline}" ] &&\
1038 [ -n "${have_c90amend1}" ]; then
1040 echo '#define HAVE_NCL' >> ${h}
1042 echo '/* WANT_{READLINE,EDITLINE,NCL}=0 */' >> ${h}
1045 if [ -n "${have_ncl}" ] || [ -n "${have_editline}" ] ||\
1046 [ -n "${have_readline}" ]; then
1050 if [ -n "${have_cle}" ] && wantfeat TABEXPAND; then
1051 echo '#define HAVE_TABEXPAND' >> ${h}
1053 echo '/* WANT_TABEXPAND=0 */' >> ${h}
1056 if [ -n "${have_cle}" ] && wantfeat HISTORY; then
1057 echo '#define HAVE_HISTORY' >> ${h}
1059 echo '/* WANT_HISTORY=0 */' >> ${h}
1062 if wantfeat SPAM; then
1063 echo '#define HAVE_SPAM' >> ${h}
1064 if command -v spamc >/dev/null 2>&1; then
1065 echo "#define SPAMC_PATH \"`command -v spamc`\"" >> ${h}
1068 echo '/* WANT_SPAM=0 */' >> ${h}
1071 if wantfeat DOCSTRINGS
; then
1072 echo '#define HAVE_DOCSTRINGS' >> ${h}
1074 echo '/* WANT_DOCSTRINGS=0 */' >> ${h}
1077 if wantfeat QUOTE_FOLD
&&\
1078 [ -n "${have_c90amend1}" ] && [ -n "${have_wcwidth}" ]; then
1079 echo '#define HAVE_QUOTE_FOLD' >> ${h}
1081 echo '/* WANT_QUOTE_FOLD=0 */' >> ${h}
1084 if wantfeat COLOUR
; then
1085 echo '#define HAVE_COLOUR' >> ${h}
1087 echo '/* WANT_COLOUR=0 */' >> ${h}
1090 if wantfeat MD5
; then
1091 echo '#define HAVE_MD5' >> ${h}
1093 echo '/* WANT_MD5=0 */' >> ${h}
1098 # Since we cat(1) the content of those to cc/"ld", convert them to single line
1100 < "${1}" > "${2}" ${awk} \
1101 'BEGIN {ORS = " "} /^[^#]/ {print} {next} END {ORS = ""; print "\n"}'
1104 squeeze_em ${inc} ${tmp}
1106 squeeze_em ${lib} ${tmp}
1111 printf '#ifndef _CONFIG_H\n# define _CONFIG_H\n' > ${h}
1112 ${cat} ${tmp} >> ${h}
1114 printf '\n/* The "feature string
", for "simplicity
" and lex.c */\n' >> ${h}
1115 printf '#ifdef _MAIN_SOURCE\n' >> ${h}
1116 printf '# ifdef HAVE_AMALGAMATION\nstatic\n# endif\n' >> ${h}
1117 printf 'char const features[] = "MIME
"\n' >> ${h}
1118 printf '# ifdef HAVE_DOCSTRINGS\n ",DOCSTRINGS
"\n# endif\n' >> ${h}
1119 printf '# ifdef HAVE_ICONV\n ",ICONV
"\n# endif\n' >> ${h}
1120 printf '# ifdef HAVE_SETLOCALE\n ",LOCALES
"\n# endif\n' >> ${h}
1121 printf '# ifdef HAVE_C90AMEND1\n ",MULTIBYTE CHARSETS
"\n# endif\n' >> ${h}
1122 printf '# ifdef HAVE_NL_LANGINFO\n ",TERMINAL CHARSET
"\n# endif\n' >> ${h}
1123 printf '# ifdef HAVE_SOCKETS\n ",NETWORK
"\n# endif\n' >> ${h}
1124 printf '# ifdef HAVE_IPV6\n ",IPv6
"\n# endif\n' >> ${h}
1125 printf '# ifdef HAVE_SSL\n ",S
/MIME
,SSL
/TSL
"\n# endif\n' >> ${h}
1126 printf '# ifdef HAVE_IMAP\n ",IMAP
"\n# endif\n' >> ${h}
1127 printf '# ifdef HAVE_GSSAPI\n ",GSSAPI
"\n# endif\n' >> ${h}
1128 printf '# ifdef HAVE_POP3\n ",POP3
"\n# endif\n' >> ${h}
1129 printf '# ifdef HAVE_SMTP\n ",SMTP
"\n# endif\n' >> ${h}
1130 printf '# ifdef HAVE_SPAM\n ",SPAM
"\n# endif\n' >> ${h}
1131 printf '# ifdef HAVE_IDNA\n ",IDNA
"\n# endif\n' >> ${h}
1132 printf '# ifdef HAVE_REGEX\n ",REGEX
"\n# endif\n' >> ${h}
1133 printf '# ifdef HAVE_READLINE\n ",READLINE
"\n# endif\n' >> ${h}
1134 printf '# ifdef HAVE_EDITLINE\n ",EDITLINE
"\n# endif\n' >> ${h}
1135 printf '# ifdef HAVE_NCL\n ",NCL
"\n# endif\n' >> ${h}
1136 printf '# ifdef HAVE_TABEXPAND\n ",TABEXPAND
"\n# endif\n' >> ${h}
1137 printf '# ifdef HAVE_HISTORY\n ",HISTORY MANAGEMENT
"\n# endif\n' >> ${h}
1138 printf '# ifdef HAVE_QUOTE_FOLD\n ",QUOTE-FOLD
"\n# endif\n' >> ${h}
1139 printf '# ifdef HAVE_COLOUR\n ",COLOUR
"\n# endif\n' >> ${h}
1140 printf '# ifdef HAVE_DEBUG\n ",DEBUG
"\n# endif\n' >> ${h}
1141 printf ';\n#endif /* _MAIN_SOURCE */\n' >> ${h}
1143 printf '#endif /* _CONFIG_H */\n' >> ${h}
1146 # Create the real mk.mk
1147 ${rm} -rf ${tmp0}.* ${tmp0}*
1148 printf 'OBJ_SRC = ' >> ${mk}
1149 if nwantfeat AMALGAMATION; then
1151 echo 'OBJ_DEP =' >> ${mk}
1153 j=`echo "${src}" | sed 's/^.\///'`
1154 echo "${j}" >> ${mk}
1155 printf 'OBJ_DEP = main.c ' >> ${mk}
1156 printf '#define _MAIN_SOURCE\n' >> ${src}
1157 printf '#include "nail.h
"\n#include "main.c
"\n' >> ${src}
1159 if [ "${i}" = "${j}" ] || [ "${i}" = main.c ]; then
1162 printf "${i} " >> ${mk}
1163 printf "#include \"${i}\"\n" >> ${src}
1168 echo "LIBS = `${cat} ${lib}`" >> ${mk}
1169 echo "INCLUDES
= `${cat} ${inc}`" >> ${mk}
1171 ${cat} ./mk-mk.in >> ${mk}
1175 ${cat} > ${tmp2}.c << \!
1177 #ifdef HAVE_NL_LANGINFO
1178 # include <langinfo.h>
1181 :The following optional features are enabled:
1183 : + Character set conversion using iconv()
1185 #ifdef HAVE_SETLOCALE
1186 : + Locale support: Printable characters depend on the environment
1187 # ifdef HAVE_C90AMEND1
1188 : + Multibyte character support
1190 # ifdef HAVE_NL_LANGINFO
1191 : + Automatic detection of terminal character set
1198 : + Support for Internet Protocol v6 (IPv6)
1201 # ifdef HAVE_OPENSSL
1202 : + S/MIME and SSL/TLS using OpenSSL
1209 : + IMAP GSSAPI authentication
1218 : + Interaction with spam filters
1221 : + IDNA (internationalized domain names for applications) support
1224 : + Regular expression searches
1226 #if defined HAVE_READLINE || defined HAVE_EDITLINE || defined HAVE_NCL
1227 : + Command line editing
1228 # ifdef HAVE_TABEXPAND
1229 : + + Tabulator expansion
1231 # ifdef HAVE_HISTORY
1232 : + + History management
1235 #ifdef HAVE_QUOTE_FOLD
1236 : + Extended *quote-fold*ing
1239 : + Coloured message display (simple)
1242 :The following optional features are disabled:
1244 : - Character set conversion using iconv()
1246 #ifndef HAVE_SETLOCALE
1247 : - Locale support: Only ASCII characters are recognized
1249 # ifndef HAVE_C90AMEND1
1250 : - Multibyte character support
1252 # ifndef HAVE_NL_LANGINFO
1253 : - Automatic detection of terminal character set
1255 #ifndef HAVE_SOCKETS
1259 : - Support for Internet Protocol v6 (IPv6)
1261 #if !defined HAVE_SSL
1262 : - SSL/TLS (network transport authentication and encryption)
1268 : - IMAP GSSAPI authentication
1277 : - Interaction with spam filters
1280 : - IDNA (internationalized domain names for applications) support
1283 : - Regular expression searches
1285 #if !defined HAVE_READLINE && !defined HAVE_EDITLINE && !defined HAVE_NCL
1286 : - Command line editing and history
1288 #ifndef HAVE_QUOTE_FOLD
1289 : - Extended *quote-fold*ing
1292 : - Coloured message display (simple)
1296 #ifndef HAVE_SNPRINTF
1297 : . The function snprintf() could not be found. mailx will be compiled to use
1298 : sprintf() instead. This might overflow buffers if input values are larger
1299 : than expected. Use the resulting binary with care or update your system
1300 : environment and start the configuration process again.
1303 : . The function fchdir() could not be found. mailx will be compiled to use
1304 : chdir() instead. This is not a problem unless the current working
1305 : directory of mailx is moved while the IMAP cache is used.
1308 : . Using a minimal builtin POSIX-like getopt()
1311 : . Debug enabled binary: not meant to be used by end-users: THANKS!
1316 ${make} -f ${makefile} ${tmp2}.x
1317 < ${tmp2}.x >&5 ${sed} -e '/^[^:]/d; /^$/d; s/^://'
1319 # vim:set fenc=utf-8:s-it-mode