aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-09-28 04:47:10 +0000
committerGuy Harris <guy@alum.mit.edu>2004-09-28 04:47:10 +0000
commit9d71c8da5b28f94d9c9377724849af0acdd9d603 (patch)
tree88767c0bf4002f0509e5f23f600d087bd18b744b
parent242499c09161761a21ee3e2202f0a245ecfeb577 (diff)
downloadwireshark-9d71c8da5b28f94d9c9377724849af0acdd9d603.tar.gz
wireshark-9d71c8da5b28f94d9c9377724849af0acdd9d603.tar.bz2
wireshark-9d71c8da5b28f94d9c9377724849af0acdd9d603.zip
If, when checking whether the Kerberos library is Heimdal or not, we
find it's not, always report "no", even if we're going to give up because the user specified --with-krb5, so the "sorry, you don't have Heimdal" message shows up on a line of its own. svn path=/trunk/; revision=12119
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index d6ef1a5e78..5f392b42a4 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1125,6 +1125,7 @@ AC_DEFUN([AC_ETHEREAL_KRB5_CHECK],
#
# It's not Heimdal.
#
+ AC_MSG_RESULT(no)
if test "x$want_krb5" = "xyes"
then
#
@@ -1137,7 +1138,6 @@ AC_DEFUN([AC_ETHEREAL_KRB5_CHECK],
# Restore the versions of CFLAGS and CPPFLAGS
# from before we added the flags for Kerberos.
#
- AC_MSG_RESULT(no)
AC_MSG_RESULT(Heimdal not found - disabling dissection for some kerberos data in packet decoding)
CFLAGS="$ethereal_save_CFLAGS"
CPPFLAGS="$ethereal_save_CPPFLAGS"