From 9288979fd4333f7afbd5a4838b678634f7d8a375 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 23 May 2008 14:32:43 +0000 Subject: add configure script git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/trunk@4337 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- bootstrap.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 bootstrap.sh (limited to 'bootstrap.sh') 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 -- cgit v1.2.3