Bug 72086 - Check for gperf in autogen.sh
This commit is contained in:
parent
a5fd7912ff
commit
59fd9960bb
|
@ -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/'`
|
||||
|
|
Loading…
Reference in New Issue