2005-05-23 16:48:52 +00:00
|
|
|
#!/bin/sh
|
2007-06-10 17:06:07 +00:00
|
|
|
# $MirOS: src/bin/mksh/Build.sh,v 1.212 2007/06/10 17:06:07 tg Exp $
|
2005-05-23 16:56:22 +00:00
|
|
|
#-
|
2007-06-06 21:59:38 +00:00
|
|
|
# Environment used: CC CFLAGS CPPFLAGS LDFLAGS LIBS NOWARN NROFF TARGET_OS
|
2007-02-18 16:24:13 +00:00
|
|
|
# CPPFLAGS recognised: MKSH_SMALL MKSH_ASSUME_UTF8 MKSH_NEED_MKNOD MKSH_NOPWNAM
|
2005-05-23 16:48:52 +00:00
|
|
|
|
2006-08-28 01:30:37 +00:00
|
|
|
v()
|
|
|
|
{
|
|
|
|
$e "$*"
|
|
|
|
eval "$@"
|
|
|
|
}
|
|
|
|
|
2007-01-12 02:01:48 +00:00
|
|
|
vq()
|
|
|
|
{
|
|
|
|
eval "$@"
|
|
|
|
}
|
|
|
|
|
2007-02-27 00:23:20 +00:00
|
|
|
if test -d /usr/xpg4/bin/. >/dev/null 2>&1; then
|
|
|
|
# Solaris: some of the tools have weird behaviour, use portable ones
|
|
|
|
PATH=/usr/xpg4/bin:$PATH
|
|
|
|
export PATH
|
|
|
|
fi
|
|
|
|
|
2007-04-01 01:48:31 +00:00
|
|
|
if test -n "${ZSH_VERSION+x}" && (emulate sh) >/dev/null 2>&1; then
|
|
|
|
emulate sh
|
|
|
|
NULLCMD=:
|
|
|
|
fi
|
|
|
|
|
2007-01-12 01:17:10 +00:00
|
|
|
if test -t 1; then
|
|
|
|
bi=`printf '\033[1m'`
|
2007-01-12 01:32:27 +00:00
|
|
|
ui=`printf '\033[4m'`
|
|
|
|
ao=`printf '\033[0m'`
|
2007-01-12 01:17:10 +00:00
|
|
|
else
|
|
|
|
bi=
|
2007-01-12 01:32:27 +00:00
|
|
|
ui=
|
|
|
|
ao=
|
2007-01-12 01:17:10 +00:00
|
|
|
fi
|
|
|
|
|
2007-01-18 15:50:32 +00:00
|
|
|
allu=QWERTYUIOPASDFGHJKLZXCVBNM
|
|
|
|
alll=qwertyuiopasdfghjklzxcvbnm
|
|
|
|
alln=0123456789
|
2007-02-27 00:31:17 +00:00
|
|
|
alls=______________________________________________________________
|
2007-03-04 05:03:57 +00:00
|
|
|
nl='
|
|
|
|
'
|
2007-03-10 19:19:12 +00:00
|
|
|
tcbo=
|
|
|
|
tcfn=no
|
2007-01-18 15:50:32 +00:00
|
|
|
|
2006-11-09 00:01:04 +00:00
|
|
|
upper()
|
|
|
|
{
|
2007-01-18 15:50:32 +00:00
|
|
|
echo :"$@" | sed 's/^://' | tr $alll $allu
|
2006-11-09 00:01:04 +00:00
|
|
|
}
|
|
|
|
|
2007-05-24 09:22:58 +00:00
|
|
|
# pipe .c | ac_test[n] [!] label [!] checkif[!]0 [setlabelifcheckis[!]0] useroutput
|
2006-11-09 22:56:09 +00:00
|
|
|
ac_testn()
|
2006-11-08 23:38:28 +00:00
|
|
|
{
|
2007-05-24 09:22:58 +00:00
|
|
|
if test x"$1" = x"!"; then
|
|
|
|
reverse=1
|
|
|
|
shift
|
|
|
|
else
|
|
|
|
reverse=0
|
|
|
|
fi
|
2006-11-08 23:38:28 +00:00
|
|
|
f=$1
|
2006-11-09 00:06:33 +00:00
|
|
|
fu=`upper $f`
|
Clean up the signal mess, saves 172 Bytes:
* 'sigseen' in Build.sh goes away
* Signal name existence is checked in this order:
have our own¹ -> sys_signame[] -> _sys_signame[] -> build our own²
* Signal description existence is checked in this order:
sys_siglist[] -> _sys_siglist[] -> strsignal() -> NULL³
¹ Predefined list of items, for operating systems where we
cannot build² them, i.e. Plan 9 and Minix 3 (e.g. no $CPP -dD)
² The usual cpp(1) stuff
³ Changed later, see below
* Make $CPP test dependent on $NEED_MKSH_SIGNAME (others can
be added here, this is not absolute)
* Make signal name list generation² dependent on $NEED_MKSH_SIGNAME
* Fix check if the generation worked
* Guarantee that sigtraps[*].name and sigtraps[*].mess are valid
C strings; this makes the code shorter *and* removes a few pos-
sible nil pointer dereferences
* Embed autoconf'd usages of sys_sig* / strsignal / mksh_sigpairs
into inittraps()
* Check for each signal 0<=i<=NSIG that
name is not NULL or "" -> replace with ("%d", i)
mess is not NULL or "" -> replace with ("Signal %d", i)
name does not start (case-insensitive) with "SIG" -> name += 3
* In gettrap(), fix check if signal name starts, case-sensitive
or case-insensitive, depending on need, with "SIG" (bug from millert@)
Other changes:
* Build.sh: ac_test[n]() are documented
* Build.sh: ac_test[n]() can have negative prereqs as well now
* Build.sh: use <<-'EOF' consistently
* bump patchlevel to today
2007-01-12 00:25:40 +00:00
|
|
|
fc=0
|
2006-11-08 23:38:28 +00:00
|
|
|
if test x"$2" = x""; then
|
|
|
|
ft=1
|
|
|
|
else
|
Clean up the signal mess, saves 172 Bytes:
* 'sigseen' in Build.sh goes away
* Signal name existence is checked in this order:
have our own¹ -> sys_signame[] -> _sys_signame[] -> build our own²
* Signal description existence is checked in this order:
sys_siglist[] -> _sys_siglist[] -> strsignal() -> NULL³
¹ Predefined list of items, for operating systems where we
cannot build² them, i.e. Plan 9 and Minix 3 (e.g. no $CPP -dD)
² The usual cpp(1) stuff
³ Changed later, see below
* Make $CPP test dependent on $NEED_MKSH_SIGNAME (others can
be added here, this is not absolute)
* Make signal name list generation² dependent on $NEED_MKSH_SIGNAME
* Fix check if the generation worked
* Guarantee that sigtraps[*].name and sigtraps[*].mess are valid
C strings; this makes the code shorter *and* removes a few pos-
sible nil pointer dereferences
* Embed autoconf'd usages of sys_sig* / strsignal / mksh_sigpairs
into inittraps()
* Check for each signal 0<=i<=NSIG that
name is not NULL or "" -> replace with ("%d", i)
mess is not NULL or "" -> replace with ("Signal %d", i)
name does not start (case-insensitive) with "SIG" -> name += 3
* In gettrap(), fix check if signal name starts, case-sensitive
or case-insensitive, depending on need, with "SIG" (bug from millert@)
Other changes:
* Build.sh: ac_test[n]() are documented
* Build.sh: ac_test[n]() can have negative prereqs as well now
* Build.sh: use <<-'EOF' consistently
* bump patchlevel to today
2007-01-12 00:25:40 +00:00
|
|
|
if test x"$2" = x"!"; then
|
|
|
|
fc=1
|
|
|
|
shift
|
|
|
|
fi
|
2006-11-09 22:56:09 +00:00
|
|
|
eval ft=\$HAVE_`upper $2`
|
2006-11-09 22:51:49 +00:00
|
|
|
shift
|
2006-11-08 23:38:28 +00:00
|
|
|
fi
|
2006-11-09 22:51:49 +00:00
|
|
|
fd=$3
|
|
|
|
test x"$fd" = x"" && fd=$f
|
2006-11-10 07:18:58 +00:00
|
|
|
eval fv=\$HAVE_$fu
|
|
|
|
if test 0 = "$fv"; then
|
2007-01-12 01:32:27 +00:00
|
|
|
$e "$bi==> $fd...$ao ${ui}no$ao (cached)"
|
2006-11-10 07:18:58 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
if test 1 = "$fv"; then
|
2007-01-12 01:32:27 +00:00
|
|
|
$e "$bi==> $fd...$ao ${ui}yes$ao (cached)"
|
2006-11-10 07:18:58 +00:00
|
|
|
return
|
|
|
|
fi
|
Clean up the signal mess, saves 172 Bytes:
* 'sigseen' in Build.sh goes away
* Signal name existence is checked in this order:
have our own¹ -> sys_signame[] -> _sys_signame[] -> build our own²
* Signal description existence is checked in this order:
sys_siglist[] -> _sys_siglist[] -> strsignal() -> NULL³
¹ Predefined list of items, for operating systems where we
cannot build² them, i.e. Plan 9 and Minix 3 (e.g. no $CPP -dD)
² The usual cpp(1) stuff
³ Changed later, see below
* Make $CPP test dependent on $NEED_MKSH_SIGNAME (others can
be added here, this is not absolute)
* Make signal name list generation² dependent on $NEED_MKSH_SIGNAME
* Fix check if the generation worked
* Guarantee that sigtraps[*].name and sigtraps[*].mess are valid
C strings; this makes the code shorter *and* removes a few pos-
sible nil pointer dereferences
* Embed autoconf'd usages of sys_sig* / strsignal / mksh_sigpairs
into inittraps()
* Check for each signal 0<=i<=NSIG that
name is not NULL or "" -> replace with ("%d", i)
mess is not NULL or "" -> replace with ("Signal %d", i)
name does not start (case-insensitive) with "SIG" -> name += 3
* In gettrap(), fix check if signal name starts, case-sensitive
or case-insensitive, depending on need, with "SIG" (bug from millert@)
Other changes:
* Build.sh: ac_test[n]() are documented
* Build.sh: ac_test[n]() can have negative prereqs as well now
* Build.sh: use <<-'EOF' consistently
* bump patchlevel to today
2007-01-12 00:25:40 +00:00
|
|
|
if test $fc = "$ft"; then
|
2006-11-10 07:18:58 +00:00
|
|
|
fv=$2
|
|
|
|
eval HAVE_$fu=$fv
|
|
|
|
test 0 = "$fv" && fv=no
|
|
|
|
test 1 = "$fv" && fv=yes
|
2007-01-12 01:32:27 +00:00
|
|
|
$e "$bi==> $fd...$ao $ui$fv$ao (implied)"
|
2006-11-08 23:38:28 +00:00
|
|
|
return
|
|
|
|
fi
|
2006-11-08 23:45:47 +00:00
|
|
|
$e ... $fd
|
2006-11-08 23:38:28 +00:00
|
|
|
cat >scn.c
|
2007-06-04 20:14:34 +00:00
|
|
|
eval 'v "$CC $CFLAGS $CPPFLAGS $LDFLAGS $NOWARN scn.c $LIBS" 2>&'$h | \
|
|
|
|
sed 's/^/] /'
|
2007-03-10 19:19:12 +00:00
|
|
|
test x"$tcfn" = x"no" && test -f a.out && tcfn=a.out
|
|
|
|
test x"$tcfn" = x"no" && test -f a.exe && tcfn=a.exe
|
2007-03-10 18:51:59 +00:00
|
|
|
test x"$tcbo" = x"1" && return
|
2007-05-24 09:22:58 +00:00
|
|
|
fr=0
|
2007-03-10 19:19:12 +00:00
|
|
|
if test -f $tcfn; then
|
2007-05-24 09:22:58 +00:00
|
|
|
test $reverse = 1 || fr=1
|
|
|
|
else
|
|
|
|
test $reverse = 0 || fr=1
|
|
|
|
fi
|
|
|
|
if test $fr = 1; then
|
2006-11-08 23:38:28 +00:00
|
|
|
eval HAVE_$fu=1
|
2007-01-12 01:32:27 +00:00
|
|
|
$e "$bi==> $fd...$ao ${ui}yes$ao"
|
2006-11-08 23:38:28 +00:00
|
|
|
else
|
|
|
|
eval HAVE_$fu=0
|
2007-01-12 01:32:27 +00:00
|
|
|
$e "$bi==> $fd...$ao ${ui}no$ao"
|
2006-11-08 23:38:28 +00:00
|
|
|
fi
|
2007-06-04 21:15:27 +00:00
|
|
|
rm -f scn.c scn.o $tcfn
|
2006-11-09 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ac_test()
|
|
|
|
{
|
|
|
|
ac_testn "$@"
|
2006-11-09 00:01:04 +00:00
|
|
|
eval CPPFLAGS=\"\$CPPFLAGS -DHAVE_$fu=\$HAVE_$fu\"
|
2006-08-26 20:48:29 +00:00
|
|
|
}
|
|
|
|
|
2007-06-04 20:00:50 +00:00
|
|
|
# ac_flags [-] add varname flags [text]
|
2007-01-17 16:39:55 +00:00
|
|
|
ac_flags()
|
|
|
|
{
|
2007-06-04 20:00:50 +00:00
|
|
|
if test x"$1" = x"-"; then
|
|
|
|
shift
|
|
|
|
hf=1
|
|
|
|
else
|
|
|
|
hf=0
|
|
|
|
fi
|
2007-01-17 16:57:41 +00:00
|
|
|
fa=$1
|
|
|
|
vn=$2
|
|
|
|
f=$3
|
|
|
|
ft=$4
|
2007-01-17 16:39:55 +00:00
|
|
|
test x"$ft" = x"" && ft="if $f can be used"
|
|
|
|
save_CFLAGS=$CFLAGS
|
|
|
|
CFLAGS="$CFLAGS $f"
|
2007-06-04 20:00:50 +00:00
|
|
|
if test $hf = 1; then
|
|
|
|
ac_testn can_$vn '' "$ft"
|
|
|
|
else
|
|
|
|
ac_testn can_$vn '' "$ft" <<-'EOF'
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
fi
|
2007-01-17 16:44:19 +00:00
|
|
|
eval fv=\$HAVE_CAN_`upper $vn`
|
2007-01-17 16:57:41 +00:00
|
|
|
test 11 = $fa$fv || CFLAGS=$save_CFLAGS
|
2007-01-17 16:39:55 +00:00
|
|
|
}
|
|
|
|
|
2007-01-18 15:50:32 +00:00
|
|
|
# ac_header header [prereq ...]
|
|
|
|
ac_header()
|
|
|
|
{
|
|
|
|
hf=$1; shift
|
2007-03-04 05:03:57 +00:00
|
|
|
hv=`echo "$hf" | tr -d '\012\015' | tr -c $alll$allu$alln $alls`
|
2007-01-18 15:50:32 +00:00
|
|
|
for i
|
|
|
|
do
|
|
|
|
echo "#include <$i>" >>x
|
|
|
|
done
|
|
|
|
echo "#include <$hf>" >>x
|
|
|
|
echo 'int main(void) { return (0); }' >>x
|
|
|
|
ac_test "$hv" "" "<$hf>" <x
|
|
|
|
rm -f x
|
|
|
|
}
|
|
|
|
|
2006-11-08 23:38:28 +00:00
|
|
|
addsrcs()
|
|
|
|
{
|
|
|
|
eval i=\$$1
|
|
|
|
test 0 = $i && case " $SRCS " in
|
|
|
|
*\ $2\ *) ;;
|
|
|
|
*) SRCS="$SRCS $2" ;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
|
2006-08-24 20:32:53 +00:00
|
|
|
if test -d mksh; then
|
|
|
|
echo "$0: Error: ./mksh is a directory!" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2007-06-04 21:15:27 +00:00
|
|
|
rm -f a.exe a.out *core crypt.exp lft mksh mksh.cat1 mksh.exe no *.o \
|
|
|
|
scn.c signames.inc test.sh x
|
2006-08-24 20:32:53 +00:00
|
|
|
|
2007-06-06 21:59:38 +00:00
|
|
|
: ${CC=gcc} ${NROFF=nroff}
|
2007-01-11 02:08:50 +00:00
|
|
|
curdir=`pwd` srcdir=`dirname "$0"` check_categories=pdksh
|
2006-08-12 18:48:39 +00:00
|
|
|
|
2005-06-08 22:42:31 +00:00
|
|
|
e=echo
|
2007-01-12 01:44:32 +00:00
|
|
|
h=1
|
2005-06-08 22:42:31 +00:00
|
|
|
r=0
|
2007-05-28 13:47:09 +00:00
|
|
|
eq=0
|
2005-06-08 22:42:31 +00:00
|
|
|
|
2006-08-12 20:19:36 +00:00
|
|
|
for i
|
|
|
|
do
|
|
|
|
case $i in
|
2007-05-28 13:47:09 +00:00
|
|
|
-Q)
|
|
|
|
eq=1
|
|
|
|
;;
|
2005-06-08 22:42:31 +00:00
|
|
|
-q)
|
|
|
|
e=:
|
2007-01-12 01:44:32 +00:00
|
|
|
h=-
|
2005-06-08 22:42:31 +00:00
|
|
|
;;
|
|
|
|
-r)
|
|
|
|
r=1
|
|
|
|
;;
|
|
|
|
*)
|
2006-08-12 20:19:36 +00:00
|
|
|
echo "$0: Unknown option '$i'!" >&2
|
2005-06-08 22:42:31 +00:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2005-05-23 16:48:52 +00:00
|
|
|
|
2007-01-12 02:27:40 +00:00
|
|
|
SRCS="alloc.c edit.c eval.c exec.c expr.c funcs.c histrap.c"
|
2005-05-23 16:48:52 +00:00
|
|
|
SRCS="$SRCS jobs.c lex.c main.c misc.c shf.c syn.c tree.c var.c"
|
|
|
|
|
2007-01-17 17:57:31 +00:00
|
|
|
test $r = 0 && echo | $NROFF -v 2>&1 | grep GNU >/dev/null 2>&1 && \
|
|
|
|
NROFF="$NROFF -c"
|
2007-06-04 20:22:08 +00:00
|
|
|
if test x"$srcdir" = x"."; then
|
|
|
|
CPPFLAGS="-I. $CPPFLAGS"
|
|
|
|
else
|
|
|
|
CPPFLAGS="-I. -I'$srcdir' $CPPFLAGS"
|
|
|
|
fi
|
2007-01-17 17:57:31 +00:00
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
|
2007-01-17 22:55:47 +00:00
|
|
|
test x"$TARGET_OS" = x"" && TARGET_OS=`uname -s 2>/dev/null || uname`
|
2007-02-13 12:26:46 +00:00
|
|
|
warn=
|
2007-01-11 00:57:56 +00:00
|
|
|
case $TARGET_OS in
|
2007-04-23 20:17:58 +00:00
|
|
|
AIX)
|
|
|
|
warn=' and is still experimental'
|
|
|
|
if test x"$LDFLAGS" = x""; then
|
|
|
|
LDFLAGS="-Wl,-bI:crypt.exp"
|
|
|
|
cat >crypt.exp <<-EOF
|
|
|
|
#!
|
|
|
|
__crypt_r
|
|
|
|
__encrypt_r
|
|
|
|
__setkey_r
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
: ${LIBS=-lcrypt}
|
|
|
|
;;
|
2006-08-02 10:41:03 +00:00
|
|
|
CYGWIN*)
|
|
|
|
;;
|
2005-10-25 20:54:29 +00:00
|
|
|
Darwin)
|
|
|
|
;;
|
2007-01-17 17:46:18 +00:00
|
|
|
DragonFly)
|
|
|
|
;;
|
|
|
|
FreeBSD)
|
|
|
|
;;
|
2007-02-13 12:26:46 +00:00
|
|
|
GNU)
|
2007-03-19 22:58:19 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
|
2007-02-13 12:26:46 +00:00
|
|
|
;;
|
2007-01-28 20:05:29 +00:00
|
|
|
GNU/kFreeBSD)
|
2007-03-19 22:58:19 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
|
2007-01-28 20:05:29 +00:00
|
|
|
;;
|
2007-04-23 12:13:03 +00:00
|
|
|
HP-UX)
|
|
|
|
warn=' and is still experimental'
|
2007-04-23 22:33:20 +00:00
|
|
|
case `uname -m` in
|
|
|
|
ia64) : ${CFLAGS='-O2 -mlp64'} ;;
|
|
|
|
esac
|
2007-04-23 12:13:03 +00:00
|
|
|
;;
|
2006-03-19 18:06:32 +00:00
|
|
|
Interix)
|
2006-11-08 23:23:41 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_ALL_SOURCE"
|
2007-04-23 14:06:47 +00:00
|
|
|
: ${LIBS=-lcrypt}
|
2006-03-19 18:06:32 +00:00
|
|
|
;;
|
2005-06-08 21:51:22 +00:00
|
|
|
Linux)
|
2007-03-19 22:58:19 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
|
2007-01-28 20:05:29 +00:00
|
|
|
: ${HAVE_REVOKE=0}
|
2005-10-25 19:46:11 +00:00
|
|
|
;;
|
2007-03-04 04:45:36 +00:00
|
|
|
Minix)
|
2007-03-04 04:53:06 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_MINIX -D_POSIX_SOURCE"
|
2007-03-04 05:14:10 +00:00
|
|
|
warn=' and will currently not work'
|
|
|
|
# warn=" but might work with the GNU tools"
|
|
|
|
# warn="$warn$nl but not with ACK - /usr/bin/cc - yet)"
|
2007-03-04 04:45:36 +00:00
|
|
|
;;
|
2007-01-17 17:46:18 +00:00
|
|
|
MirBSD)
|
|
|
|
;;
|
|
|
|
NetBSD)
|
|
|
|
;;
|
|
|
|
OpenBSD)
|
|
|
|
;;
|
2005-10-25 19:46:11 +00:00
|
|
|
SunOS)
|
2006-09-13 23:07:10 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_BSD_SOURCE -D__EXTENSIONS__"
|
2005-06-08 21:51:22 +00:00
|
|
|
;;
|
2007-01-17 17:46:18 +00:00
|
|
|
*)
|
2007-02-13 12:26:46 +00:00
|
|
|
warn='; it may or may not work'
|
2007-01-17 17:46:18 +00:00
|
|
|
;;
|
2005-06-08 21:51:22 +00:00
|
|
|
esac
|
2005-05-23 16:48:52 +00:00
|
|
|
|
2007-02-13 12:26:46 +00:00
|
|
|
if test -n "$warn"; then
|
|
|
|
echo "Warning: mksh has not yet been ported to or tested on your" >&2
|
|
|
|
echo "operating system '$TARGET_OS'$warn. If you can provide" >&2
|
|
|
|
echo "a shell account to the developer, this may improve; please" >&2
|
|
|
|
echo "drop us a success or failure notice or even send in diffs." >&2
|
|
|
|
fi
|
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Begin of mirtoconf checks
|
|
|
|
#
|
2007-01-12 01:32:27 +00:00
|
|
|
$e ${ao}Scanning for functions... please ignore any errors.
|
2006-08-26 20:30:27 +00:00
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
#
|
|
|
|
# Compiler: works as-is, with -Wno-error and -Werror
|
|
|
|
#
|
2007-01-17 16:57:41 +00:00
|
|
|
save_NOWARN=$NOWARN
|
2007-01-17 16:52:00 +00:00
|
|
|
NOWARN=
|
2007-01-17 16:57:41 +00:00
|
|
|
ac_flags 0 compiler_works '' 'if the compiler works'
|
2007-01-17 16:52:00 +00:00
|
|
|
test 1 = $HAVE_CAN_COMPILER_WORKS || exit 1
|
2007-05-31 21:25:25 +00:00
|
|
|
|
|
|
|
$e ... which compiler we seem to use
|
|
|
|
cat >scn.c <<-'EOF'
|
2007-06-06 21:56:12 +00:00
|
|
|
#if defined(__ICC) || defined(__INTEL_COMPILER)
|
|
|
|
ct=icc
|
|
|
|
#elif defined(__GNUC__)
|
2007-05-31 21:25:25 +00:00
|
|
|
ct=gcc
|
|
|
|
#elif defined(__SUNPRO_C)
|
|
|
|
ct=sunpro
|
|
|
|
#else
|
|
|
|
ct=unknown
|
|
|
|
#endif
|
|
|
|
EOF
|
|
|
|
ct=unknown
|
2007-06-05 19:48:47 +00:00
|
|
|
eval 'v "$CC -E scn.c | grep ct= >x" 2>&'$h | sed 's/^/] /'
|
|
|
|
test $h = 1 && sed 's/^/[ /' x
|
|
|
|
eval `cat x`
|
|
|
|
rm -f x
|
2007-05-31 21:25:25 +00:00
|
|
|
case $ct in
|
2007-06-06 22:03:24 +00:00
|
|
|
icc|gcc|sunpro) ;;
|
2007-05-31 21:25:25 +00:00
|
|
|
*) ct=unknown ;;
|
|
|
|
esac
|
|
|
|
$e "$bi==> which compiler we seem to use...$ao $ui$ct$ao"
|
2007-06-04 21:15:27 +00:00
|
|
|
rm -f scn.c scn.o
|
2007-05-31 21:25:25 +00:00
|
|
|
|
|
|
|
if test $ct = sunpro; then
|
|
|
|
test x"$save_NOWARN" = x"" && save_NOWARN='-errwarn=%none'
|
|
|
|
ac_flags 0 errwarnnone "$save_NOWARN"
|
|
|
|
test 1 = $HAVE_CAN_ERRWARNNONE || save_NOWARN=
|
|
|
|
ac_flags 0 errwarnall "-errwarn=%all"
|
|
|
|
else
|
|
|
|
test x"$save_NOWARN" = x"" && save_NOWARN=-Wno-error
|
|
|
|
ac_flags 0 wnoerror "$save_NOWARN"
|
|
|
|
test 1 = $HAVE_CAN_WNOERROR || save_NOWARN=
|
|
|
|
ac_flags 0 werror "-Werror"
|
|
|
|
fi
|
2007-01-17 16:52:00 +00:00
|
|
|
|
|
|
|
# The following tests are run with -Werror if possible
|
2007-05-31 21:25:25 +00:00
|
|
|
test $ct != sunpro && test 1 = $HAVE_CAN_WERROR && NOWARN=-Werror
|
|
|
|
test $ct = sunpro && test 1 = $HAVE_CAN_ERRWARNALL && NOWARN='-errwarn=%all'
|
2007-01-12 01:49:29 +00:00
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
#
|
|
|
|
# Compiler: check for stuff that only generates warnings
|
|
|
|
#
|
2007-01-12 01:49:29 +00:00
|
|
|
ac_test attribute '' 'if we have __attribute__((...)) at all' <<-'EOF'
|
|
|
|
#include <stdlib.h>
|
2007-06-04 20:26:47 +00:00
|
|
|
#undef __attribute__
|
2007-01-12 01:49:29 +00:00
|
|
|
void fnord(void) __attribute__((noreturn));
|
|
|
|
int main(void) { fnord(); }
|
|
|
|
void fnord(void) { exit(0); }
|
|
|
|
EOF
|
|
|
|
|
|
|
|
ac_test attribute_bounded attribute 0 'for __attribute__((bounded))' <<-'EOF'
|
|
|
|
#include <string.h>
|
2007-06-04 20:26:47 +00:00
|
|
|
#undef __attribute__
|
2007-01-12 01:49:29 +00:00
|
|
|
int xcopy(const void *, void *, size_t)
|
|
|
|
__attribute__((bounded (buffer, 1, 3)))
|
|
|
|
__attribute__((bounded (buffer, 2, 3)));
|
2007-01-12 02:37:32 +00:00
|
|
|
int main(int ac, char *av[]) { return (xcopy(av[0], av[--ac], 1)); }
|
2007-01-12 01:49:29 +00:00
|
|
|
int xcopy(const void *s, void *d, size_t n) {
|
|
|
|
memmove(d, s, n); return (n);
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
ac_test attribute_used attribute 0 'for __attribute__((used))' <<-'EOF'
|
|
|
|
static const char fnord[] __attribute__((used)) = "42";
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
|
2007-01-17 16:52:00 +00:00
|
|
|
# End of tests run with -Werror
|
2007-01-17 16:57:41 +00:00
|
|
|
NOWARN=$save_NOWARN
|
2007-01-12 01:49:29 +00:00
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
#
|
|
|
|
# Compiler: extra flags (-O2 -f* -W* etc.)
|
|
|
|
#
|
2007-01-18 15:50:32 +00:00
|
|
|
i=`echo :"$CFLAGS" | sed 's/^://' | tr -c -d $alll$allu$alln-`
|
2007-05-31 21:25:25 +00:00
|
|
|
if test $ct = sunpro; then
|
2007-06-09 22:06:55 +00:00
|
|
|
if test x"$i" = x""; then
|
|
|
|
cat >x <<-'EOF'
|
2007-06-04 20:00:50 +00:00
|
|
|
int main(void) { return (0); }
|
|
|
|
#define __IDSTRING_CONCAT(l,p) __LINTED__ ## l ## _ ## p
|
|
|
|
#define __IDSTRING_EXPAND(l,p) __IDSTRING_CONCAT(l,p)
|
|
|
|
#define pad void __IDSTRING_EXPAND(__LINE__,x)(void) { }
|
|
|
|
EOF
|
2007-06-09 22:06:55 +00:00
|
|
|
yes pad | head -n 256 >>x
|
|
|
|
ac_flags - 1 otwo "-xO2" <x
|
|
|
|
fi
|
2007-05-31 21:25:25 +00:00
|
|
|
else
|
|
|
|
test x"$i" = x"" && ac_flags 1 otwo "-O2"
|
|
|
|
fi
|
|
|
|
if test $ct = gcc; then
|
|
|
|
ac_flags 1 fnostrictaliasing "-fno-strict-aliasing"
|
|
|
|
ac_flags 1 fstackprotectorall "-fstack-protector-all"
|
|
|
|
ac_flags 1 fwrapv "-fwrapv"
|
|
|
|
# I'd use -std=c99 but this wrecks havoc on glibc and cygwin based
|
|
|
|
# systems (at least) because their system headers are so broken...
|
|
|
|
ac_flags 1 stdg99 "-std=gnu99" 'if -std=gnu99 (ISO C99) can be used'
|
|
|
|
ac_flags 1 wall "-Wall"
|
2007-06-06 21:56:12 +00:00
|
|
|
elif test $ct = icc; then
|
2007-06-06 23:25:28 +00:00
|
|
|
ac_flags 1 fnobuiltinsetmode "-fno-builtin-setmode"
|
2007-06-06 21:56:12 +00:00
|
|
|
ac_flags 1 fnostrictaliasing "-fno-strict-aliasing"
|
|
|
|
ac_flags 1 fstacksecuritycheck "-fstack-security-check"
|
|
|
|
ac_flags 1 stdg99 "-std=gnu99" 'if -std=gnu99 (ISO C99) can be used'
|
|
|
|
test 1 = $HAVE_CAN_STDG99 || \
|
|
|
|
ac_flags 1 stdc99 "-std=c99" 'if -std=c99 can be used'
|
|
|
|
ac_flags 1 wall "-Wall"
|
2007-05-31 21:25:25 +00:00
|
|
|
elif test $ct = sunpro; then
|
|
|
|
ac_flags 1 v "-v"
|
2007-06-05 19:48:47 +00:00
|
|
|
ac_flags 1 xc99 "-xc99"
|
2007-03-10 18:51:59 +00:00
|
|
|
fi
|
2007-06-05 19:48:47 +00:00
|
|
|
ac_test expstmt '' "if the compiler supports statements as expressions" <<-'EOF'
|
2007-06-09 22:01:42 +00:00
|
|
|
#define ksh_isspace(c) ({ \
|
2007-06-06 21:36:29 +00:00
|
|
|
unsigned ksh_isspace_c = (c); \
|
2007-06-05 19:48:47 +00:00
|
|
|
(ksh_isspace_c >= 0x09 && ksh_isspace_c <= 0x0D) || \
|
|
|
|
(ksh_isspace_c == 0x20); \
|
|
|
|
})
|
|
|
|
int main(int ac, char *av[]) { return (ksh_isspace(ac + **av)); }
|
|
|
|
EOF
|
2007-01-17 17:31:59 +00:00
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
#
|
|
|
|
# mksh: flavours (full/small mksh, omit certain stuff)
|
|
|
|
#
|
2006-11-09 22:56:09 +00:00
|
|
|
ac_testn mksh_full '' "if we're building without MKSH_SMALL" <<-'EOF'
|
2006-11-09 22:51:49 +00:00
|
|
|
#ifdef MKSH_SMALL
|
2006-11-21 21:45:24 +00:00
|
|
|
#error OK, we are building an extra small mksh.
|
2006-11-09 22:51:49 +00:00
|
|
|
#endif
|
2007-01-12 02:40:18 +00:00
|
|
|
int main(void) { return (0); }
|
2006-11-09 22:51:49 +00:00
|
|
|
EOF
|
|
|
|
|
2007-02-18 16:24:13 +00:00
|
|
|
ac_testn mksh_defutf8 '' "if we assume UTF-8 is enabled" <<-'EOF'
|
|
|
|
#ifndef MKSH_ASSUME_UTF8
|
|
|
|
#error Nope, we shall check with setlocale() and nl_langinfo(CODESET)
|
|
|
|
#endif
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
|
|
|
|
ac_testn mksh_need_mknod '!' mksh_full 1 'if we still want c_mknod()' <<-'EOF'
|
|
|
|
#ifndef MKSH_NEED_MKNOD
|
|
|
|
#error Nope, the user really wants it teensy.
|
|
|
|
#endif
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
ac_testn mksh_nopam mksh_full 1 'if the user wants to omit getpwnam()' <<-'EOF'
|
|
|
|
#ifndef MKSH_NOPWNAM
|
|
|
|
#error No, the user wants to pull in getpwnam.
|
|
|
|
#endif
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
|
2006-11-09 23:04:34 +00:00
|
|
|
if test 0 = $HAVE_MKSH_FULL; then
|
2007-01-17 16:57:41 +00:00
|
|
|
ac_flags 1 fnoinline "-fno-inline"
|
2006-11-10 07:18:58 +00:00
|
|
|
|
2007-01-12 02:46:27 +00:00
|
|
|
: ${HAVE_SETLOCALE_CTYPE=0}
|
2007-01-11 02:08:50 +00:00
|
|
|
check_categories=$check_categories,smksh
|
2007-06-05 19:48:47 +00:00
|
|
|
test 0 = $HAVE_MKSH_DEFUTF8 || check_categories=$check_categories,dutf
|
2006-11-09 23:04:34 +00:00
|
|
|
fi
|
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
#
|
|
|
|
# Environment: headers
|
|
|
|
#
|
2007-01-18 15:50:32 +00:00
|
|
|
ac_header sys/param.h
|
|
|
|
ac_header sys/mkdev.h
|
2007-03-04 04:36:45 +00:00
|
|
|
ac_header sys/mman.h sys/types.h
|
2007-01-18 15:50:32 +00:00
|
|
|
ac_header sys/sysmacros.h
|
|
|
|
ac_header libgen.h
|
|
|
|
ac_header paths.h
|
|
|
|
ac_header stdbool.h
|
2007-04-23 22:33:20 +00:00
|
|
|
ac_header stdint.h stdarg.h
|
2007-01-18 15:50:32 +00:00
|
|
|
ac_header grp.h sys/types.h
|
|
|
|
ac_header ulimit.h
|
|
|
|
ac_header values.h
|
2007-01-17 22:51:47 +00:00
|
|
|
|
2007-03-19 22:58:19 +00:00
|
|
|
#
|
|
|
|
# Environment: definitions
|
|
|
|
#
|
|
|
|
cat >lft.c <<-'EOF'
|
|
|
|
#include <sys/types.h>
|
|
|
|
/* check that off_t can represent 2^63-1 correctly, thx FSF */
|
|
|
|
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
|
|
|
|
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 &&
|
|
|
|
LARGE_OFF_T % 2147483647 == 1) ? 1 : -1];
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
ac_testn can_lfs '' "if we support large files" <lft.c
|
|
|
|
save_CPPFLAGS=$CPPFLAGS
|
|
|
|
CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64"
|
|
|
|
ac_testn can_lfs_sus '!' can_lfs 0 "... with -D_FILE_OFFSET_BITS=64" <lft.c
|
|
|
|
if test 1 = $HAVE_CAN_LFS_SUS; then
|
|
|
|
HAVE_CAN_LFS=1
|
|
|
|
else
|
|
|
|
CPPFLAGS=$save_CPPFLAGS
|
|
|
|
fi
|
|
|
|
CPPFLAGS="$CPPFLAGS _LARGE_FILES=1"
|
|
|
|
ac_testn can_lfs_aix '!' can_lfs 0 "... with -D_LARGE_FILES=1" <lft.c
|
|
|
|
test 1 = $HAVE_CAN_LFS_AIX || CPPFLAGS=$save_CPPFLAGS
|
2007-06-04 21:15:27 +00:00
|
|
|
rm -f lft.c lft.o # end of large file support test
|
2007-03-19 22:58:19 +00:00
|
|
|
|
2007-01-17 23:18:55 +00:00
|
|
|
#
|
|
|
|
# Environment: types
|
|
|
|
#
|
|
|
|
ac_test rlim_t <<-'EOF'
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
int main(void) { return ((int)(rlim_t)0); }
|
|
|
|
EOF
|
|
|
|
|
2007-01-18 00:16:26 +00:00
|
|
|
# only testn: added later below
|
2007-01-17 23:54:39 +00:00
|
|
|
ac_testn sig_t <<-'EOF'
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <signal.h>
|
|
|
|
int main(void) { return ((int)(sig_t)0); }
|
|
|
|
EOF
|
|
|
|
|
|
|
|
ac_testn sighandler_t '!' sig_t 0 <<-'EOF'
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <signal.h>
|
|
|
|
int main(void) { return ((int)(sighandler_t)0); }
|
|
|
|
EOF
|
|
|
|
if test 1 = $HAVE_SIGHANDLER_T; then
|
|
|
|
CPPFLAGS="$CPPFLAGS -Dsig_t=sighandler_t"
|
|
|
|
HAVE_SIG_T=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
ac_testn __sighandler_t '!' sig_t 0 <<-'EOF'
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <signal.h>
|
|
|
|
int main(void) { return ((int)(__sighandler_t)0); }
|
|
|
|
EOF
|
2007-01-18 00:16:26 +00:00
|
|
|
if test 1 = $HAVE___SIGHANDLER_T; then
|
2007-01-17 23:54:39 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -Dsig_t=__sighandler_t"
|
|
|
|
HAVE_SIG_T=1
|
|
|
|
fi
|
|
|
|
|
2007-01-18 00:10:16 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -DHAVE_SIG_T=$HAVE_SIG_T"
|
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
#
|
|
|
|
# Environment: signals
|
|
|
|
#
|
2007-04-23 11:33:26 +00:00
|
|
|
test x"NetBSD" = x"$TARGET_OS" && $e Ignore the compatibility warning.
|
|
|
|
|
2007-06-05 21:47:49 +00:00
|
|
|
for what in name list; do
|
|
|
|
uwhat=`upper $what`
|
|
|
|
ac_testn sys_sig$what '' "the sys_sig${what}[] array" <<-EOF
|
|
|
|
extern const char *const sys_sig${what}[];
|
|
|
|
int main(void) { return (sys_sig${what}[0][0]); }
|
|
|
|
EOF
|
|
|
|
ac_testn _sys_sig$what '!' sys_sig$what 0 "the _sys_sig${what}[] array" <<-EOF
|
|
|
|
extern const char *const _sys_sig${what}[];
|
|
|
|
int main(void) { return (_sys_sig${what}[0][0]); }
|
|
|
|
EOF
|
|
|
|
if eval "test 1 = \$HAVE__SYS_SIG$uwhat"; then
|
|
|
|
CPPFLAGS="$CPPFLAGS -Dsys_sig$what=_sys_sig$what"
|
|
|
|
eval "HAVE_SYS_SIG$uwhat=1"
|
|
|
|
fi
|
|
|
|
eval CPPFLAGS=\"\$CPPFLAGS -DHAVE_SYS_SIG$uwhat=\$HAVE_SYS_SIG$uwhat\"
|
|
|
|
done
|
Clean up the signal mess, saves 172 Bytes:
* 'sigseen' in Build.sh goes away
* Signal name existence is checked in this order:
have our own¹ -> sys_signame[] -> _sys_signame[] -> build our own²
* Signal description existence is checked in this order:
sys_siglist[] -> _sys_siglist[] -> strsignal() -> NULL³
¹ Predefined list of items, for operating systems where we
cannot build² them, i.e. Plan 9 and Minix 3 (e.g. no $CPP -dD)
² The usual cpp(1) stuff
³ Changed later, see below
* Make $CPP test dependent on $NEED_MKSH_SIGNAME (others can
be added here, this is not absolute)
* Make signal name list generation² dependent on $NEED_MKSH_SIGNAME
* Fix check if the generation worked
* Guarantee that sigtraps[*].name and sigtraps[*].mess are valid
C strings; this makes the code shorter *and* removes a few pos-
sible nil pointer dereferences
* Embed autoconf'd usages of sys_sig* / strsignal / mksh_sigpairs
into inittraps()
* Check for each signal 0<=i<=NSIG that
name is not NULL or "" -> replace with ("%d", i)
mess is not NULL or "" -> replace with ("Signal %d", i)
name does not start (case-insensitive) with "SIG" -> name += 3
* In gettrap(), fix check if signal name starts, case-sensitive
or case-insensitive, depending on need, with "SIG" (bug from millert@)
Other changes:
* Build.sh: ac_test[n]() are documented
* Build.sh: ac_test[n]() can have negative prereqs as well now
* Build.sh: use <<-'EOF' consistently
* bump patchlevel to today
2007-01-12 00:25:40 +00:00
|
|
|
|
2007-01-17 23:47:15 +00:00
|
|
|
ac_test strsignal '!' sys_siglist 0 <<-'EOF'
|
Clean up the signal mess, saves 172 Bytes:
* 'sigseen' in Build.sh goes away
* Signal name existence is checked in this order:
have our own¹ -> sys_signame[] -> _sys_signame[] -> build our own²
* Signal description existence is checked in this order:
sys_siglist[] -> _sys_siglist[] -> strsignal() -> NULL³
¹ Predefined list of items, for operating systems where we
cannot build² them, i.e. Plan 9 and Minix 3 (e.g. no $CPP -dD)
² The usual cpp(1) stuff
³ Changed later, see below
* Make $CPP test dependent on $NEED_MKSH_SIGNAME (others can
be added here, this is not absolute)
* Make signal name list generation² dependent on $NEED_MKSH_SIGNAME
* Fix check if the generation worked
* Guarantee that sigtraps[*].name and sigtraps[*].mess are valid
C strings; this makes the code shorter *and* removes a few pos-
sible nil pointer dereferences
* Embed autoconf'd usages of sys_sig* / strsignal / mksh_sigpairs
into inittraps()
* Check for each signal 0<=i<=NSIG that
name is not NULL or "" -> replace with ("%d", i)
mess is not NULL or "" -> replace with ("Signal %d", i)
name does not start (case-insensitive) with "SIG" -> name += 3
* In gettrap(), fix check if signal name starts, case-sensitive
or case-insensitive, depending on need, with "SIG" (bug from millert@)
Other changes:
* Build.sh: ac_test[n]() are documented
* Build.sh: ac_test[n]() can have negative prereqs as well now
* Build.sh: use <<-'EOF' consistently
* bump patchlevel to today
2007-01-12 00:25:40 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
int main(void) { return (strsignal(1)[0]); }
|
|
|
|
EOF
|
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
#
|
|
|
|
# Environment: library functions
|
|
|
|
#
|
2007-06-10 17:06:07 +00:00
|
|
|
ac_testn arc4random <<-'EOF'
|
2007-04-24 10:42:02 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#if HAVE_STDINT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#endif
|
|
|
|
extern u_int32_t arc4random(void);
|
2006-11-12 13:35:29 +00:00
|
|
|
int main(void) { return (arc4random()); }
|
2006-11-08 23:38:28 +00:00
|
|
|
EOF
|
2006-08-26 20:30:27 +00:00
|
|
|
|
2007-06-10 17:06:07 +00:00
|
|
|
if test $HAVE_ARC4RANDOM = 0 && test -f "$srcdir/arc4random.c"; then
|
|
|
|
ac_header sys/sysctl.h
|
|
|
|
addsrcs HAVE_ARC4RANDOM arc4random.c
|
|
|
|
HAVE_ARC4RANDOM=1
|
|
|
|
HAVE_ARC4RANDOM_DECL=0
|
|
|
|
HAVE_ARC4RANDOM_PUSH=0
|
|
|
|
fi
|
|
|
|
CPPFLAGS="$CPPFLAGS -DHAVE_ARC4RANDOM=$HAVE_ARC4RANDOM"
|
|
|
|
|
2006-11-09 22:51:49 +00:00
|
|
|
ac_test arc4random_push arc4random 0 <<-'EOF'
|
2007-04-24 10:42:02 +00:00
|
|
|
extern void arc4random_push(int);
|
2006-11-09 00:01:04 +00:00
|
|
|
int main(void) { arc4random_push(1); return (0); }
|
2006-11-08 23:38:28 +00:00
|
|
|
EOF
|
2006-08-26 20:30:27 +00:00
|
|
|
|
2007-01-18 16:05:05 +00:00
|
|
|
ac_test flock_ex '' 'flock and LOCK_EX' <<-'EOF'
|
2007-01-18 20:40:39 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/file.h>
|
2007-01-18 16:05:05 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
int main(void) { return (flock(0, LOCK_EX)); }
|
|
|
|
EOF
|
|
|
|
|
2007-02-18 16:24:13 +00:00
|
|
|
ac_test setlocale_ctype '!' mksh_defutf8 0 'setlocale(LC_CTYPE, "")' <<-'EOF'
|
2006-11-08 23:45:47 +00:00
|
|
|
#include <locale.h>
|
2006-11-12 13:49:22 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
int main(void) { return ((ptrdiff_t)(void *)setlocale(LC_CTYPE, "")); }
|
2006-11-08 23:45:47 +00:00
|
|
|
EOF
|
|
|
|
|
Clean up the signal mess, saves 172 Bytes:
* 'sigseen' in Build.sh goes away
* Signal name existence is checked in this order:
have our own¹ -> sys_signame[] -> _sys_signame[] -> build our own²
* Signal description existence is checked in this order:
sys_siglist[] -> _sys_siglist[] -> strsignal() -> NULL³
¹ Predefined list of items, for operating systems where we
cannot build² them, i.e. Plan 9 and Minix 3 (e.g. no $CPP -dD)
² The usual cpp(1) stuff
³ Changed later, see below
* Make $CPP test dependent on $NEED_MKSH_SIGNAME (others can
be added here, this is not absolute)
* Make signal name list generation² dependent on $NEED_MKSH_SIGNAME
* Fix check if the generation worked
* Guarantee that sigtraps[*].name and sigtraps[*].mess are valid
C strings; this makes the code shorter *and* removes a few pos-
sible nil pointer dereferences
* Embed autoconf'd usages of sys_sig* / strsignal / mksh_sigpairs
into inittraps()
* Check for each signal 0<=i<=NSIG that
name is not NULL or "" -> replace with ("%d", i)
mess is not NULL or "" -> replace with ("Signal %d", i)
name does not start (case-insensitive) with "SIG" -> name += 3
* In gettrap(), fix check if signal name starts, case-sensitive
or case-insensitive, depending on need, with "SIG" (bug from millert@)
Other changes:
* Build.sh: ac_test[n]() are documented
* Build.sh: ac_test[n]() can have negative prereqs as well now
* Build.sh: use <<-'EOF' consistently
* bump patchlevel to today
2007-01-12 00:25:40 +00:00
|
|
|
ac_test langinfo_codeset setlocale_ctype 0 'nl_langinfo(CODESET)' <<-'EOF'
|
2006-11-08 23:45:47 +00:00
|
|
|
#include <langinfo.h>
|
2006-11-12 13:49:22 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
int main(void) { return ((ptrdiff_t)(void *)nl_langinfo(CODESET)); }
|
2006-11-08 23:45:47 +00:00
|
|
|
EOF
|
|
|
|
|
2007-01-26 18:25:01 +00:00
|
|
|
ac_test revoke mksh_full 0 <<-'EOF'
|
2007-01-17 23:27:47 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
int main(int ac, char *av[]) { return (ac + revoke(av[0])); }
|
|
|
|
EOF
|
|
|
|
|
2007-02-18 16:24:13 +00:00
|
|
|
ac_test setmode mksh_need_mknod 1 <<-'EOF'
|
2006-11-12 13:35:29 +00:00
|
|
|
#if defined(__MSVCRT__) || defined(__CYGWIN__)
|
|
|
|
#error Win32 setmode() is different from what we need
|
2007-01-12 02:40:18 +00:00
|
|
|
#endif
|
2006-11-08 23:38:28 +00:00
|
|
|
#include <unistd.h>
|
2006-11-12 13:38:40 +00:00
|
|
|
int main(int ac, char *av[]) { return (getmode(setmode(av[0]), ac)); }
|
2006-11-08 23:38:28 +00:00
|
|
|
EOF
|
2006-11-08 23:23:41 +00:00
|
|
|
|
2006-11-12 12:56:10 +00:00
|
|
|
ac_test setresugid <<-'EOF'
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
int main(void) { setresuid(0,0,0); return (setresgid(0,0,0)); }
|
|
|
|
EOF
|
|
|
|
|
|
|
|
ac_test setgroups setresugid 0 <<-'EOF'
|
|
|
|
#include <sys/types.h>
|
2007-01-18 15:50:32 +00:00
|
|
|
#if HAVE_GRP_H
|
2006-11-12 13:35:29 +00:00
|
|
|
#include <grp.h>
|
2007-01-18 15:50:32 +00:00
|
|
|
#endif
|
2006-11-12 12:56:10 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
int main(void) { gid_t gid = 0; return (setgroups(0, &gid)); }
|
|
|
|
EOF
|
|
|
|
|
2007-05-02 20:02:07 +00:00
|
|
|
ac_test strcasestr setlocale_ctype 1 <<-'EOF'
|
2006-11-12 13:49:22 +00:00
|
|
|
#include <stddef.h>
|
2006-11-12 13:15:27 +00:00
|
|
|
#include <string.h>
|
2006-11-12 13:49:22 +00:00
|
|
|
int main(int ac, char *av[]) {
|
|
|
|
return ((ptrdiff_t)(void *)strcasestr(*av, av[ac]));
|
|
|
|
}
|
2006-11-12 13:15:27 +00:00
|
|
|
EOF
|
|
|
|
|
2006-11-08 23:38:28 +00:00
|
|
|
ac_test strlcpy <<-'EOF'
|
|
|
|
#include <string.h>
|
2006-11-12 13:35:29 +00:00
|
|
|
int main(int ac, char *av[]) { return (strlcpy(*av, av[1], ac)); }
|
2006-11-08 23:38:28 +00:00
|
|
|
EOF
|
2006-11-08 23:23:41 +00:00
|
|
|
|
2007-04-23 20:37:16 +00:00
|
|
|
#
|
2007-04-24 10:44:58 +00:00
|
|
|
# check headers for declarations
|
2007-04-23 20:37:16 +00:00
|
|
|
#
|
2007-05-24 09:22:58 +00:00
|
|
|
ac_test '!' arc4random_decl arc4random 1 'if arc4random() does not need to be declared' <<-'EOF'
|
2007-04-24 10:42:02 +00:00
|
|
|
#define MKSH_INCLUDES_ONLY
|
|
|
|
#include "sh.h"
|
2007-05-24 09:22:58 +00:00
|
|
|
long arc4random(void); /* this clashes if defined before */
|
2007-04-24 10:42:02 +00:00
|
|
|
int main(void) { return (arc4random()); }
|
|
|
|
EOF
|
2007-05-24 09:22:58 +00:00
|
|
|
ac_test '!' arc4random_push_decl arc4random_push 1 'if arc4random_push() does not need to be declared' <<-'EOF'
|
2007-04-24 10:42:02 +00:00
|
|
|
#define MKSH_INCLUDES_ONLY
|
|
|
|
#include "sh.h"
|
2007-05-24 09:22:58 +00:00
|
|
|
void arc4random_push(long); /* this clashes if defined before */
|
2007-04-24 10:42:02 +00:00
|
|
|
int main(void) { arc4random_push(1); return (0); }
|
|
|
|
EOF
|
|
|
|
ac_test sys_siglist_decl sys_siglist 1 'if sys_siglist[] does not need to be declared' <<-'EOF'
|
2007-04-23 20:37:16 +00:00
|
|
|
#define MKSH_INCLUDES_ONLY
|
|
|
|
#include "sh.h"
|
|
|
|
int main(void) { return (sys_siglist[0][0]); }
|
|
|
|
EOF
|
|
|
|
|
2007-01-17 21:42:23 +00:00
|
|
|
#
|
|
|
|
# other checks
|
|
|
|
#
|
2007-06-05 20:01:26 +00:00
|
|
|
case $HAVE_PERSISTENT_HISTORY:$HAVE_FLOCK_EX$HAVE_MKSH_FULL in
|
|
|
|
0:*)
|
|
|
|
fv="yes$ao (cached)"
|
|
|
|
;;
|
|
|
|
1:*)
|
|
|
|
fv="no$ao (cached)"
|
|
|
|
;;
|
|
|
|
*:11)
|
|
|
|
HAVE_PERSISTENT_HISTORY=1
|
|
|
|
fv=yes$ao
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
HAVE_PERSISTENT_HISTORY=0
|
|
|
|
fv=no$ao
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
$e "$bi==> if to use persistent history...$ao $ui$fv"
|
2007-06-05 21:17:05 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -DHAVE_PERSISTENT_HISTORY=$HAVE_PERSISTENT_HISTORY"
|
2007-03-03 21:36:08 +00:00
|
|
|
test 1 = $HAVE_PERSISTENT_HISTORY || \
|
|
|
|
check_categories=$check_categories,no-histfile
|
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
#
|
|
|
|
# Compiler: Praeprocessor (only if needed)
|
|
|
|
#
|
2007-05-31 21:25:25 +00:00
|
|
|
HAVE_CPP_DD=yes
|
2007-06-05 21:47:49 +00:00
|
|
|
if test 0 = $HAVE_SYS_SIGNAME; then
|
2007-05-31 21:25:25 +00:00
|
|
|
$e ... checking if the C Preprocessor supports -dD
|
2007-06-06 21:59:38 +00:00
|
|
|
eval '( echo "#define foo bar" | v "$CC -dD -E - >x" ) 2>&'$h | \
|
2007-05-31 21:25:25 +00:00
|
|
|
sed 's/^/] /'
|
|
|
|
grep '#define foo bar' x >/dev/null 2>&1 || HAVE_CPP_DD=no
|
|
|
|
$e "$bi==> checking if the C Preprocessor supports -dD...$ao $ui$HAVE_CPP_DD$ao"
|
|
|
|
rm -f x
|
2007-01-11 02:37:40 +00:00
|
|
|
fi
|
|
|
|
|
2007-01-17 17:42:22 +00:00
|
|
|
#
|
|
|
|
# End of mirtoconf checks
|
|
|
|
#
|
2006-08-26 20:30:27 +00:00
|
|
|
$e ... done.
|
2007-01-11 02:41:53 +00:00
|
|
|
|
2007-01-18 01:10:55 +00:00
|
|
|
# Some operating systems have ancient versions of ed(1) writing
|
|
|
|
# the character count to standard output; cope for that
|
|
|
|
echo wq >x
|
|
|
|
ed x <x 2>/dev/null | grep 3 >/dev/null 2>&1 && \
|
|
|
|
check_categories=$check_categories,oldish-ed
|
|
|
|
rm -f x
|
2007-01-17 17:42:22 +00:00
|
|
|
|
2007-06-05 21:47:49 +00:00
|
|
|
if test 0 = $HAVE_SYS_SIGNAME; then
|
2007-06-05 21:10:52 +00:00
|
|
|
if test $HAVE_CPP_DD = yes; then
|
|
|
|
$e Generating list of signal names...
|
|
|
|
else
|
|
|
|
$e No list of signal names available via cpp. Falling back...
|
|
|
|
fi
|
Clean up the signal mess, saves 172 Bytes:
* 'sigseen' in Build.sh goes away
* Signal name existence is checked in this order:
have our own¹ -> sys_signame[] -> _sys_signame[] -> build our own²
* Signal description existence is checked in this order:
sys_siglist[] -> _sys_siglist[] -> strsignal() -> NULL³
¹ Predefined list of items, for operating systems where we
cannot build² them, i.e. Plan 9 and Minix 3 (e.g. no $CPP -dD)
² The usual cpp(1) stuff
³ Changed later, see below
* Make $CPP test dependent on $NEED_MKSH_SIGNAME (others can
be added here, this is not absolute)
* Make signal name list generation² dependent on $NEED_MKSH_SIGNAME
* Fix check if the generation worked
* Guarantee that sigtraps[*].name and sigtraps[*].mess are valid
C strings; this makes the code shorter *and* removes a few pos-
sible nil pointer dereferences
* Embed autoconf'd usages of sys_sig* / strsignal / mksh_sigpairs
into inittraps()
* Check for each signal 0<=i<=NSIG that
name is not NULL or "" -> replace with ("%d", i)
mess is not NULL or "" -> replace with ("Signal %d", i)
name does not start (case-insensitive) with "SIG" -> name += 3
* In gettrap(), fix check if signal name starts, case-sensitive
or case-insensitive, depending on need, with "SIG" (bug from millert@)
Other changes:
* Build.sh: ac_test[n]() are documented
* Build.sh: ac_test[n]() can have negative prereqs as well now
* Build.sh: use <<-'EOF' consistently
* bump patchlevel to today
2007-01-12 00:25:40 +00:00
|
|
|
sigseen=:
|
2007-03-04 04:53:06 +00:00
|
|
|
NSIG=`( echo '#include <signal.h>'; echo '#ifndef NSIG'; \
|
|
|
|
echo '#define NSIG _NSIG'; echo '#endif'; echo mksh_cfg: NSIG ) | \
|
2007-06-06 21:59:38 +00:00
|
|
|
vq "$CC $CPPFLAGS -E -" | grep mksh_cfg: | \
|
2007-06-05 20:57:46 +00:00
|
|
|
sed 's/^mksh_cfg:[ ]*\([0-9x ()+-]*\).*$/\1/'`
|
2007-04-23 20:57:50 +00:00
|
|
|
case $NSIG in
|
2007-04-23 21:31:58 +00:00
|
|
|
*[\ +-]*) NSIG=`awk "BEGIN { print $NSIG }"` ;;
|
2007-04-23 20:57:50 +00:00
|
|
|
esac
|
2007-01-12 02:01:48 +00:00
|
|
|
NSIG=`printf %d "$NSIG" 2>/dev/null`
|
2007-01-12 02:09:10 +00:00
|
|
|
test $h = 1 && printf "NSIG=$NSIG ... "
|
2007-06-05 21:10:52 +00:00
|
|
|
if test $HAVE_CPP_DD = yes && test $NSIG -gt 1; then
|
|
|
|
signames=`echo '#include <signal.h>' | \
|
2007-06-06 21:59:38 +00:00
|
|
|
vq "$CC $CPPFLAGS -dD -E -" | \
|
2007-06-05 21:10:52 +00:00
|
|
|
grep '[ ]SIG[A-Z0-9]*[ ]' | \
|
|
|
|
sed 's/^\(.*[ ]SIG\)\([A-Z0-9]*\)\([ ].*\)$/\2/' | \
|
|
|
|
sort`
|
|
|
|
else
|
|
|
|
signames="ABRT ALRM BUS CHLD CLD CONT EMT FPE HUP ILL INT IO"
|
|
|
|
signames="$signames IOT KILL PIPE PWR QUIT SEGV SYS STOP TERM"
|
|
|
|
signames="$signames TRAP TSTP TTIN TTOU URG USR1 USR2 WINCH"
|
|
|
|
fi
|
|
|
|
test $NSIG -gt 1 || signames=
|
|
|
|
for name in $signames; do
|
2007-01-17 17:31:59 +00:00
|
|
|
( echo '#include <signal.h>'; echo mksh_cfg: SIG$name ) | \
|
2007-06-06 21:59:38 +00:00
|
|
|
vq "$CC $CPPFLAGS -E -" | grep mksh_cfg: | \
|
2007-06-05 20:57:46 +00:00
|
|
|
sed 's/^mksh_cfg:[ ]*\([0-9x]*\).*$/\1:'$name/
|
2007-01-11 02:41:53 +00:00
|
|
|
done | grep -v '^:' | while IFS=: read nr name; do
|
2007-01-12 02:01:48 +00:00
|
|
|
nr=`printf %d "$nr" 2>/dev/null`
|
2007-03-04 04:53:06 +00:00
|
|
|
test $nr -gt 0 && test $nr -le $NSIG || continue
|
2007-01-11 02:41:53 +00:00
|
|
|
case $sigseen in
|
|
|
|
*:$nr:*) ;;
|
|
|
|
*) echo " { $nr, \"$name\" },"
|
|
|
|
sigseen=$sigseen$nr:
|
2007-06-05 21:10:52 +00:00
|
|
|
test $h = 1 && printf "$name=$nr " >&2
|
2007-01-11 02:41:53 +00:00
|
|
|
;;
|
|
|
|
esac
|
2007-01-12 02:12:16 +00:00
|
|
|
done 2>&1 >signames.inc
|
2007-01-11 03:03:34 +00:00
|
|
|
$e done.
|
2007-01-11 02:41:53 +00:00
|
|
|
fi
|
|
|
|
|
2006-11-08 23:38:28 +00:00
|
|
|
addsrcs HAVE_SETMODE setmode.c
|
• remove strcasestr.c, use home-grown implementation¹, call it stricmp,
and have it return an API-correct const char *
• enhance and stylify comments
• a little KNF and simplifications
• #ifdef DEBUG: replace strchr and strstr with ucstrchr and ucstrstr
that take and return a non-const char *, and fix the violations
• new cstrchr, cstrstr (take and give const char *)
• new vstrchr, vstrstr (take const or not, give boolean value)
• new afreechk(x) = afreechv(x,x) = if (x1) afree(x2, ATEMP)
• new ksh_isdash(str) = (str != NULL) && !strcmp(str, "-")
• replace the only use of strrchr with inlined code to shrink
• minor man page fixes
• Minix 3 signames are autogenerated with gcc
• rename strlfun.c to strlcpy.c since we don't do strlcat(3) anyway,
only strlcpy(3), and shorten it
• dot.mkshrc: move MKSH=… down to the export line
to not disturb the PS1 visual impression ☺
• dot.mkshrc: Lstripcom(): optimise
• bump version
¹) side effect from creating API-correct cstrchr, cstrstr, etc.
uses goto so it must be better ☻
tested on mirbsd-current via both Makefile and Build.sh
2007-03-04 03:04:28 +00:00
|
|
|
addsrcs HAVE_STRLCPY strlcpy.c
|
2007-01-12 01:27:28 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -DHAVE_CONFIG_H -DCONFIG_H_FILENAME=\\\"sh.h\\\""
|
2006-08-26 20:30:27 +00:00
|
|
|
|
2007-06-04 20:14:34 +00:00
|
|
|
objs=
|
|
|
|
for file in $SRCS; do
|
|
|
|
objs="$objs `echo x"$file" | sed 's/^x\(.*\)\.c$/\1.o/'`"
|
|
|
|
test -f $file || file=$srcdir/$file
|
|
|
|
v "$CC $CFLAGS $CPPFLAGS -c $file" || exit 1
|
|
|
|
done
|
|
|
|
v "$CC $CFLAGS $LDFLAGS -o mksh $objs $LIBS" || exit 1
|
2006-08-26 20:48:29 +00:00
|
|
|
result=mksh
|
|
|
|
test -f mksh.exe && result=mksh.exe
|
|
|
|
test -f $result || exit 1
|
2006-08-12 19:51:09 +00:00
|
|
|
test $r = 1 || v "$NROFF -mdoc <'$srcdir/mksh.1' >mksh.cat1" || \
|
|
|
|
rm -f mksh.cat1
|
2007-05-28 13:47:09 +00:00
|
|
|
test $eq = 0 && test $h = 1 && v size $result
|
2006-09-21 22:09:41 +00:00
|
|
|
case $curdir in
|
2006-09-21 22:12:05 +00:00
|
|
|
*\ *) echo "#!./mksh" >test.sh ;;
|
2006-09-21 22:09:41 +00:00
|
|
|
*) echo "#!$curdir/mksh" >test.sh ;;
|
|
|
|
esac
|
2007-04-30 19:18:37 +00:00
|
|
|
echo "export PATH='$PATH'" >>test.sh
|
2006-08-12 18:43:55 +00:00
|
|
|
echo "exec perl '$srcdir/check.pl' -s '$srcdir/check.t'" \
|
2007-01-11 02:08:50 +00:00
|
|
|
"-p '$curdir/mksh' -C $check_categories \$*" >>test.sh
|
2006-08-22 22:01:59 +00:00
|
|
|
chmod 755 test.sh
|
2006-08-28 01:30:37 +00:00
|
|
|
i=install
|
|
|
|
test -f /usr/ucb/$i && i=/usr/ucb/$i
|
2007-05-28 13:47:09 +00:00
|
|
|
test $eq = 1 && e=:
|
2005-05-25 23:44:50 +00:00
|
|
|
$e
|
2006-08-12 18:49:21 +00:00
|
|
|
$e Installing the shell:
|
2006-08-28 01:30:37 +00:00
|
|
|
$e "# $i -c -s -o root -g bin -m 555 mksh /bin/mksh"
|
2007-01-17 17:31:59 +00:00
|
|
|
$e "# grep -x /bin/mksh /etc/shells >/dev/null || echo /bin/mksh >>/etc/shells"
|
2006-08-28 01:30:37 +00:00
|
|
|
$e "# $i -c -o root -g bin -m 444 dot.mkshrc /usr/share/doc/mksh/examples/"
|
2005-05-25 23:44:50 +00:00
|
|
|
$e
|
|
|
|
$e Installing the manual:
|
2006-08-26 20:48:29 +00:00
|
|
|
if test -f mksh.cat1; then
|
2006-08-28 01:30:37 +00:00
|
|
|
$e "# $i -c -o root -g bin -m 444 mksh.cat1" \
|
2005-05-23 16:48:52 +00:00
|
|
|
"/usr/share/man/cat1/mksh.0"
|
2005-05-25 23:44:50 +00:00
|
|
|
$e or
|
2005-05-23 16:48:52 +00:00
|
|
|
fi
|
2006-08-28 01:30:37 +00:00
|
|
|
$e "# $i -c -o root -g bin -m 444 mksh.1 /usr/share/man/man1/mksh.1"
|
2006-08-22 22:01:59 +00:00
|
|
|
$e
|
|
|
|
$e Run the regression test suite: ./test.sh
|
2006-08-28 01:37:29 +00:00
|
|
|
$e Please also read the sample file dot.mkshrc and the fine manual.
|