diff options
author | Jeff Layton <jlayton@redhat.com> | 2010-02-08 09:29:47 -0500 |
---|---|---|
committer | Jeff Layton <jlayton@redhat.com> | 2010-02-08 09:29:47 -0500 |
commit | 5e5a0c9d14fabe891bb5df2ee243ad4d85dd11ef (patch) | |
tree | 2410facd7a3f67077c9f74b67fafa6f23464db7a | |
parent | 36fa52b8a5917a5cdd8fe07178a77279ecc35d1d (diff) | |
download | cifs-utils-5e5a0c9d14fabe891bb5df2ee243ad4d85dd11ef.tar.gz cifs-utils-5e5a0c9d14fabe891bb5df2ee243ad4d85dd11ef.tar.bz2 cifs-utils-5e5a0c9d14fabe891bb5df2ee243ad4d85dd11ef.zip |
Add check for krb5.h.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index a1cf532..2e98c0e 100644 --- a/configure.ac +++ b/configure.ac @@ -2,12 +2,12 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.63]) -AC_INIT(cifs-utils, 0.1, jlayton@samba.org) +AC_INIT(cifs-utils, 0.5, jlayton@samba.org) AC_CONFIG_SRCDIR([replace.h]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile]) -AM_INIT_AUTOMAKE(cifs-utils, 0.1) +AM_INIT_AUTOMAKE(cifs-utils, 0.5) # Checks for programs. AC_PROG_CC @@ -16,7 +16,7 @@ AC_PROG_CC # Checks for header files. AC_USE_SYSTEM_EXTENSIONS -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_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 krb5.h]) # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_STDBOOL |