From f54e674a82fc00e574e1ebbc77ba5841d8342b6d Mon Sep 17 00:00:00 2001 From: Jeff Layton Date: Fri, 26 Feb 2010 21:36:56 -0500 Subject: autotools: check for keyutils.h ...and throw a (hopefully) helpful error message if it's not present. Signed-off-by: Jeff Layton --- configure.ac | 1 + 1 file changed, 1 insertion(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 5a859a2..10f7f07 100644 --- a/configure.ac +++ b/configure.ac @@ -18,6 +18,7 @@ AC_GNU_SOURCE AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h limits.h mntent.h netdb.h stddef.h stdint.h stdlib.h string.h strings.h sys/mount.h sys/param.h sys/socket.h sys/time.h syslog.h unistd.h], , [AC_MSG_ERROR([necessary header(s) not found])]) AC_CHECK_HEADERS([talloc.h], , [AC_MSG_ERROR([talloc.h not found, install libtalloc-devel])]) AC_CHECK_HEADERS([krb5/krb5.h], , [AC_MSG_ERROR([krb5/krb5.h not found, install krb5-devel])]) +AC_CHECK_HEADERS([keyutils.h], , [AC_MSG_ERROR([keyutils.h not found, install keyutils-libs-devel])]) # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_STDBOOL -- cgit v1.2.3