Bug 72086 - Check for gperf in autogen.sh
authorAkira TAGOH <akira@tagoh.org>
Mon, 2 Dec 2013 06:53:57 +0000 (15:53 +0900)
committerAkira TAGOH <akira@tagoh.org>
Mon, 2 Dec 2013 06:53:57 +0000 (15:53 +0900)
autogen.sh

index 1482e40..29c1fd2 100755 (executable)
@@ -24,10 +24,19 @@ LIBTOOLIZE=${LIBTOOLIZE-libtoolize}
 AUTOMAKE=${AUTOMAKE-automake}
 AUTOHEADER=${AUTOHEADER-autoheader}
 AUTOCONF=${AUTOCONF-autoconf}
+GPERF=${GPERF-gperf}
 LIBTOOLIZE_FLAGS="--copy --force"
 
 DIE=0
 
+($GPERF --version) < /dev/null > /dev/null 2>&1 || {
+       echo
+       echo "You must have gperf installed to compile $PROJECT."
+       echo "Install the appropriate package for your distribution."
+       echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
+       DIE=1
+}
+
 have_libtool=false
 if $LIBTOOLIZE --version < /dev/null > /dev/null 2>&1 ; then
        libtool_version=`$LIBTOOLIZE --version | sed 's/^.* \([0-9][.][0-9.]*\)[^ ]*$/\1/'`