summaryrefslogtreecommitdiffstats
path: root/src/lib/gssapi
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/gssapi')
-rw-r--r--src/lib/gssapi/generic/ChangeLog9
-rw-r--r--src/lib/gssapi/generic/gssapi_generic.h6
2 files changed, 12 insertions, 3 deletions
diff --git a/src/lib/gssapi/generic/ChangeLog b/src/lib/gssapi/generic/ChangeLog
index d123ad025..2bf0aad4a 100644
--- a/src/lib/gssapi/generic/ChangeLog
+++ b/src/lib/gssapi/generic/ChangeLog
@@ -1,3 +1,12 @@
+Mon Sep 28 12:00:00 1995 John Rivlin <jrivlin@fusion.com>
+
+ * gssapi_generic.h: Modified to use build in compiler symbols rather
+ than relying on _MACINTOSH so the projects can include the file
+ without using our headers.
+
+ * Makefile.in: Removed "foo:: foo-$(WHAT)" lines from the
+ Makefile.
+
Mon Sep 25 16:53:00 1995 Theodore Y. Ts'o <tytso@dcl>
* Makefile.in: Removed "foo:: foo-$(WHAT)" lines from the
diff --git a/src/lib/gssapi/generic/gssapi_generic.h b/src/lib/gssapi/generic/gssapi_generic.h
index 462414de6..fe2282796 100644
--- a/src/lib/gssapi/generic/gssapi_generic.h
+++ b/src/lib/gssapi/generic/gssapi_generic.h
@@ -23,10 +23,10 @@
#ifndef _GSSAPI_GENERIC_H_
#define _GSSAPI_GENERIC_H_
-#ifndef _MACINTOSH
-#include <gssapi/gssapi.h>
-#else
+#if defined(__MWERKS__) || defined(applec) || defined(THINK_C)
#include <gssapi.h>
+#else
+#include <gssapi/gssapi.h>
#endif
extern const gss_OID_desc FAR * const gss_nt_user_name;