mirror of
https://github.com/systemd/systemd.git
synced 2025-03-24 14:50:17 +03:00
configure.ac: print error if gperf is missing
This commit is contained in:
parent
181368a3b2
commit
4b3be1c158
@ -51,6 +51,9 @@ AC_ARG_ENABLE([extras],
|
||||
[], [enable_extras=yes])
|
||||
if test "x$enable_extras" = xyes; then
|
||||
AC_PATH_PROG([GPERF], [gperf])
|
||||
if test -z "$GPERF"; then
|
||||
AC_MSG_ERROR([gperf is needed])
|
||||
fi
|
||||
|
||||
PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.7.0 gobject-2.0 >= 2.7.0])
|
||||
AC_SUBST([GLIB_CFLAGS])
|
||||
|
Loading…
x
Reference in New Issue
Block a user