1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
#!/bin/sh
#set -e
# Before running autogen.sh, you wil need to install: autopoint automake autoconf libtool
# and the developer versions for: libgcrypt-dev libusb-1.0-0-dev
# and also the developer version of: libiconv (this may also be within 'gettext' for some distros).
srcdir=`dirname $0`
ACLOCAL_FLAGS="-I ${srcdir}/m4 ${ACLOCAL_FLAGS}"
fail() {
status=$?
echo "Last command failed with status $status in directory $(pwd)."
echo "Aborting"
exit $status
}
# Refresh GNU autotools toolchain: libtool
echo "Removing libtool cruft"
rm -f ltmain.sh config.guess config.sub
echo "Running libtoolize"
(glibtoolize --version) < /dev/null > /dev/null 2>&1 && LIBTOOLIZE=glibtoolize || LIBTOOLIZE=libtoolize
$LIBTOOLIZE --copy --force || fail
# echo "Running gettextize --force"
# gettextize --force
# Refresh GNU autotools toolchain: aclocal autoheader
echo "Removing aclocal cruft"
rm -f aclocal.m4
echo "Running aclocal $ACLOCAL_FLAGS"
aclocal $ACLOCAL_FLAGS || fail
echo "Removing autoheader cruft"
rm -f config.h.in src/config.h.in
echo "Running autoheader"
autoheader || fail
# Refresh GNU autotools toolchain: automake
echo "Removing automake cruft"
rm -f depcomp install-sh missing mkinstalldirs
rm -f stamp-h*
echo "Running automake"
touch config.rpath
automake --add-missing --gnu || fail
# Refresh GNU autotools toolchain: autoconf
echo "Removing autoconf cruft"
rm -f configure
rm -rf autom4te*.cache/
echo "Running autoconf"
autoconf -f
# Autoupdate config.sub and config.guess
# from GNU CVS
WGET=`which wget`
if [ "x$WGET" != "x" ]; then
echo "Autoupdate config.sub and config.guess (y/n)?"
read IN
if [ "$IN" = "y" ] || [ "$IN" = "Y" ]; then
wget -O config.guess https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
wget -O config.sub https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
chmod +x config.guess config.sub
echo "config.guess and config.sub updated"
fi
else
echo "Could not autoupdate config.sub and config.guess"
fi
if [ ! -z "$NOCONFIGURE" ]; then
echo "autogen.sh finished! ./configure skipped."
exit $?
fi
echo "autogen.sh finished! Now going to run ./configure $@"
./configure $@ || {
echo "./configure failed";
exit 1;
}
|