mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
Check for gperf at configure time
Edited Arne Babenhauserheide's patch https://debbugs.gnu.org/cgi/bugreport.cgi?bug=51129;att=0;filename=0001-autoconf-Check-for-gperf-if-running-from-git.patch;msg=5. Fixes https://debbugs.gnu.org/cgi/bugreport.cgi?bug=51129.
This commit is contained in:
parent
8c976c6a1f
commit
50d4b50203
1 changed files with 22 additions and 14 deletions
|
@ -123,6 +123,14 @@ else
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Gnulib uses gperf when building from git
|
||||||
|
if ! test -f ".tarball-version"; then
|
||||||
|
AC_CHECK_TOOL([GPERF], [gperf], [no])
|
||||||
|
if test x"$GPERF" = x"no"; then
|
||||||
|
AC_MSG_ERROR([Building from git requires gperf. Please install it.])
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
gl_EARLY
|
gl_EARLY
|
||||||
AC_PROG_CPP
|
AC_PROG_CPP
|
||||||
AC_PROG_SED
|
AC_PROG_SED
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue