summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-10-20 00:48:28 +0000
committerAndrew Tridgell <tridge@samba.org>2001-10-20 00:48:28 +0000
commit42fd55bd618fbc61769322c33eabcecb909c2d48 (patch)
treef52b93acc35f3927c83c9f231f45b3b39a50d232
parent07f54cb59270e2c3168ab2bb3e73e7a8d8563843 (diff)
downloadsamba-42fd55bd618fbc61769322c33eabcecb909c2d48.tar.gz
samba-42fd55bd618fbc61769322c33eabcecb909c2d48.tar.bz2
samba-42fd55bd618fbc61769322c33eabcecb909c2d48.zip
quick fix for krb5 compilation. I've told vance how to fix this module
properly and will wait for him to send a patch (This used to be commit 7adad774d872a3f2424f49f364416e7c42409b90)
-rw-r--r--source3/smbd/build_options.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/source3/smbd/build_options.c b/source3/smbd/build_options.c
index c3d24b69a7..7afd2c5652 100644
--- a/source3/smbd/build_options.c
+++ b/source3/smbd/build_options.c
@@ -86,11 +86,8 @@ void build_options(BOOL screen)
snprintf(outstring,sizeof(outstring)," KRB4_DIR: %s\n",KRB4_DIR);
output(screen,outstring);
#endif
-#if defined(KRB5_AUTH) && defined(KRB5_DIR)
- snprintf(outstring,sizeof(outstring)," KRB5_AUTH");
- output(screen,outstring);
- snprintf(outstring,sizeof(outstring)," KRB5_DIR: %s\n",KRB5_DIR);
- output(screen,outstring);
+#if HAVE_KRB5
+ output(screen," HAVE_KRB5");
#endif
#ifdef WITH_AUTOMOUNT
snprintf(outstring,sizeof(outstring)," WITH_AUTOMOUNT\n");