Bug 72086 - Check for gperf in autogen.sh

This commit is contained in:
Akira TAGOH 2013-12-02 15:53:57 +09:00
parent a5fd7912ff
commit 59fd9960bb
1 changed files with 9 additions and 0 deletions

View File

@ -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/'`