summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve French <smfrench@gmail.com>2013-09-09 09:55:46 -0500
committerJeff Layton <jlayton@samba.org>2013-09-09 14:22:33 -0400
commit92262eafa12b4e11fca1d6f3647cfdeff2f4281c (patch)
treec0cebbf279a7da64cfbc362f561441526d80299d
parent4e315f6a02a4edb259b33bcf0665eba259fee2f2 (diff)
downloadcifs-utils-92262eafa12b4e11fca1d6f3647cfdeff2f4281c.tar.gz
cifs-utils-92262eafa12b4e11fca1d6f3647cfdeff2f4281c.tar.bz2
cifs-utils-92262eafa12b4e11fca1d6f3647cfdeff2f4281c.zip
autoconf: add another suggested package name for krb5 headers
Added an alternate package name for krb5 headers. Noticed the following suggestion asks for the wrong package (at least wrong for FC17) checking krb5.h presence... no checking for krb5.h... no checking krb5/krb5.h usability... no checking krb5/krb5.h presence... no checking for krb5/krb5.h... no configure: WARNING: krb5.h not found, consider installing krb5-libs-devel. Disabling cifs.upcall. [sfrench@w500smf cifs-utils]$ sudo yum install krb5-libs-devel Loaded plugins: langpacks, presto, refresh-packagekit No package krb5-libs-devel available. Error: Nothing to do [sfrench@w500smf cifs-utils]$ sudo yum install krb5-devel (installing krb5-devel worked, but not krb5-libs-devel for this version) Signed-off-by: Steve French <smfrench@gmail.com>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index b5f7c49..c69ede4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -135,9 +135,9 @@ if test $enable_cifsupcall != "no"; then
if test x$ac_cv_header_krb5_krb5_h != xyes ; then
if test x$ac_cv_header_krb5_h != xyes ; then
if test "$enable_cifsupcall" = "yes"; then
- AC_MSG_ERROR([krb5.h not found, consider installing krb5-libs-devel.])
+ AC_MSG_ERROR([krb5.h not found, consider installing krb5-devel or krb5-libs-devel.])
else
- AC_MSG_WARN([krb5.h not found, consider installing krb5-libs-devel. Disabling cifs.upcall.])
+ AC_MSG_WARN([krb5.h not found, consider installing krb5-devel or krb5-libs-devel. Disabling cifs.upcall.])
enable_cifsupcall="no"
fi
fi