From b7d0f977e0f6bef02103a33aa9e5639d9ea3bfee Mon Sep 17 00:00:00 2001 From: russell Date: Mon, 26 Jun 2006 14:18:42 +0000 Subject: merge autoconf and menuselect support for zaptel Happy birthday to me :) git-svn-id: http://svn.digium.com/svn/zaptel/trunk@1179 5390a7c7-147a-4af0-8ec9-7488f05a26cb --- 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