2005-05-23 18:48:52 +02:00
|
|
|
#!/bin/sh
|
2007-01-11 01:47:40 +01:00
|
|
|
# $MirOS: src/bin/mksh/Build.sh,v 1.87 2007/01/11 00:47:40 tg Exp $
|
2005-05-23 18:56:22 +02:00
|
|
|
#-
|
2006-08-23 00:01:59 +02:00
|
|
|
# Environment: CC, CFLAGS, CPPFLAGS, LDFLAGS, LIBS, NROFF
|
2005-05-23 18:48:52 +02:00
|
|
|
|
2006-12-11 20:58:37 +01:00
|
|
|
# XXX TODO: check for __attribute__ (Minix 3 ACK probably doesn't)
|
|
|
|
# and other gccisms in the code, handle appropriately. Note that I
|
|
|
|
# sometimes _want_ gccisms, because of the improved error checks.
|
|
|
|
|
2006-08-28 03:30:37 +02:00
|
|
|
v()
|
|
|
|
{
|
|
|
|
$e "$*"
|
|
|
|
eval "$@"
|
|
|
|
}
|
|
|
|
|
2006-11-09 01:01:04 +01:00
|
|
|
upper()
|
|
|
|
{
|
|
|
|
echo "$@" | tr qwertyuiopasdfghjklzxcvbnm QWERTYUIOPASDFGHJKLZXCVBNM
|
|
|
|
}
|
|
|
|
|
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`
|
2006-11-09 00:38:28 +01:00
|
|
|
if test x"$2" = x""; then
|
|
|
|
ft=1
|
|
|
|
else
|
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
|
|
|
|
$e "==> $fd... no (cached)"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
if test 1 = "$fv"; then
|
|
|
|
$e "==> $fd... yes (cached)"
|
|
|
|
return
|
|
|
|
fi
|
2006-11-09 00:38:28 +01:00
|
|
|
if test 0 = "$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
|
|
|
|
$e "==> $fd... $fv (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
|
2006-11-10 00:09:05 +01:00
|
|
|
v "$CC $CFLAGS $CPPFLAGS $LDFLAGS $NOWARN scn.c $LIBS" 2>&$v | \
|
|
|
|
sed 's/^/] /'
|
2006-11-09 00:38:28 +01:00
|
|
|
if test -f a.out || test -f a.exe; then
|
|
|
|
eval HAVE_$fu=1
|
2006-11-09 00:45:47 +01:00
|
|
|
$e "==> $fd... yes"
|
2006-11-09 00:38:28 +01:00
|
|
|
else
|
|
|
|
eval HAVE_$fu=0
|
2006-11-09 00:45:47 +01:00
|
|
|
$e "==> $fd... no"
|
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
|
|
|
}
|
|
|
|
|
2006-11-09 00:38:28 +01:00
|
|
|
addsrcs()
|
|
|
|
{
|
|
|
|
eval i=\$$1
|
|
|
|
test 0 = $i && case " $SRCS " in
|
|
|
|
*\ $2\ *) ;;
|
|
|
|
*) SRCS="$SRCS $2" ;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-08-24 22:32:53 +02:00
|
|
|
if test -d mksh; then
|
|
|
|
echo "$0: Error: ./mksh is a directory!" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2006-09-29 21:33:48 +02:00
|
|
|
: ${CFLAGS='-O2 -fno-strict-aliasing -Wall'}
|
2006-08-12 22:19:36 +02:00
|
|
|
: ${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"
|
2006-08-12 20:48:39 +02:00
|
|
|
|
2005-06-09 00:42:31 +02:00
|
|
|
e=echo
|
2006-11-10 00:09:05 +01:00
|
|
|
v=1
|
2005-06-09 00:42:31 +02:00
|
|
|
r=0
|
2006-06-23 17:05:39 +02:00
|
|
|
x=0
|
2006-11-09 23:53:21 +01:00
|
|
|
LDSTATIC=-static
|
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)
|
|
|
|
LDSTATIC=
|
|
|
|
;;
|
|
|
|
-q)
|
|
|
|
e=:
|
2006-11-10 00:09:05 +01:00
|
|
|
v=-
|
2005-06-09 00:42:31 +02:00
|
|
|
;;
|
|
|
|
-r)
|
|
|
|
r=1
|
|
|
|
;;
|
2006-06-23 17:05:39 +02:00
|
|
|
-x)
|
|
|
|
x=1
|
2006-11-09 23:53:21 +01:00
|
|
|
LDSTATIC=
|
2006-06-23 17:05:39 +02:00
|
|
|
;;
|
2005-06-09 00:42:31 +02:00
|
|
|
*)
|
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
|
|
|
|
2006-08-12 21:51:09 +02:00
|
|
|
if test $x = 0; then
|
|
|
|
SRCS=
|
|
|
|
sigseen=
|
|
|
|
fi
|
2006-08-12 20:48:39 +02:00
|
|
|
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"
|
|
|
|
|
2006-08-12 22:19:36 +02:00
|
|
|
test $x = 1 || case `uname -s 2>/dev/null || uname` in
|
2006-08-02 12:41:03 +02:00
|
|
|
CYGWIN*)
|
2006-08-28 03:30:37 +02:00
|
|
|
LDSTATIC=
|
2006-08-12 21:51:09 +02:00
|
|
|
sigseen=:
|
2006-08-02 12:41:03 +02:00
|
|
|
;;
|
2005-10-25 22:54:29 +02:00
|
|
|
Darwin)
|
2006-08-28 03:30:37 +02:00
|
|
|
LDSTATIC=
|
2006-05-27 22:33:01 +02:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64"
|
2005-10-25 22:54:29 +02: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)
|
2006-08-01 14:57:07 +02:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=2 -D_BSD_SOURCE -D_GNU_SOURCE"
|
2006-11-09 00:23:41 +01:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64"
|
2006-08-28 03:30:37 +02:00
|
|
|
LDSTATIC=
|
2006-08-12 21:51:09 +02:00
|
|
|
sigseen=:
|
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"
|
2006-08-28 03:30:37 +02:00
|
|
|
LDSTATIC=
|
2006-08-12 21:51:09 +02:00
|
|
|
sigseen=:
|
2006-08-26 22:48:29 +02:00
|
|
|
r=1
|
2005-06-08 23:51:22 +02:00
|
|
|
;;
|
|
|
|
esac
|
2005-05-23 18:48:52 +02:00
|
|
|
|
2006-08-12 21:51:09 +02:00
|
|
|
if test x"$sigseen" = x:; then
|
|
|
|
$e Generating list of signal names
|
2007-01-11 01:47:40 +01:00
|
|
|
NSIG=`( echo '#include <signal.h>'; echo "mksh_cfg: NSIG" ) | \
|
2007-01-11 01:44:08 +01:00
|
|
|
$CC $CPPFLAGS -E - | grep mksh_cfg | \
|
2007-01-11 01:47:40 +01:00
|
|
|
sed 's/^mksh_cfg: \([0-9x]*\).*$/\1/'`
|
|
|
|
NSIG=`printf %d "$NSIG" 2>&-`
|
2006-08-12 21:51:09 +02:00
|
|
|
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: | \
|
2007-01-11 01:38:37 +01:00
|
|
|
sed 's/^mksh_cfg: \([0-9x]*\).*$/\1:'$name/
|
2006-08-12 21:51:09 +02:00
|
|
|
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
|
2006-08-12 21:51:09 +02:00
|
|
|
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
|
2006-08-12 21:51:09 +02:00
|
|
|
fi
|
2006-08-26 22:30:27 +02:00
|
|
|
|
2006-11-09 00:23:41 +01:00
|
|
|
$e Scanning for functions... please ignore any errors.
|
2006-08-26 22:30:27 +02:00
|
|
|
|
2006-11-10 00:04:34 +01:00
|
|
|
ac_testn compiler_works '' 'if the compiler works' <<-'EOF'
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
test 1 = $HAVE_COMPILER_WORKS || exit 1
|
|
|
|
if test x"$NOWARN" = x""; then
|
|
|
|
NOWARN=-Wno-error
|
|
|
|
ac_testn can_wnoerror '' 'if -Wno-error can be used' <<-'EOF'
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
test 1 = $HAVE_CAN_WNOERROR || NOWARN=
|
|
|
|
fi
|
|
|
|
|
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
|
|
|
#else
|
|
|
|
int main(void) { return (0); }
|
|
|
|
#endif
|
|
|
|
EOF
|
|
|
|
|
2006-11-10 00:04:34 +01:00
|
|
|
if test 0 = $HAVE_MKSH_FULL; then
|
|
|
|
save_CFLAGS=$CFLAGS
|
|
|
|
CFLAGS="$CFLAGS -fno-inline"
|
|
|
|
ac_testn can_fnoinline '' 'if -fno-inline can be used' <<-'EOF'
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
test 1 = $HAVE_CAN_FNOINLINE || CFLAGS=$save_CFLAGS
|
2006-11-10 08:18:58 +01:00
|
|
|
|
|
|
|
HAVE_LANGINFO_CODESET=0
|
2006-11-10 00:04:34 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
save_CFLAGS=$CFLAGS
|
|
|
|
CFLAGS="$CFLAGS -fwhole-program --combine"
|
|
|
|
ac_testn can_fwholepgm '' 'if -fwhole-program --combine can be used' <<-'EOF'
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
test 1 = $HAVE_CAN_FWHOLEPGM || CFLAGS=$save_CFLAGS
|
|
|
|
|
2006-11-12 14:09:09 +01:00
|
|
|
ac_test sys_param_h '' '<sys/param.h>' <<'EOF'
|
|
|
|
#include <sys/param.h>
|
|
|
|
int main(void) { return (0); }
|
|
|
|
EOF
|
|
|
|
|
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
|
|
|
|
2006-11-09 00:45:47 +01:00
|
|
|
ac_test setlocale_ctype '' 'setlocale(LC_CTYPE, "")' <<'EOF'
|
|
|
|
#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
|
|
|
|
|
2006-11-09 23:51:49 +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
|
|
|
|
|
2006-11-09 23:51:49 +01:00
|
|
|
ac_test setmode mksh_full 1 <<-'EOF'
|
2006-11-12 14:35:29 +01:00
|
|
|
#if defined(__MSVCRT__) || defined(__CYGWIN__)
|
|
|
|
#error Win32 setmode() is different from what we need
|
|
|
|
#else
|
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-12 14:08:30 +01:00
|
|
|
#endif
|
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>
|
2006-11-12 14:35:29 +01:00
|
|
|
#include <grp.h>
|
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
|
|
|
|
2006-08-26 22:30:27 +02:00
|
|
|
$e ... done.
|
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
|
2006-08-26 22:30:27 +02:00
|
|
|
|
2006-05-27 22:33:01 +02:00
|
|
|
(v "cd '$srcdir' && exec $CC $CFLAGS -I'$curdir' $CPPFLAGS" \
|
2006-11-09 00:23:41 +01:00
|
|
|
"-DHAVE_CONFIG_H -DCONFIG_H_FILENAME=\\\"sh.h\\\"" \
|
2005-06-09 00:42:31 +02:00
|
|
|
"$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
|
2006-08-12 21:51:09 +02:00
|
|
|
test $r = 1 || v "$NROFF -mdoc <'$srcdir/mksh.1' >mksh.cat1" || \
|
|
|
|
rm -f mksh.cat1
|
2006-11-10 00:09:05 +01:00
|
|
|
test $v = 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'" \
|
2006-08-23 00:01:59 +02:00
|
|
|
"-p '$curdir/mksh' -C pdksh \$*" >>test.sh
|
|
|
|
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"
|
2006-08-12 21:51:09 +02:00
|
|
|
$e "# grep -qx /bin/mksh /etc/shells || 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.
|