1999-04-20 09:12:53 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
1999-10-04 23:20:12 +08:00
|
|
|
case "$1" in
|
|
|
|
--copy)
|
|
|
|
automake_flags=--copy
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
libtoolize --force --automake $automake_flags
|
|
|
|
|
1999-04-20 09:12:53 +08:00
|
|
|
mv aclocal.m4 aclocal.m4.old 2>/dev/null
|
|
|
|
aclocal
|
|
|
|
if cmp aclocal.m4.old aclocal.m4 > /dev/null 2>&1; then
|
1999-07-23 04:20:11 +08:00
|
|
|
echo "buildconf: keeping ${1}aclocal.m4"
|
1999-04-20 09:12:53 +08:00
|
|
|
mv aclocal.m4.old aclocal.m4
|
|
|
|
else
|
1999-07-23 04:20:11 +08:00
|
|
|
echo "buildconf: created or modified ${1}aclocal.m4"
|
1999-04-20 09:12:53 +08:00
|
|
|
fi
|
|
|
|
|
1999-04-21 22:06:58 +08:00
|
|
|
autoheader
|
|
|
|
|
1999-10-04 23:20:12 +08:00
|
|
|
automake --add-missing --include-deps $automake_flags
|
1999-04-21 22:06:58 +08:00
|
|
|
|
1999-04-20 09:12:53 +08:00
|
|
|
mv configure configure.old 2>/dev/null
|
|
|
|
autoconf
|
|
|
|
if cmp configure.old configure > /dev/null 2>&1; then
|
1999-07-23 04:20:11 +08:00
|
|
|
echo "buildconf: keeping ${1}configure"
|
1999-04-20 09:12:53 +08:00
|
|
|
mv configure.old configure
|
|
|
|
else
|
1999-07-23 04:20:11 +08:00
|
|
|
echo "buildconf: created or modified ${1}configure"
|
1999-04-20 09:12:53 +08:00
|
|
|
fi
|
|
|
|
|