aboutsummaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-06-29 07:59:12 +0000
committerGuy Harris <guy@alum.mit.edu>2004-06-29 07:59:12 +0000
commit55676422a27beb38ced4493c1acb8e9c4bb24f9b (patch)
tree9a1ea8c186e8784c7c82da86e28d768b1d5fcdf3 /acinclude.m4
parentd4488c7af73abaab57597bba9d70aa3bf7f5498d (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. svn path=/trunk/; revision=11267
Diffstat (limited to 'acinclude.m4')
-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)
])