summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1999-04-21 22:50:28 +0000
committerTheodore Tso <tytso@mit.edu>1999-04-21 22:50:28 +0000
commit98b87dafb2a9cae561c3252f8af339eff6c225d5 (patch)
tree6cf1b3e7bf966f43c759b6cd8d13ebfc4940e646
parent3307a01c9188b9fe6102c346c7a5d121db463187 (diff)
downloadkrb5-98b87dafb2a9cae561c3252f8af339eff6c225d5.tar.gz
krb5-98b87dafb2a9cae561c3252f8af339eff6c225d5.tar.xz
krb5-98b87dafb2a9cae561c3252f8af339eff6c225d5.zip
winccld.c: Only compile this file on Windows (to avoid screwing up the
Macintosh build). git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11372 dc483132-0cff-0310-8789-dd5450dbe970
-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 02eff3878..f06bee5c1 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 a3e4473eb..5b9789611 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 */