2005-05-23 18:48:52 +02:00
|
|
|
#!/bin/sh
|
2007-03-03 22:36:08 +01:00
|
|
|
# $MirOS: src/bin/mksh/Build.sh,v 1.154 2007/03/03 21:36:06 tg Exp $
|
2005-05-23 18:56:22 +02:00
|
|
|
#-
|
2007-01-17 23:55:47 +01:00
|
|
|
# Env: CC, CFLAGS, CPP, CPPFLAGS, LDFLAGS, LIBS, NOWARN, NROFF, TARGET_OS
|
2007-02-18 17:24:13 +01:00
|
|
|
# CPPFLAGS recognised: MKSH_SMALL MKSH_ASSUME_UTF8 MKSH_NEED_MKNOD MKSH_NOPWNAM
|
2005-05-23 18:48:52 +02:00
|
|
|
|
2006-08-28 03:30:37 +02:00
|
|
|
v()
|
|
|
|
{
|
|
|
|
$e "$*"
|
|
|
|
eval "$@"
|
|
|
|
}
|
|
|
|
|
2007-01-12 03:01:48 +01:00
|
|
|
vq()
|
|
|
|
{
|
|
|
|
eval "$@"
|
|
|
|
}
|
|
|
|
|
2007-02-27 01:23:20 +01: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-01-12 02:17:10 +01:00
|
|
|
if test -t 1; then
|
|
|
|
bi=`printf '\033[1m'`
|
2007-01-12 02:32:27 +01:00
|
|
|
ui=`printf '\033[4m'`
|
|
|
|
ao=`printf '\033[0m'`
|
2007-01-12 02:17:10 +01:00
|
|
|
else
|
|
|
|
bi=
|
2007-01-12 02:32:27 +01:00
|
|
|
ui=
|
|
|
|
ao=
|
2007-01-12 02:17:10 +01:00
|
|
|
fi
|
|
|
|
|
2007-01-18 16:50:32 +01:00
|
|
|
allu=QWERTYUIOPASDFGHJKLZXCVBNM
|
|
|
|
alll=qwertyuiopasdfghjklzxcvbnm
|
|
|
|
alln=0123456789
|
2007-02-27 01:31:17 +01:00
|
|
|
alls=______________________________________________________________
|
2007-01-18 16:50:32 +01:00
|
|
|
|
2006-11-09 01:01:04 +01:00
|
|
|
upper()
|
|
|
|
{
|
2007-01-18 16:50:32 +01:00
|
|
|
echo :"$@" | sed 's/^://' | tr $alll $allu
|
2006-11-09 01:01:04 +01:00
|
|
|
}
|
|
|
|
|
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 01:25:40 +01:00
|
|
|
# pipe .c | ac_test[n] label [!] checkif[!]0 [setlabelifcheckis[!]0] useroutput
|
2006-11-09 23:56:09 +01:00
|
|
|
ac_testn()
|
2006-11-09 00:38:28 +01:00
|
|
|
{
|
|
|
|
f=$1
|
2006-11-09 01:06:33 +01: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 01:25:40 +01:00
|
|
|
fc=0
|
2006-11-09 00:38:28 +01: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 01:25:40 +01:00
|
|
|
if test x"$2" = x"!"; then
|
|
|
|
fc=1
|
|
|
|
shift
|
|
|
|
fi
|
2006-11-09 23:56:09 +01:00
|
|
|
eval ft=\$HAVE_`upper $2`
|
2006-11-09 23:51:49 +01:00
|
|
|
shift
|
2006-11-09 00:38:28 +01:00
|
|
|
fi
|
2006-11-09 23:51:49 +01:00
|
|
|
fd=$3
|
|
|
|
test x"$fd" = x"" && fd=$f
|
2006-11-10 08:18:58 +01:00
|
|
|
eval fv=\$HAVE_$fu
|
|
|
|
if test 0 = "$fv"; then
|
2007-01-12 02:32:27 +01:00
|
|
|
$e "$bi==> $fd...$ao ${ui}no$ao (cached)"
|
2006-11-10 08:18:58 +01:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
if test 1 = "$fv"; then
|
2007-01-12 02:32:27 +01:00
|
|
|
$e "$bi==> $fd...$ao ${ui}yes$ao (cached)"
|
2006-11-10 08:18:58 +01: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 01:25:40 +01:00
|
|
|
if test $fc = "$ft"; then
|
2006-11-10 08:18:58 +01:00
|
|
|
fv=$2
|
|
|
|
eval HAVE_$fu=$fv
|
|
|
|
test 0 = "$fv" && fv=no
|
|
|
|
test 1 = "$fv" && fv=yes
|
2007-01-12 02:32:27 +01:00
|
|
|
$e "$bi==> $fd...$ao $ui$fv$ao (implied)"
|
2006-11-09 00:38:28 +01:00
|
|
|
return
|
|
|
|
fi
|
2006-11-09 00:45:47 +01:00
|
|
|
$e ... $fd
|
2006-11-09 00:38:28 +01:00
|
|
|
cat >scn.c
|
2007-01-12 02:27:28 +01:00
|
|
|
v "$CC $CFLAGS $CPPFLAGS $LDFLAGS $NOWARN -I'$srcdir' scn.c $LIBS" \
|
2007-01-12 02:44:32 +01:00
|
|
|
2>&$h | sed 's/^/] /'
|
2006-11-09 00:38:28 +01:00
|
|
|
if test -f a.out || test -f a.exe; then
|
|
|
|
eval HAVE_$fu=1
|
2007-01-12 02:32:27 +01:00
|
|
|
$e "$bi==> $fd...$ao ${ui}yes$ao"
|
2006-11-09 00:38:28 +01:00
|
|
|
else
|
|
|
|
eval HAVE_$fu=0
|
2007-01-12 02:32:27 +01:00
|
|
|
$e "$bi==> $fd...$ao ${ui}no$ao"
|
2006-11-09 00:38:28 +01:00
|
|
|
fi
|
|
|
|
rm -f scn.c a.out a.exe
|
2006-11-09 23:56:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ac_test()
|
|
|
|
{
|
|
|
|
ac_testn "$@"
|
2006-11-09 01:01:04 +01:00
|
|
|
eval CPPFLAGS=\"\$CPPFLAGS -DHAVE_$fu=\$HAVE_$fu\"
|
2006-08-26 22:48:29 +02:00
|
|
|
}
|
|
|
|
|
2007-01-17 17:57:41 +01:00
|
|
|
# ac_flags add varname flags [text]
|
2007-01-17 17:39:55 +01:00
|
|
|
ac_flags()
|
|
|
|
{
|
2007-01-17 17:57:41 +01:00
|
|
|
fa=$1
|
|
|
|
vn=$2
|
|
|
|
f=$3
|
|
|
|
ft=$4
|
2007-01-17 17:39:55 +01:00
|
|
|
test x"$ft" = x"" && ft="if $f can be used"
|
|
|
|
save_CFLAGS=$CFLAGS
|
|
|
|
CFLAGS="$CFLAGS $f"
|
|
|
|
ac_testn can_$vn '' "$ft" <<-'EOF'
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
2007-01-17 17:44:19 +01:00
|
|
|
eval fv=\$HAVE_CAN_`upper $vn`
|
2007-01-17 17:57:41 +01:00
|
|
|
test 11 = $fa$fv || CFLAGS=$save_CFLAGS
|
2007-01-17 17:39:55 +01:00
|
|
|
}
|
|
|
|
|
2007-01-18 16:50:32 +01:00
|
|
|
# ac_header header [prereq ...]
|
|
|
|
ac_header()
|
|
|
|
{
|
|
|
|
hf=$1; shift
|
2007-02-27 01:31:17 +01:00
|
|
|
hv=`echo "$hf" | tr -d '\r\n' | tr -c $alll$allu$alln $alls`
|
2007-01-18 16:50:32 +01: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-09 00:38:28 +01:00
|
|
|
addsrcs()
|
|
|
|
{
|
|
|
|
eval i=\$$1
|
|
|
|
test 0 = $i && case " $SRCS " in
|
|
|
|
*\ $2\ *) ;;
|
|
|
|
*) SRCS="$SRCS $2" ;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2007-01-17 18:42:22 +01:00
|
|
|
|
2006-08-24 22:32:53 +02:00
|
|
|
if test -d mksh; then
|
|
|
|
echo "$0: Error: ./mksh is a directory!" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2007-01-17 18:31:59 +01:00
|
|
|
: ${CC=gcc} ${CPP=false} ${NROFF=nroff}
|
2007-01-11 03:08:50 +01:00
|
|
|
curdir=`pwd` srcdir=`dirname "$0"` check_categories=pdksh
|
2006-08-12 20:48:39 +02:00
|
|
|
|
2005-06-09 00:42:31 +02:00
|
|
|
e=echo
|
2007-01-12 02:44:32 +01:00
|
|
|
h=1
|
2005-06-09 00:42:31 +02:00
|
|
|
r=0
|
2007-01-18 04:31:24 +01:00
|
|
|
s=def
|
2005-06-09 00:42:31 +02:00
|
|
|
|
2006-08-12 22:19:36 +02:00
|
|
|
for i
|
|
|
|
do
|
|
|
|
case $i in
|
2005-06-09 00:42:31 +02:00
|
|
|
-d)
|
2007-01-18 04:31:24 +01:00
|
|
|
s=dyn
|
2005-06-09 00:42:31 +02:00
|
|
|
;;
|
2007-01-17 23:59:25 +01:00
|
|
|
-nd)
|
2007-01-18 04:31:24 +01:00
|
|
|
s=sta
|
2007-01-17 23:59:25 +01:00
|
|
|
;;
|
2005-06-09 00:42:31 +02:00
|
|
|
-q)
|
|
|
|
e=:
|
2007-01-12 02:44:32 +01:00
|
|
|
h=-
|
2005-06-09 00:42:31 +02:00
|
|
|
;;
|
|
|
|
-r)
|
|
|
|
r=1
|
|
|
|
;;
|
|
|
|
*)
|
2006-08-12 22:19:36 +02:00
|
|
|
echo "$0: Unknown option '$i'!" >&2
|
2005-06-09 00:42:31 +02:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2005-05-23 18:48:52 +02:00
|
|
|
|
2007-01-12 03:27:40 +01:00
|
|
|
SRCS="alloc.c edit.c eval.c exec.c expr.c funcs.c histrap.c"
|
2005-05-23 18:48:52 +02:00
|
|
|
SRCS="$SRCS jobs.c lex.c main.c misc.c shf.c syn.c tree.c var.c"
|
|
|
|
|
2007-01-17 18:57:31 +01:00
|
|
|
test $r = 0 && echo | $NROFF -v 2>&1 | grep GNU >/dev/null 2>&1 && \
|
|
|
|
NROFF="$NROFF -c"
|
|
|
|
|
2007-01-17 18:42:22 +01:00
|
|
|
|
2007-01-17 23:55:47 +01:00
|
|
|
test x"$TARGET_OS" = x"" && TARGET_OS=`uname -s 2>/dev/null || uname`
|
2007-02-13 13:26:46 +01:00
|
|
|
warn=
|
2007-01-11 01:57:56 +01:00
|
|
|
case $TARGET_OS in
|
2006-08-02 12:41:03 +02:00
|
|
|
CYGWIN*)
|
2007-01-18 04:31:24 +01:00
|
|
|
test def = $s && s=pam
|
2006-08-02 12:41:03 +02:00
|
|
|
;;
|
2005-10-25 22:54:29 +02:00
|
|
|
Darwin)
|
2006-05-27 22:33:01 +02:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64"
|
2007-01-18 04:31:24 +01:00
|
|
|
test def = $s && s=pam
|
2005-10-25 22:54:29 +02:00
|
|
|
;;
|
2007-01-17 18:46:18 +01:00
|
|
|
DragonFly)
|
|
|
|
;;
|
|
|
|
FreeBSD)
|
|
|
|
;;
|
2007-02-13 13:26:46 +01:00
|
|
|
GNU)
|
|
|
|
warn=' but should work'
|
|
|
|
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64"
|
|
|
|
;;
|
2007-01-28 21:05:29 +01:00
|
|
|
GNU/kFreeBSD)
|
2007-02-13 13:26:46 +01:00
|
|
|
warn=' but should work'
|
2007-02-02 11:27:21 +01:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64"
|
2007-01-28 21:05:29 +01:00
|
|
|
;;
|
2006-03-19 19:06:32 +01:00
|
|
|
Interix)
|
2006-11-09 00:23:41 +01:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_ALL_SOURCE"
|
2006-03-19 19:06:32 +01:00
|
|
|
;;
|
2005-06-08 23:51:22 +02:00
|
|
|
Linux)
|
2007-02-02 11:27:21 +01:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64"
|
2007-01-18 04:31:24 +01:00
|
|
|
test def = $s && s=pam
|
2007-01-28 21:05:29 +01:00
|
|
|
: ${HAVE_REVOKE=0}
|
2005-10-25 21:46:11 +02:00
|
|
|
;;
|
2007-01-17 18:46:18 +01:00
|
|
|
MirBSD)
|
|
|
|
;;
|
|
|
|
NetBSD)
|
|
|
|
;;
|
|
|
|
OpenBSD)
|
|
|
|
;;
|
2005-10-25 21:46:11 +02:00
|
|
|
SunOS)
|
2006-09-14 01:07:10 +02:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_BSD_SOURCE -D__EXTENSIONS__"
|
2006-11-09 00:23:41 +01:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64"
|
2007-01-18 04:31:24 +01:00
|
|
|
test def = $s && s=pam
|
2006-08-26 22:48:29 +02:00
|
|
|
r=1
|
2005-06-08 23:51:22 +02:00
|
|
|
;;
|
2007-01-17 18:46:18 +01:00
|
|
|
*)
|
2007-02-13 13:26:46 +01:00
|
|
|
warn='; it may or may not work'
|
2007-01-17 18:46:18 +01:00
|
|
|
;;
|
2005-06-08 23:51:22 +02:00
|
|
|
esac
|
2005-05-23 18:48:52 +02:00
|
|
|
|
2007-02-13 13:26:46 +01: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-12 02:27:28 +01:00
|
|
|
CPPFLAGS="$CPPFLAGS -I'$curdir'"
|
2007-01-17 18:42:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Begin of mirtoconf checks
|
|
|
|
#
|
2007-01-18 16:50:32 +01:00
|
|
|
rm -f scn.c a.out a.exe x
|
2007-01-12 02:32:27 +01:00
|
|
|
$e ${ao}Scanning for functions... please ignore any errors.
|
2006-08-26 22:30:27 +02:00
|
|
|
|
2007-01-17 18:42:22 +01:00
|
|
|
#
|
|
|
|
# Compiler: works as-is, with -Wno-error and -Werror
|
|
|
|
#
|
2007-01-11 03:37:40 +01:00
|
|
|
test x"$NOWARN" = x"" && NOWARN=-Wno-error
|
2007-01-17 17:57:41 +01:00
|
|
|
save_NOWARN=$NOWARN
|
2007-01-17 17:52:00 +01:00
|
|
|
NOWARN=
|
2007-01-17 17:57:41 +01:00
|
|
|
ac_flags 0 compiler_works '' 'if the compiler works'
|
2007-01-17 17:52:00 +01:00
|
|
|
test 1 = $HAVE_CAN_COMPILER_WORKS || exit 1
|
2007-01-17 17:57:41 +01:00
|
|
|
ac_flags 0 wnoerror "$save_NOWARN"
|
|
|
|
test 1 = $HAVE_CAN_WNOERROR || save_NOWARN=
|
|
|
|
ac_flags 0 werror "-Werror"
|
2007-01-17 17:52:00 +01:00
|
|
|
|
|
|
|
# The following tests are run with -Werror if possible
|
|
|
|
test 1 = $HAVE_CAN_WERROR && NOWARN=-Werror
|
2007-01-12 02:49:29 +01:00
|
|
|
|
2007-01-17 18:42:22 +01:00
|
|
|
#
|
|
|
|
# Compiler: check for stuff that only generates warnings
|
|
|
|
#
|
2007-01-12 02:49:29 +01:00
|
|
|
ac_test attribute '' 'if we have __attribute__((...)) at all' <<-'EOF'
|
|
|
|
#include <stdlib.h>
|
|
|
|
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>
|
|
|
|
int xcopy(const void *, void *, size_t)
|
|
|
|
__attribute__((bounded (buffer, 1, 3)))
|
|
|
|
__attribute__((bounded (buffer, 2, 3)));
|
2007-01-12 03:37:32 +01:00
|
|
|
int main(int ac, char *av[]) { return (xcopy(av[0], av[--ac], 1)); }
|
2007-01-12 02:49:29 +01: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 17:52:00 +01:00
|
|
|
# End of tests run with -Werror
|
2007-01-17 17:57:41 +01:00
|
|
|
NOWARN=$save_NOWARN
|
2007-01-12 02:49:29 +01:00
|
|
|
|
2007-01-17 18:42:22 +01:00
|
|
|
#
|
|
|
|
# Compiler: extra flags (-O2 -f* -W* etc.)
|
|
|
|
#
|
2007-01-18 16:50:32 +01:00
|
|
|
i=`echo :"$CFLAGS" | sed 's/^://' | tr -c -d $alll$allu$alln-`
|
2007-01-17 18:31:59 +01:00
|
|
|
test x"$i" = x"" && ac_flags 1 otwo "-O2"
|
|
|
|
ac_flags 1 fnostrictaliasing "-fno-strict-aliasing"
|
2007-01-17 18:42:22 +01:00
|
|
|
ac_flags 1 fwholepgm "-fwhole-program --combine"
|
2007-01-17 18:31:59 +01:00
|
|
|
ac_flags 1 fwrapv "-fwrapv"
|
2007-01-17 18:42:22 +01:00
|
|
|
# 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'
|
2007-01-17 18:31:59 +01:00
|
|
|
ac_flags 1 wall "-Wall"
|
|
|
|
|
2007-01-17 18:42:22 +01:00
|
|
|
#
|
|
|
|
# mksh: flavours (full/small mksh, omit certain stuff)
|
|
|
|
#
|
2006-11-09 23:56:09 +01:00
|
|
|
ac_testn mksh_full '' "if we're building without MKSH_SMALL" <<-'EOF'
|
2006-11-09 23:51:49 +01:00
|
|
|
#ifdef MKSH_SMALL
|
2006-11-21 22:45:24 +01:00
|
|
|
#error OK, we are building an extra small mksh.
|
2006-11-09 23:51:49 +01:00
|
|
|
#endif
|
2007-01-12 03:40:18 +01:00
|
|
|
int main(void) { return (0); }
|
2006-11-09 23:51:49 +01:00
|
|
|
EOF
|
|
|
|
|
2007-02-18 17:24:13 +01: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 18:42:22 +01: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-10 00:04:34 +01:00
|
|
|
if test 0 = $HAVE_MKSH_FULL; then
|
2007-01-17 17:57:41 +01:00
|
|
|
ac_flags 1 fnoinline "-fno-inline"
|
2006-11-10 08:18:58 +01:00
|
|
|
|
2007-01-12 03:46:27 +01:00
|
|
|
: ${HAVE_SETLOCALE_CTYPE=0}
|
2007-01-11 03:08:50 +01:00
|
|
|
check_categories=$check_categories,smksh
|
2006-11-10 00:04:34 +01:00
|
|
|
fi
|
|
|
|
|
2007-01-17 18:42:22 +01:00
|
|
|
#
|
|
|
|
# Environment: headers
|
|
|
|
#
|
2007-01-18 16:50:32 +01:00
|
|
|
ac_header sys/param.h
|
|
|
|
ac_header sys/mkdev.h
|
|
|
|
ac_header sys/sysmacros.h
|
|
|
|
ac_header libgen.h
|
|
|
|
ac_header paths.h
|
|
|
|
ac_header stdbool.h
|
|
|
|
ac_header grp.h sys/types.h
|
|
|
|
ac_header ulimit.h
|
|
|
|
ac_header values.h
|
2007-01-17 23:51:47 +01:00
|
|
|
|
2007-01-18 00:18:55 +01: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 01:16:26 +01:00
|
|
|
# only testn: added later below
|
2007-01-18 00:54:39 +01: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 01:16:26 +01:00
|
|
|
if test 1 = $HAVE___SIGHANDLER_T; then
|
2007-01-18 00:54:39 +01:00
|
|
|
CPPFLAGS="$CPPFLAGS -Dsig_t=__sighandler_t"
|
|
|
|
HAVE_SIG_T=1
|
|
|
|
fi
|
|
|
|
|
2007-01-18 01:10:16 +01:00
|
|
|
CPPFLAGS="$CPPFLAGS -DHAVE_SIG_T=$HAVE_SIG_T"
|
|
|
|
|
2007-01-17 18:42:22 +01:00
|
|
|
#
|
|
|
|
# Environment: signals
|
|
|
|
#
|
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 01:25:40 +01:00
|
|
|
ac_test mksh_signame '' 'our own list of signal names' <<-'EOF'
|
|
|
|
#include <stdlib.h> /* for NULL */
|
|
|
|
#define MKSH_SIGNAMES_CHECK
|
|
|
|
#include "signames.c"
|
2007-01-12 02:27:28 +01:00
|
|
|
int main(void) { return (mksh_sigpairs[0].nr); }
|
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 01:25:40 +01:00
|
|
|
EOF
|
|
|
|
|
|
|
|
ac_test sys_signame '!' mksh_signame 0 'the sys_signame[] array' <<-'EOF'
|
|
|
|
extern const char *const sys_signame[];
|
|
|
|
int main(void) { return (sys_signame[0][0]); }
|
|
|
|
EOF
|
|
|
|
|
|
|
|
ac_test _sys_signame '!' sys_signame 0 'the _sys_signame[] array' <<-'EOF'
|
|
|
|
extern const char *const _sys_signame[];
|
|
|
|
int main(void) { return (_sys_signame[0][0]); }
|
|
|
|
EOF
|
|
|
|
|
|
|
|
if test 000 = $HAVE_SYS_SIGNAME$HAVE__SYS_SIGNAME$HAVE_MKSH_SIGNAME; then
|
|
|
|
NEED_MKSH_SIGNAME=1
|
|
|
|
else
|
|
|
|
NEED_MKSH_SIGNAME=0
|
|
|
|
fi
|
|
|
|
|
2007-01-18 01:16:26 +01:00
|
|
|
# only testn: added later below
|
2007-01-18 00:50:26 +01:00
|
|
|
ac_testn sys_siglist '' 'the sys_siglist[] array' <<-'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 01:25:40 +01:00
|
|
|
extern const char *const sys_siglist[];
|
|
|
|
int main(void) { return (sys_siglist[0][0]); }
|
|
|
|
EOF
|
|
|
|
|
2007-01-18 00:47:15 +01:00
|
|
|
ac_testn _sys_siglist '!' sys_siglist 0 'the _sys_siglist[] array' <<-'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 01:25:40 +01:00
|
|
|
extern const char *const _sys_siglist[];
|
|
|
|
int main(void) { return (_sys_siglist[0][0]); }
|
|
|
|
EOF
|
2007-01-18 00:47:15 +01:00
|
|
|
if test 1 = $HAVE__SYS_SIGLIST; then
|
2007-01-18 00:50:26 +01:00
|
|
|
CPPFLAGS="$CPPFLAGS -Dsys_siglist=_sys_siglist"
|
2007-01-18 00:54:39 +01:00
|
|
|
HAVE_SYS_SIGLIST=1
|
2007-01-18 00:47:15 +01:00
|
|
|
fi
|
2007-01-18 00:50:26 +01:00
|
|
|
CPPFLAGS="$CPPFLAGS -DHAVE_SYS_SIGLIST=$HAVE_SYS_SIGLIST"
|
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 01:25:40 +01:00
|
|
|
|
2007-01-18 00:47:15 +01: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 01:25:40 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
int main(void) { return (strsignal(1)[0]); }
|
|
|
|
EOF
|
|
|
|
|
2007-01-17 18:42:22 +01:00
|
|
|
#
|
|
|
|
# Environment: library functions
|
|
|
|
#
|
2006-11-09 00:38:28 +01:00
|
|
|
ac_test arc4random <<-'EOF'
|
|
|
|
#include <stdlib.h>
|
2006-11-12 14:35:29 +01:00
|
|
|
int main(void) { return (arc4random()); }
|
2006-11-09 00:38:28 +01:00
|
|
|
EOF
|
2006-08-26 22:30:27 +02:00
|
|
|
|
2006-11-09 23:51:49 +01:00
|
|
|
ac_test arc4random_push arc4random 0 <<-'EOF'
|
2006-11-09 00:38:28 +01:00
|
|
|
#include <stdlib.h>
|
2006-11-09 01:01:04 +01:00
|
|
|
int main(void) { arc4random_push(1); return (0); }
|
2006-11-09 00:38:28 +01:00
|
|
|
EOF
|
2006-08-26 22:30:27 +02:00
|
|
|
|
2007-01-18 17:05:05 +01:00
|
|
|
ac_test flock_ex '' 'flock and LOCK_EX' <<-'EOF'
|
2007-01-18 21:40:39 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/file.h>
|
2007-01-18 17:05:05 +01:00
|
|
|
#include <fcntl.h>
|
|
|
|
int main(void) { return (flock(0, LOCK_EX)); }
|
|
|
|
EOF
|
|
|
|
|
2007-02-18 17:24:13 +01:00
|
|
|
ac_test setlocale_ctype '!' mksh_defutf8 0 'setlocale(LC_CTYPE, "")' <<-'EOF'
|
2006-11-09 00:45:47 +01:00
|
|
|
#include <locale.h>
|
2006-11-12 14:49:22 +01:00
|
|
|
#include <stddef.h>
|
|
|
|
int main(void) { return ((ptrdiff_t)(void *)setlocale(LC_CTYPE, "")); }
|
2006-11-09 00:45:47 +01: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 01:25:40 +01:00
|
|
|
ac_test langinfo_codeset setlocale_ctype 0 'nl_langinfo(CODESET)' <<-'EOF'
|
2006-11-09 00:45:47 +01:00
|
|
|
#include <langinfo.h>
|
2006-11-12 14:49:22 +01:00
|
|
|
#include <stddef.h>
|
|
|
|
int main(void) { return ((ptrdiff_t)(void *)nl_langinfo(CODESET)); }
|
2006-11-09 00:45:47 +01:00
|
|
|
EOF
|
|
|
|
|
2007-01-26 19:25:01 +01:00
|
|
|
ac_test revoke mksh_full 0 <<-'EOF'
|
2007-01-18 00:27:47 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
int main(int ac, char *av[]) { return (ac + revoke(av[0])); }
|
|
|
|
EOF
|
|
|
|
|
2007-02-18 17:24:13 +01:00
|
|
|
ac_test setmode mksh_need_mknod 1 <<-'EOF'
|
2006-11-12 14:35:29 +01:00
|
|
|
#if defined(__MSVCRT__) || defined(__CYGWIN__)
|
|
|
|
#error Win32 setmode() is different from what we need
|
2007-01-12 03:40:18 +01:00
|
|
|
#endif
|
2006-11-09 00:38:28 +01:00
|
|
|
#include <unistd.h>
|
2006-11-12 14:38:40 +01:00
|
|
|
int main(int ac, char *av[]) { return (getmode(setmode(av[0]), ac)); }
|
2006-11-09 00:38:28 +01:00
|
|
|
EOF
|
2006-11-09 00:23:41 +01:00
|
|
|
|
2006-11-12 13:56:10 +01: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 16:50:32 +01:00
|
|
|
#if HAVE_GRP_H
|
2006-11-12 14:35:29 +01:00
|
|
|
#include <grp.h>
|
2007-01-18 16:50:32 +01:00
|
|
|
#endif
|
2006-11-12 13:56:10 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
int main(void) { gid_t gid = 0; return (setgroups(0, &gid)); }
|
|
|
|
EOF
|
|
|
|
|
2006-11-12 14:15:27 +01:00
|
|
|
ac_test strcasestr <<-'EOF'
|
2006-11-12 14:49:22 +01:00
|
|
|
#include <stddef.h>
|
2006-11-12 14:15:27 +01:00
|
|
|
#include <string.h>
|
2006-11-12 14:49:22 +01:00
|
|
|
int main(int ac, char *av[]) {
|
|
|
|
return ((ptrdiff_t)(void *)strcasestr(*av, av[ac]));
|
|
|
|
}
|
2006-11-12 14:15:27 +01:00
|
|
|
EOF
|
|
|
|
|
2006-11-09 00:38:28 +01:00
|
|
|
ac_test strlcpy <<-'EOF'
|
|
|
|
#include <string.h>
|
2006-11-12 14:35:29 +01:00
|
|
|
int main(int ac, char *av[]) { return (strlcpy(*av, av[1], ac)); }
|
2006-11-09 00:38:28 +01:00
|
|
|
EOF
|
2006-11-09 00:23:41 +01:00
|
|
|
|
2007-01-17 22:42:23 +01:00
|
|
|
#
|
|
|
|
# other checks
|
|
|
|
#
|
|
|
|
ac_test multi_idstring '' 'if we can use __RCSID(x) multiple times' <<-'EOF'
|
|
|
|
#include "sh.h"
|
|
|
|
__RCSID("one");
|
|
|
|
__RCSID("two");
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
|
2007-03-03 22:36:08 +01:00
|
|
|
ac_test persistent_history mksh_full 0 'if to use persistent history' <<-'EOF'
|
|
|
|
#if !HAVE_FLOCK_EX || defined(MKSH_SMALL)
|
|
|
|
#error No, some prerequisites are missing.
|
|
|
|
#endif
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
test 1 = $HAVE_PERSISTENT_HISTORY || \
|
|
|
|
check_categories=$check_categories,no-histfile
|
|
|
|
|
2007-01-17 18:42:22 +01:00
|
|
|
#
|
|
|
|
# Compiler: Praeprocessor (only if needed)
|
|
|
|
#
|
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 01:25:40 +01:00
|
|
|
if test 1 = $NEED_MKSH_SIGNAME; then
|
2007-01-17 18:31:59 +01:00
|
|
|
$e ... checking how to run the C Preprocessor
|
2007-01-17 18:12:43 +01:00
|
|
|
save_CPP=$CPP
|
2007-01-17 23:35:09 +01:00
|
|
|
for i in "$save_CPP" "$CC -E -" "cpp" "/usr/libexec/cpp" "/lib/cpp"; do
|
2007-01-17 18:12:43 +01:00
|
|
|
CPP=$i
|
|
|
|
test x"$CPP" = x"false" && continue
|
2007-01-17 18:08:34 +01:00
|
|
|
( ( echo '#if (23 * 2 - 2) == (fnord + 2)'
|
|
|
|
echo mksh_rules: fnord
|
|
|
|
echo '#endif'
|
|
|
|
) | v "$CPP $CPPFLAGS -Dfnord=42 >x" ) 2>&$h | sed 's/^/] /'
|
|
|
|
grep '^mksh_rules:.*42' x >/dev/null 2>&1 || CPP=false
|
2007-01-12 03:01:48 +01:00
|
|
|
rm -f x
|
2007-01-17 18:12:43 +01:00
|
|
|
test x"$CPP" = x"false" || break
|
|
|
|
done
|
2007-01-12 02:32:27 +01:00
|
|
|
$e "$bi==> checking how to run the C Preprocessor...$ao $ui$CPP$ao"
|
2007-01-17 18:08:34 +01:00
|
|
|
test x"$CPP" = x"false" && exit 1
|
2007-01-11 03:37:40 +01:00
|
|
|
fi
|
|
|
|
|
2007-01-17 18:42:22 +01:00
|
|
|
#
|
|
|
|
# End of mirtoconf checks
|
|
|
|
#
|
2006-08-26 22:30:27 +02:00
|
|
|
$e ... done.
|
2007-01-11 03:41:53 +01:00
|
|
|
|
2007-01-18 02:10:55 +01: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 18:42:22 +01:00
|
|
|
|
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 01:25:40 +01:00
|
|
|
if test 1 = $NEED_MKSH_SIGNAME; then
|
2007-01-11 04:03:34 +01:00
|
|
|
$e Generating list of signal names...
|
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 01:25:40 +01:00
|
|
|
sigseen=:
|
2007-01-17 18:31:59 +01:00
|
|
|
NSIG=`( echo '#include <signal.h>'; echo mksh_cfg: NSIG ) | \
|
2007-01-12 03:01:48 +01:00
|
|
|
vq "$CPP $CPPFLAGS" | grep mksh_cfg: | \
|
2007-01-11 03:41:53 +01:00
|
|
|
sed 's/^mksh_cfg: \([0-9x]*\).*$/\1/'`
|
2007-01-12 03:01:48 +01:00
|
|
|
NSIG=`printf %d "$NSIG" 2>/dev/null`
|
2007-01-12 03:09:10 +01:00
|
|
|
test $h = 1 && printf "NSIG=$NSIG ... "
|
2007-01-11 03:41:53 +01:00
|
|
|
test $NSIG -gt 1 || exit 1
|
2007-01-12 03:01:48 +01:00
|
|
|
echo '#include <signal.h>' | vq "$CPP $CPPFLAGS -dD" | \
|
2007-01-11 03:41:53 +01:00
|
|
|
grep '[ ]SIG[A-Z0-9]*[ ]' | \
|
|
|
|
sed 's/^\(.*[ ]SIG\)\([A-Z0-9]*\)\([ ].*\)$/\2/' | \
|
|
|
|
while read name; do
|
2007-01-17 18:31:59 +01:00
|
|
|
( echo '#include <signal.h>'; echo mksh_cfg: SIG$name ) | \
|
2007-01-12 03:01:48 +01:00
|
|
|
vq "$CPP $CPPFLAGS" | grep mksh_cfg: | \
|
2007-01-11 03:41:53 +01:00
|
|
|
sed 's/^mksh_cfg: \([0-9x]*\).*$/\1:'$name/
|
|
|
|
done | grep -v '^:' | while IFS=: read nr name; do
|
2007-01-12 03:01:48 +01:00
|
|
|
nr=`printf %d "$nr" 2>/dev/null`
|
2007-01-11 03:41:53 +01:00
|
|
|
test $nr -gt 0 && test $nr -lt $NSIG || continue
|
|
|
|
case $sigseen in
|
|
|
|
*:$nr:*) ;;
|
|
|
|
*) echo " { $nr, \"$name\" },"
|
|
|
|
sigseen=$sigseen$nr:
|
2007-01-12 03:12:16 +01:00
|
|
|
test $h = 1 && printf "$nr " >&2
|
2007-01-11 03:41:53 +01:00
|
|
|
;;
|
|
|
|
esac
|
2007-01-12 03:12:16 +01:00
|
|
|
done 2>&1 >signames.inc
|
2007-01-12 03:01:48 +01:00
|
|
|
grep ', ' signames.inc >/dev/null 2>&1 || exit 1
|
2007-01-11 04:03:34 +01:00
|
|
|
$e done.
|
2007-01-11 03:41:53 +01:00
|
|
|
fi
|
|
|
|
|
2006-11-09 00:38:28 +01:00
|
|
|
addsrcs HAVE_SETMODE setmode.c
|
2006-11-12 14:15:27 +01:00
|
|
|
addsrcs HAVE_STRCASESTR strcasestr.c
|
2006-11-09 00:38:28 +01:00
|
|
|
addsrcs HAVE_STRLCPY strlfun.c
|
2007-01-12 02:27:28 +01:00
|
|
|
CPPFLAGS="$CPPFLAGS -DHAVE_CONFIG_H -DCONFIG_H_FILENAME=\\\"sh.h\\\""
|
2006-08-26 22:30:27 +02:00
|
|
|
|
2007-01-18 04:31:24 +01:00
|
|
|
case $s:$HAVE_MKSH_NOPAM in
|
|
|
|
def:*|sta:*|pam:1)
|
|
|
|
LDFLAGS="$LDFLAGS -static" ;;
|
2007-01-17 23:59:25 +01:00
|
|
|
esac
|
2007-01-12 02:27:28 +01:00
|
|
|
(v "cd '$srcdir' && exec $CC $CFLAGS $CPPFLAGS" \
|
2007-01-18 04:31:24 +01:00
|
|
|
"$LDFLAGS -o '$curdir/mksh' $SRCS $LIBS") || exit 1
|
2006-08-26 22:48:29 +02:00
|
|
|
result=mksh
|
|
|
|
test -f mksh.exe && result=mksh.exe
|
|
|
|
test -f $result || exit 1
|
2006-08-12 21:51:09 +02:00
|
|
|
test $r = 1 || v "$NROFF -mdoc <'$srcdir/mksh.1' >mksh.cat1" || \
|
|
|
|
rm -f mksh.cat1
|
2007-01-12 02:44:32 +01:00
|
|
|
test $h = 1 && v size $result
|
2006-09-22 00:09:41 +02:00
|
|
|
case $curdir in
|
2006-09-22 00:12:05 +02:00
|
|
|
*\ *) echo "#!./mksh" >test.sh ;;
|
2006-09-22 00:09:41 +02:00
|
|
|
*) echo "#!$curdir/mksh" >test.sh ;;
|
|
|
|
esac
|
2006-08-12 20:43:55 +02:00
|
|
|
echo "exec perl '$srcdir/check.pl' -s '$srcdir/check.t'" \
|
2007-01-11 03:08:50 +01:00
|
|
|
"-p '$curdir/mksh' -C $check_categories \$*" >>test.sh
|
2006-08-23 00:01:59 +02:00
|
|
|
chmod 755 test.sh
|
2006-08-28 03:30:37 +02:00
|
|
|
i=install
|
|
|
|
test -f /usr/ucb/$i && i=/usr/ucb/$i
|
2005-05-26 01:44:50 +02:00
|
|
|
$e
|
2006-08-12 20:49:21 +02:00
|
|
|
$e Installing the shell:
|
2006-08-28 03:30:37 +02:00
|
|
|
$e "# $i -c -s -o root -g bin -m 555 mksh /bin/mksh"
|
2007-01-17 18:31:59 +01:00
|
|
|
$e "# grep -x /bin/mksh /etc/shells >/dev/null || echo /bin/mksh >>/etc/shells"
|
2006-08-28 03:30:37 +02:00
|
|
|
$e "# $i -c -o root -g bin -m 444 dot.mkshrc /usr/share/doc/mksh/examples/"
|
2005-05-26 01:44:50 +02:00
|
|
|
$e
|
|
|
|
$e Installing the manual:
|
2006-08-26 22:48:29 +02:00
|
|
|
if test -f mksh.cat1; then
|
2006-08-28 03:30:37 +02:00
|
|
|
$e "# $i -c -o root -g bin -m 444 mksh.cat1" \
|
2005-05-23 18:48:52 +02:00
|
|
|
"/usr/share/man/cat1/mksh.0"
|
2005-05-26 01:44:50 +02:00
|
|
|
$e or
|
2005-05-23 18:48:52 +02:00
|
|
|
fi
|
2006-08-28 03:30:37 +02:00
|
|
|
$e "# $i -c -o root -g bin -m 444 mksh.1 /usr/share/man/man1/mksh.1"
|
2006-08-23 00:01:59 +02:00
|
|
|
$e
|
|
|
|
$e Run the regression test suite: ./test.sh
|
2006-08-28 03:37:29 +02:00
|
|
|
$e Please also read the sample file dot.mkshrc and the fine manual.
|