f76fc34c29
Updated libsigc++ from 2.0.6 to 2.0.17. git-svn-id: svn://localhost/ardour2/branches/2.1-staging@1413 d708f5d6-7413-0410-9779-e7cbd77b26cf
24 lines
373 B
Bash
Executable File
24 lines
373 B
Bash
Executable File
#! /bin/sh
|
|
|
|
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
|