Improve autogen.sh.

This commit is contained in:
gb 2010-03-19 17:13:59 +00:00
parent 69f2b146f7
commit 8b93bb8b2a

View file

@ -1,4 +1,16 @@
#! /bin/sh
#!/bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
PROJECT=gstreamer-vaapi
TEST_TYPE=-d
FILE=gst-libs
test $TEST_TYPE $FILE || {
echo "You must run this script in the top-level $PROJECT directory"
exit 1
}
GTKDOCIZE=`which gtkdocize`
if test -z $GTKDOCIZE; then
@ -16,5 +28,12 @@ else
&& mv gtk-doc.temp gtk-doc.make
fi
autoreconf -v --install
./configure "$@"
AUTORECONF=`which autoreconf`
if test -z $AUTORECONF; then
echo "*** No autoreconf found ***"
exit 1
else
ACLOCAL="${ACLOCAL-aclocal} $ACLOCAL_FLAGS" autoreconf -v --install || exit $?
fi
./configure "$@" && echo "Now type 'make' to compile $PROJECT."