summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/krb5/ccache/ccapi/ChangeLog5
-rw-r--r--src/lib/krb5/ccache/ccapi/winccld.c5
2 files changed, 7 insertions, 3 deletions
diff --git a/src/lib/krb5/ccache/ccapi/ChangeLog b/src/lib/krb5/ccache/ccapi/ChangeLog
index 02eff3878c..f06bee5c12 100644
--- a/src/lib/krb5/ccache/ccapi/ChangeLog
+++ b/src/lib/krb5/ccache/ccapi/ChangeLog
@@ -1,3 +1,8 @@
+Thu Apr 8 16:09:08 1999 Theodore Y. Ts'o <tytso@mit.edu>
+
+ * winccld.c: Only compile this file on Windows (to avoid screwing
+ up the Macintosh build).
+
1999-03-31 Theodore Ts'o <tytso@rsts-11.mit.edu>
* winccld.c, winccld.h, stdcc.c: Add files to dynamically load
diff --git a/src/lib/krb5/ccache/ccapi/winccld.c b/src/lib/krb5/ccache/ccapi/winccld.c
index a3e4473ebe..5b97896118 100644
--- a/src/lib/krb5/ccache/ccapi/winccld.c
+++ b/src/lib/krb5/ccache/ccapi/winccld.c
@@ -1,3 +1,4 @@
+#if defined(_MSDOS) || defined(_WIN32)
/*
* winccld.c --- routine for dynamically loading the ccache DLL if
* it's present.
@@ -84,6 +85,4 @@ int krb5_is_ccdll_loaded()
return krb5_win_ccdll_loaded;
}
-
-
-
+#endif /* Windows */