13
0
livetrax/libs/sigc++2/autogen.sh
Paul Davis 45d3ec1437 merged with 1697 revision of trunk (which is post-rc1 but pre-rc2
git-svn-id: svn://localhost/ardour2/branches/2.1-staging@1698 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-04-11 13:07:51 +00:00

45 lines
937 B
Bash
Executable File

#! /bin/sh
# check all tools first
if /usr/bin/which libtoolize >/dev/null 2>&1 ; then
:
else
echo "You do not have libtool installed, which is very sadly required to build part of Ardour"
exit 1
fi
if /usr/bin/which automake >/dev/null 2>&1 ; then
:
else
echo "You do not have automake installed, which is very sadly required to build part of Ardour"
exit 1
fi
if /usr/bin/which autoconf >/dev/null 2>&1 ; then
:
else
echo "You do not have autoconf installed, which is very sadly required to build part of Ardour"
exit 1
fi
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
PKG_NAME="sigc++"
echo "Adding libtools."
libtoolize --automake --copy --force
echo "Building macros."
aclocal -I "$srcdir/scripts" $ACLOCAL_FLAGS
#echo "Building config header."
#autoheader
echo "Building makefiles."
automake --add-missing --copy
echo "Building configure."
autoconf
rm -f config.cache