From: Kay Sievers Date: Wed, 17 Jun 2009 11:31:34 +0000 (+0200) Subject: configure.ac: print error if gperf is missing X-Git-Tag: 174~948 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b3be1c15836cfedcd017a6dd77fa1c3ac68a5f0;p=systemd configure.ac: print error if gperf is missing --- diff --git a/configure.ac b/configure.ac index e81d999d..82c455dd 100644 --- a/configure.ac +++ b/configure.ac @@ -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])