1998-03-05 00:53:54 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
1999-01-25 03:40:38 +08:00
|
|
|
(cd popt; ./autogen.sh "$@")
|
|
|
|
libtoolize --copy
|
1998-03-05 00:53:54 +08:00
|
|
|
autoheader
|
|
|
|
autoconf
|
|
|
|
|
|
|
|
if [ "$1" = "--noconfigure" ]; then
|
|
|
|
exit 0;
|
|
|
|
fi
|
|
|
|
|
1998-09-06 04:02:08 +08:00
|
|
|
if [ X"$@" = X -a "X`uname -s`" = "XLinux" ]; then
|
1999-01-23 02:42:31 +08:00
|
|
|
./configure --prefix=/usr --disable-shared
|
1998-03-05 00:53:54 +08:00
|
|
|
else
|
|
|
|
./configure "$@"
|
|
|
|
fi
|