mirror of
https://github.com/systemd/systemd.git
synced 2025-01-10 05:18:17 +03:00
build-sys: make gperf configure check fatal
and document the new build requirement.
This commit is contained in:
parent
b38bb49379
commit
b62cfcea00
1
README
1
README
@ -50,6 +50,7 @@ REQUIREMENTS:
|
||||
automake
|
||||
autoconf
|
||||
libtool
|
||||
gperf
|
||||
make, gcc, and similar tools
|
||||
|
||||
During runtime you need the following dependencies:
|
||||
|
@ -62,6 +62,9 @@ AC_PROG_GCC_TRADITIONAL
|
||||
AC_CHECK_TOOL(OBJCOPY, objcopy)
|
||||
AC_CHECK_TOOL(STRINGS, strings)
|
||||
AC_CHECK_TOOL(GPERF, gperf)
|
||||
if test -z "$GPERF" ; then
|
||||
AC_MSG_ERROR([*** gperf not found])
|
||||
fi
|
||||
|
||||
CC_CHECK_CFLAGS_APPEND([ \
|
||||
-pipe \
|
||||
|
Loading…
Reference in New Issue
Block a user