aboutsummaryrefslogtreecommitdiff
path: root/contrib/bmake/configure
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bmake/configure')
-rwxr-xr-xcontrib/bmake/configure61
1 files changed, 40 insertions, 21 deletions
diff --git a/contrib/bmake/configure b/contrib/bmake/configure
index 44f016b249e1..9d6130f66c84 100755
--- a/contrib/bmake/configure
+++ b/contrib/bmake/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.71 for bmake 20220909.
+# Generated by GNU Autoconf 2.71 for bmake 20230723.
#
# Report bugs to <sjg@NetBSD.org>.
#
@@ -610,8 +610,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='bmake'
PACKAGE_TARNAME='bmake'
-PACKAGE_VERSION='20220909'
-PACKAGE_STRING='bmake 20220909'
+PACKAGE_VERSION='20230723'
+PACKAGE_STRING='bmake 20230723'
PACKAGE_BUGREPORT='sjg@NetBSD.org'
PACKAGE_URL=''
@@ -1290,7 +1290,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures bmake 20220909 to adapt to many kinds of systems.
+\`configure' configures bmake 20230723 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1352,7 +1352,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of bmake 20220909:";;
+ short | recursive ) echo "Configuration of bmake 20230723:";;
esac
cat <<\_ACEOF
@@ -1367,7 +1367,10 @@ Optional Features:
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
- --with-defshell=SHELL use SHELL by default - must be sh compatible, use sh or ksh to pick the internal definitions
+ --with-defshell=[name=]SHELL use SHELL by default
+ optional 'name' can be 'sh' to indicate SHELL is sh compatible
+ eg. --with-defshell=sh=/bin/bsh
+ use just 'sh' or 'ksh' to pick the internal definitions
--without-makefile disable use of generated makefile
--without-meta disable use of meta-mode
--with-filemon={no,dev,ktrace,path/filemon.h} indicate filemon method for meta-mode. Path to filemon.h implies dev
@@ -1458,7 +1461,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-bmake configure 20220909
+bmake configure 20230723
generated by GNU Autoconf 2.71
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -1965,7 +1968,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by bmake $as_me 20220909, which was
+It was created by bmake $as_me 20230723, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
@@ -2748,15 +2751,24 @@ use_defshell() {
DEFSHELL_INDEX=DEFSHELL_INDEX_CSH;;
*ksh)
DEFSHELL_INDEX=DEFSHELL_INDEX_KSH;;
- sh|/bin/sh)
+ sh|/bin/sh|*/bsh)
DEFSHELL_INDEX=DEFSHELL_INDEX_SH;;
+ *=*) # eg. sh=/bin/bsh
+ eval `IFS="="; set -- $1; echo name=$1 defshell_path=$2`
+ case "$name" in
+ csh) DEFSHELL_INDEX=DEFSHELL_INDEX_CSH;;
+ ksh) DEFSHELL_INDEX=DEFSHELL_INDEX_KSH;;
+ sh) DEFSHELL_INDEX=DEFSHELL_INDEX_SH;;
+ *) DEFSHELL_INDEX=DEFSHELL_INDEX_CUSTOM;;
+ esac
+ ;;
*) DEFSHELL_INDEX=DEFSHELL_INDEX_CUSTOM
defshell_path=$1
;;
esac
- case "$1" in
- /bin/*) ;;
- */*) defshell_path=$1;;
+ case "$defshell_path,$1" in
+ ,/bin/*) ;;
+ ,*/*) defshell_path=$1;;
esac
}
@@ -2851,21 +2863,22 @@ SCO_SV) # /bin/sh is not usable
CPPFLAGS="${CPPFLAGS} -DFORCE_USE_SHELL"
;;
esac
+# Not everyone groks TZ=Europe/Berlin
+# which is used by the localtime tests
echo $ECHO_N "checking whether system has timezone Europe/Berlin... $ECHO_C" >&6
-if test -f /usr/share/zoneinfo/Europe/Berlin; then
+eval `TZ=UTC date '+utc_H=%H utc_d=%d' 2> /dev/null`
+eval `TZ=Europe/Berlin date '+utc1_H=%H utc1_d=%d' 2> /dev/null`
+if test ${utc_d-0} -lt ${utc1_d-0} -o ${utc_H-0} -lt ${utc1_H-0}; then
echo yes >&6
- # seems a safe bet
UTC_1=Europe/Berlin
else
- utcH=`TZ=UTC date +%H 2> /dev/null`
- utc_1H=`TZ=UTC-1 date +%H 2> /dev/null`
- if test ${utcH-0} -lt ${utc_1H-0}; then
+ eval `TZ=UTC-1 date '+utc1_H=%H utc1_d=%d' 2> /dev/null`
+ if test ${utc_d-0} -lt ${utc1_d-0} -o ${utc_H-0} -lt ${utc1_H-0}; then
UTC_1=UTC-1
echo no, using UTC-1 >&6
- else
- echo no >&6
fi
fi
+test "x$UTC_1" = x && echo no >&6
oldPATH=$PATH
for d in /usr/gnu/bin
do
@@ -4870,6 +4883,10 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
+# We have to override that on some systems
+case "$OS" in
+IRIX*) ac_INSTALL=$srcdir/install-sh;;
+esac
if test -x /usr/bin/getconf; then
bmake_path_max=`getconf PATH_MAX / 2> /dev/null`
# only a numeric response is useful
@@ -4881,6 +4898,8 @@ if test $bmake_path_max -gt 1024; then
bmake_path_max=1024
fi
echo "Using: BMAKE_PATH_MAX=$bmake_path_max" >&6
+# if type does not work which(1) had better!
+# note we cannot rely on type returning non-zero on failure
if (type cat) > /dev/null 2>&1; then
: which
which() {
@@ -7555,7 +7574,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by bmake $as_me 20220909, which was
+This file was extended by bmake $as_me 20230723, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -7619,7 +7638,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
-bmake config.status 20220909
+bmake config.status 20230723
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"