summaryrefslogtreecommitdiff
path: root/libs/sigc++2/autogen.sh
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-03-18 06:07:08 +0000
committerDavid Robillard <d@drobilla.net>2007-03-18 06:07:08 +0000
commit99904735e066804358f1d0bd138a84f1e9ecda91 (patch)
tree71a924cf1660b5b00231275bd481bbd27094dd9b /libs/sigc++2/autogen.sh
parenteb270e70a12c410cdd98585ad25bb6d8e384a4f5 (diff)
Merged with trunk R1612.
git-svn-id: svn://localhost/ardour2/branches/midi@1614 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/sigc++2/autogen.sh')
-rwxr-xr-xlibs/sigc++2/autogen.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/libs/sigc++2/autogen.sh b/libs/sigc++2/autogen.sh
index ebb519d373..09597765c6 100755
--- a/libs/sigc++2/autogen.sh
+++ b/libs/sigc++2/autogen.sh
@@ -1,5 +1,26 @@
#! /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=.