aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-29 07:59:12 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-29 07:59:12 +0000
commitac87dc20955379f186342e82471a13995bf63aba (patch)
tree9a1ea8c186e8784c7c82da86e28d768b1d5fcdf3
parent8df97c1279aa02236b30896021a8953ec9171c1b (diff)
If we can't find the krb5 header or the krb5 code isn't Heimdal, clear
out KRB5_LIBS, so we don't try to link with the library. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11267 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--acinclude.m45
1 files changed, 3 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index b756def2f4..69b2b8ce3f 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -2,7 +2,7 @@ dnl Macros that test for specific features.
dnl This file is part of the Autoconf packaging for Ethereal.
dnl Copyright (C) 1998-2000 by Gerald Combs.
dnl
-dnl $Id: acinclude.m4,v 1.78 2004/06/25 07:06:46 jmayer Exp $
+dnl $Id: acinclude.m4,v 1.79 2004/06/29 07:59:12 guy Exp $
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
@@ -1018,9 +1018,10 @@ AC_DEFUN([AC_ETHEREAL_KRB5_CHECK],
fi
want_krb5=no
], $KRB5_LIBS)
- AC_SUBST(KRB5_LIBS)
else
+ KRB5_LIBS=""
want_krb5=no
fi
+ AC_SUBST(KRB5_LIBS)
])