1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 11:55:44 +03:00

configure.ac: print error if gperf is missing

This commit is contained in:
Kay Sievers 2009-06-17 13:31:34 +02:00
parent 181368a3b2
commit 4b3be1c158

View File

@ -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])