From 956203ad8df7b68af83ae94f7793a028c74113ee Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Tue, 25 Nov 2008 11:11:49 +0530 Subject: Initial import of gsmsp-0.2a --- gsmsp/resources/tools/chk_bootstrap_prg.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 gsmsp/resources/tools/chk_bootstrap_prg.sh (limited to 'gsmsp/resources/tools/chk_bootstrap_prg.sh') diff --git a/gsmsp/resources/tools/chk_bootstrap_prg.sh b/gsmsp/resources/tools/chk_bootstrap_prg.sh new file mode 100755 index 0000000..ba6a6bf --- /dev/null +++ b/gsmsp/resources/tools/chk_bootstrap_prg.sh @@ -0,0 +1,26 @@ +#! /bin/sh + +DIE=0 +(autoconf --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have autoconf installed." + DIE=1 +} + +# libtool --version check not done... +(libtoolize --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have libtool installed." + DIE=1 +} + +(automake --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have automake installed." + DIE=1 +} + +if test "$DIE" -eq 1; then + exit 1 +fi + -- cgit v1.2.3