* Build.sh: add -fwrapv to standard CFLAGS, just to be on the safe

side (I don't have capacities to scan 71711 files in MirOS for a
  standards-compliance whack)
* copyright: mention CVS changelogs as place of contributors' name
  and credit information, too
* check.t, sh.h: bump
This commit is contained in:
tg
2007-01-17 01:24:29 +00:00
parent c480656076
commit 263f518dfd
4 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $MirOS: src/bin/mksh/Build.sh,v 1.111 2007/01/14 21:38:25 tg Exp $
# $MirOS: src/bin/mksh/Build.sh,v 1.112 2007/01/17 01:24:28 tg Exp $
#-
# Environment: CC, CFLAGS, CPP, CPPFLAGS, LDFLAGS, LIBS, NOWARN, NROFF
# With -x (cross compile): TARGET_OS (default: uname -s)
@ -99,7 +99,7 @@ if test -d mksh; then
exit 1
fi
: ${CFLAGS='-O2 -fno-strict-aliasing -Wall'}
: ${CFLAGS='-O2 -fno-strict-aliasing -fwrapv -Wall'}
: ${CC=gcc} ${NROFF=nroff}
curdir=`pwd` srcdir=`dirname "$0"` check_categories=pdksh
echo | $NROFF -v 2>&1 | grep GNU >/dev/null 2>&1 && NROFF="$NROFF -c"