summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorJeff Layton <jlayton@redhat.com>2010-02-26 21:36:56 -0500
committerJeff Layton <jlayton@redhat.com>2010-02-26 21:36:56 -0500
commitf54e674a82fc00e574e1ebbc77ba5841d8342b6d (patch)
treed721945e5b94d4e77c857396cb61e4cd6e9773a8 /configure.ac
parent8ddbdf13169ac38ef7fe552de5abc683e6d63c0f (diff)
downloadcifs-utils-f54e674a82fc00e574e1ebbc77ba5841d8342b6d.tar.gz
cifs-utils-f54e674a82fc00e574e1ebbc77ba5841d8342b6d.tar.bz2
cifs-utils-f54e674a82fc00e574e1ebbc77ba5841d8342b6d.zip
autotools: check for keyutils.hcifs-utils-4.0
...and throw a (hopefully) helpful error message if it's not present. Signed-off-by: Jeff Layton <jlayton@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
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