+2003-03-06 Alexandra Ellwood <lxs@mit.edu>
+
+ * krb5_libinit.c: Removed Mac OS X header goober. Conditionalize
+ CCAPI calls on USE_CCAPI so Darwin builds work.
+
2003-02-04 Tom Yu <tlyu@mit.edu>
* configure.in: Add KRB5_SIGTYPE and CHECK_SIGNALS for
#include <assert.h>
-#if TARGET_OS_MAC
-# include <Kerberos/com_err.h>
-#endif
-
+#include "com_err.h"
#include "krb5.h"
#include "krb5_err.h"
#include "kv5m_err.h"
#include "asn1_err.h"
#include "kdb5_err.h"
+
+#if defined(_WIN32) || defined(USE_CCAPI)
+#include "stdcc.h"
+#endif
+
#include "krb5_libinit.h"
static int initialized = 0;
{
assert (initialized);
-#if defined(_WIN32) || TARGET_OS_MAC
+#if defined(_WIN32) || defined(USE_CCAPI)
krb5_stdcc_shutdown();
#endif