diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-09-28 04:47:10 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-09-28 04:47:10 +0000 |
commit | 9d71c8da5b28f94d9c9377724849af0acdd9d603 (patch) | |
tree | 88767c0bf4002f0509e5f23f600d087bd18b744b /acinclude.m4 | |
parent | 242499c09161761a21ee3e2202f0a245ecfeb577 (diff) | |
download | wireshark-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
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
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" |