aboutsummaryrefslogtreecommitdiff
path: root/src/lib/gssapi/generic
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2004-06-22 18:14:15 +0000
committerKen Raeburn <raeburn@mit.edu>2004-06-22 18:14:15 +0000
commit88eb1e569e670b76e0994af75996e5299395b4b4 (patch)
treed95c9f66c2d8b1c6f7659123b91b82db46ea8572 /src/lib/gssapi/generic
parent2ea1cb233941b3f9ce94094869b5846c389210ce (diff)
downloadkrb5-88eb1e569e670b76e0994af75996e5299395b4b4.zip
krb5-88eb1e569e670b76e0994af75996e5299395b4b4.tar.gz
krb5-88eb1e569e670b76e0994af75996e5299395b4b4.tar.bz2
Delete preprocessor tests for macintosh, __MWERKS__, applec, and THINK_C, all
part of the pre-Mac OS X support. (Except the bits in the Yarrow code, where it was part of the upstream source.) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16506 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/gssapi/generic')
-rw-r--r--src/lib/gssapi/generic/ChangeLog4
-rw-r--r--src/lib/gssapi/generic/gssapi.hin8
2 files changed, 5 insertions, 7 deletions
diff --git a/src/lib/gssapi/generic/ChangeLog b/src/lib/gssapi/generic/ChangeLog
index caa4a7c..7643a97 100644
--- a/src/lib/gssapi/generic/ChangeLog
+++ b/src/lib/gssapi/generic/ChangeLog
@@ -1,3 +1,7 @@
+2004-06-22 Ken Raeburn <raeburn@mit.edu>
+
+ * gssapi.hin: Don't test macintosh or __MWERKS__.
+
2004-06-16 Ken Raeburn <raeburn@mit.edu>
* util_validate.c (g_save): Call gssint_initialize_library.
diff --git a/src/lib/gssapi/generic/gssapi.hin b/src/lib/gssapi/generic/gssapi.hin
index 35519ed..1c14444 100644
--- a/src/lib/gssapi/generic/gssapi.hin
+++ b/src/lib/gssapi/generic/gssapi.hin
@@ -27,7 +27,7 @@
* Determine platform-dependent configuration.
*/
-#if defined(macintosh) || (defined(__MACH__) && defined(__APPLE__))
+#if defined(__MACH__) && defined(__APPLE__)
# include <TargetConditionals.h>
# if TARGET_RT_MAC_CFM
# error "Use KfM 4.0 SDK headers for CFM compilation."
@@ -39,9 +39,6 @@ extern "C" {
#endif /* __cplusplus */
#if TARGET_OS_MAC
-# if defined(__MWERKS__)
-# pragma import on
-# endif
# pragma options align=mac68k
#endif
@@ -780,9 +777,6 @@ OM_uint32 KRB5_CALLCONV gss_canonicalize_name
);
#if TARGET_OS_MAC
-# if defined(__MWERKS__)
-# pragma import reset
-# endif
# pragma options align=reset
#endif