mksh/Build.sh

266 lines
5.8 KiB
Bash
Raw Normal View History

2005-05-23 18:48:52 +02:00
#!/bin/sh
# $MirOS: src/bin/mksh/Build.sh,v 1.59 2006/11/08 23:23:40 tg Exp $
#-
# Environment: CC, CFLAGS, CPPFLAGS, LDFLAGS, LIBS, NROFF
2005-05-23 18:48:52 +02:00
v()
{
$e "$*"
eval "$@"
}
2006-08-26 22:48:29 +02:00
addcppf()
{
for i
do
eval CPPFLAGS=\"\$CPPFLAGS -D$i=\$$i\"
done
}
if test -d mksh; then
echo "$0: Error: ./mksh is a directory!" >&2
exit 1
fi
: ${CFLAGS='-O2 -fno-strict-aliasing -Wall'}
: ${CC=gcc} ${NROFF=nroff}
curdir=`pwd` srcdir=`dirname "$0"`
2006-08-12 22:01:35 +02:00
echo | $NROFF -v 2>&1 | grep GNU >&- 2>&- && NROFF="$NROFF -c"
e=echo
q=0
r=0
2006-06-23 17:05:39 +02:00
x=0
for i
do
case $i in
-d)
LDSTATIC=
;;
-q)
e=:
q=1
;;
-r)
r=1
;;
2006-06-23 17:05:39 +02:00
-x)
x=1
;;
*)
echo "$0: Unknown option '$i'!" >&2
exit 1
;;
esac
done
2005-05-23 18:48:52 +02:00
if test $x = 0; then
LDSTATIC=-static
SRCS=
sigseen=
NOWARN=-Wno-error
fi
SRCS="$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"
test $x = 1 || case `uname -s 2>/dev/null || uname` in
CYGWIN*)
LDSTATIC=
sigseen=:
;;
2005-10-25 22:54:29 +02:00
Darwin)
LDSTATIC=
CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64"
2005-10-25 22:54:29 +02:00
;;
Interix)
CPPFLAGS="$CPPFLAGS -D_ALL_SOURCE"
;;
Linux)
SRCS="$SRCS compat.c strlfun.c"
CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=2 -D_BSD_SOURCE -D_GNU_SOURCE"
CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64"
LDSTATIC=
sigseen=:
;;
SunOS)
SRCS="$SRCS compat.c"
CPPFLAGS="$CPPFLAGS -D_BSD_SOURCE -D__EXTENSIONS__"
CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64"
LDSTATIC=
sigseen=:
2006-08-26 22:48:29 +02:00
r=1
;;
esac
2005-05-23 18:48:52 +02:00
if test x"$sigseen" = x:; then
$e Generating list of signal names
2006-08-12 22:30:22 +02:00
NSIG=`printf %d "\`(echo '#include <signal.h>';echo mksh_cfg: NSIG) | \
$CC $CPPFLAGS -E - | grep mksh_cfg | sed 's/^mksh_cfg: //'\`" 2>&-`
test $NSIG -gt 1 || exit 1
echo '#include <signal.h>' | $CC $CPPFLAGS -E -dD - | \
grep '[ ]SIG[A-Z0-9]*[ ]' | \
sed 's/^\(.*[ ]SIG\)\([A-Z0-9]*\)\([ ].*\)$/\2/' | \
while read name; do
2006-08-12 22:30:22 +02:00
( echo '#include <signal.h>'; echo "mksh_cfg: SIG$name" ) | \
$CC $CPPFLAGS -E - | grep mksh_cfg: | \
sed 's/^mksh_cfg: \([0-9]*\).*$/\1:'$name/
done | grep -v '^:' | while IFS=: read nr name; do
nr=`printf %d "$nr" 2>&-`
2006-08-26 22:48:29 +02:00
test $nr -gt 0 && test $nr -lt $NSIG || continue
case $sigseen in
*:$nr:*) ;;
*) echo " { $nr, \"$name\" },"
sigseen=$sigseen$nr:
;;
esac
done >signames.inc
2006-08-26 22:48:29 +02:00
test -f signames.inc || exit 1
fi
$e Scanning for functions... please ignore any errors.
f=arc4random
fu=$(echo $f | tr '[a-z]' '[A-Z]')
test 0 = "$HAVE_$fu" || test 1 = "$HAVE_$fu" ||
{
$e ... $f
cat >scn.c <<-'EOF'
#include <stdlib.h>
int main() { arc4random(); return (0); }
EOF
$CC $CFLAGS $CPPFLAGS $LDFLAGS $NOWARN scn.c $LIBS
2006-08-26 22:48:29 +02:00
if test -f a.out || test -f a.exe; then
eval HAVE_$fu=1
$e "==> $f... yes"
else
eval HAVE_$fu=0
$e "==> $f... no"
fi
rm -f scn.c a.out a.exe
}
f=arc4random_push
fu=$(echo $f | tr '[a-z]' '[A-Z]')
test 0 = "$HAVE_$fu" || test 1 = "$HAVE_$fu" ||
if test 1 = "$HAVE_ARC4RANDOM"; then
$e ... $f
cat >scn.c <<-'EOF'
#include <stdlib.h>
int main() { arc4random_push(1); return (0); }
EOF
$CC $CFLAGS $CPPFLAGS $LDFLAGS $NOWARN scn.c $LIBS
2006-08-26 22:48:29 +02:00
if test -f a.out || test -f a.exe; then
eval HAVE_$fu=1
$e "==> $f... yes"
else
eval HAVE_$fu=0
$e "==> $f... no"
fi
rm -f scn.c a.out a.exe
else
HAVE_ARC4RANDOM_PUSH=0
fi
f=setmode
fu=$(echo $f | tr '[a-z]' '[A-Z]')
test 0 = "$HAVE_$fu" || test 1 = "$HAVE_$fu" ||
{
$e ... $f
cat >scn.c <<-'EOF'
#include <unistd.h>
int main(int ac, char *av[]) { setmode(av[0]); return (0); }
EOF
$CC $CFLAGS $CPPFLAGS $LDFLAGS $NOWARN scn.c $LIBS
if test -f a.out || test -f a.exe; then
eval HAVE_$fu=1
$e "==> $f... yes"
else
eval HAVE_$fu=0
SRCS="$SRCS setmode.c"
$e "==> $f... no"
fi
rm -f scn.c a.out a.exe
}
f=strlcat
fu=$(echo $f | tr '[a-z]' '[A-Z]')
test 0 = "$HAVE_$fu" || test 1 = "$HAVE_$fu" ||
{
$e ... $f
cat >scn.c <<-'EOF'
#include <string.h>
int main(int ac, char *av[]) { strlcat(av[0], av[1], 1); return (0); }
EOF
$CC $CFLAGS $CPPFLAGS $LDFLAGS $NOWARN scn.c $LIBS
if test -f a.out || test -f a.exe; then
eval HAVE_$fu=1
$e "==> $f... yes"
else
eval HAVE_$fu=0
SRCS="$SRCS strlfun.c"
$e "==> $f... no"
fi
rm -f scn.c a.out a.exe
}
f=strlcpy
fu=$(echo $f | tr '[a-z]' '[A-Z]')
test 0 = "$HAVE_$fu" || test 1 = "$HAVE_$fu" ||
{
$e ... $f
cat >scn.c <<-'EOF'
#include <string.h>
int main(int ac, char *av[]) { strlcpy(av[0], av[1], 1); return (0); }
EOF
$CC $CFLAGS $CPPFLAGS $LDFLAGS $NOWARN scn.c $LIBS
if test -f a.out || test -f a.exe; then
eval HAVE_$fu=1
$e "==> $f... yes"
else
eval HAVE_$fu=0
SRCS="$SRCS strlfun.c"
$e "==> $f... no"
fi
rm -f scn.c a.out a.exe
}
$e ... done.
addcppf HAVE_ARC4RANDOM HAVE_ARC4RANDOM_PUSH HAVE_SETMODE \
HAVE_STRLCAT HAVE_STRLCPY
(v "cd '$srcdir' && exec $CC $CFLAGS -I'$curdir' $CPPFLAGS" \
"-DHAVE_CONFIG_H -DCONFIG_H_FILENAME=\\\"sh.h\\\"" \
"$LDFLAGS $LDSTATIC -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
test $r = 1 || v "$NROFF -mdoc <'$srcdir/mksh.1' >mksh.cat1" || \
rm -f mksh.cat1
2006-08-26 22:48:29 +02:00
test $q = 1 || v size $result
2006-09-22 00:09:41 +02:00
case $curdir in
*\ *) echo "#!./mksh" >test.sh ;;
2006-09-22 00:09:41 +02:00
*) echo "#!$curdir/mksh" >test.sh ;;
esac
echo "exec perl '$srcdir/check.pl' -s '$srcdir/check.t'" \
"-p '$curdir/mksh' -C pdksh \$*" >>test.sh
chmod 755 test.sh
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:
$e "# $i -c -s -o root -g bin -m 555 mksh /bin/mksh"
$e "# grep -qx /bin/mksh /etc/shells || echo /bin/mksh >>/etc/shells"
$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
$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
$e "# $i -c -o root -g bin -m 444 mksh.1 /usr/share/man/man1/mksh.1"
$e
$e Run the regression test suite: ./test.sh
$e Please also read the sample file dot.mkshrc and the fine manual.