summaryrefslogtreecommitdiff
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2008-05-23 14:32:43 +0000
committerKevin P. Fleming <kpfleming@digium.com>2008-05-23 14:32:43 +0000
commit9288979fd4333f7afbd5a4838b678634f7d8a375 (patch)
treed26759059c2c5a45aa556e055ef3e4ffa52ea13a /bootstrap.sh
parent879dd11beedffead65cb7a3acc4ad99701029584 (diff)
add configure script
git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/trunk@4337 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
new file mode 100755
index 0000000..b26b828
--- /dev/null
+++ b/bootstrap.sh
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+check_for_app() {
+ $1 --version 2>&1 >/dev/null
+ if [ $? != 0 ]
+ then
+ echo "Please install $1 and run bootstrap.sh again!"
+ exit 1
+ fi
+}
+
+AUTOCONF_VERSION=2.59
+AUTOMAKE_VERSION=1.9
+export AUTOCONF_VERSION
+export AUTOMAKE_VERSION
+
+check_for_app autoconf
+check_for_app automake
+check_for_app aclocal
+echo "Generating the configure script ..."
+aclocal 2>/dev/null
+autoconf
+automake --add-missing --copy 2>/dev/null
+
+exit 0