--- gigedit/branches/linuxsampler_org/autogen.sh 2007/03/03 12:20:01 1052 +++ gigedit/trunk/autogen.sh 2007/03/04 21:03:18 1068 @@ -1,7 +1,28 @@ +#!/bin/sh + +if ! which glib-gettextize > /dev/null ; then + echo "Could not find glib-gettextize, make sure libglib2.0(-dev) is installed!" + exit -1 +fi +if ! which aclocal > /dev/null ; then + echo "Could not find aclocal, make sure automake is installed!" + exit -1 +fi +if ! which autoconf > /dev/null ; then + echo "Could not find autoconf, make sure it is installed!" + exit -1 +fi +if ! which autoheader > /dev/null ; then + echo "Could not find autoheader, make sure autoconf is installed!" + exit -1 +fi +if ! which automake > /dev/null ; then + echo "Could not find automake, make sure it is installed!" + exit -1 +fi + glib-gettextize --force -intltoolize --force --automake aclocal autoconf autoheader automake --add-missing -