1998-10-23 02:57:04 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
1999-03-10 10:55:24 +08:00
|
|
|
srcdir="`dirname $0`"
|
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
THEDIR="`pwd`"
|
|
|
|
|
|
|
|
cd "$srcdir"
|
1999-01-26 03:46:40 +08:00
|
|
|
libtoolize --copy --force
|
|
|
|
aclocal
|
1998-10-23 02:57:04 +08:00
|
|
|
autoheader
|
1999-01-26 03:46:40 +08:00
|
|
|
automake
|
1998-10-23 02:57:04 +08:00
|
|
|
autoconf
|
|
|
|
|
|
|
|
if [ "$1" = "--noconfigure" ]; then
|
|
|
|
exit 0;
|
|
|
|
fi
|
|
|
|
|
1999-03-10 10:55:24 +08:00
|
|
|
cd "$THEDIR"
|
|
|
|
|
1999-01-23 02:42:31 +08:00
|
|
|
if [ X"$@" = X -a "X`uname -s`" = "XLinux" ]; then
|
1999-09-30 05:12:45 +08:00
|
|
|
$srcdir/configure --prefix=/usr "$@"
|
1999-01-23 02:42:31 +08:00
|
|
|
else
|
1999-04-12 06:15:26 +08:00
|
|
|
$srcdir/configure "$@"
|
1999-01-23 02:42:31 +08:00
|
|
|
fi
|