it is not included by error table headers on Mac OS X. Also
fixed busted check for Mac OS
* krb5_libinit.c: added #define for Mac OS X so
that krb5int_cleanup_library calls krb5_stdcc_shutdown.
[pullups from 1-2-2-branch]
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14584
dc483132-0cff-0310-8789-
dd5450dbe970
+2002-06-25 Alexandra Ellwood <lxs@mit.edu>
+
+ * krb5_libinit.c: Added an include for com_err.h since
+ it is not included by error table headers on Mac OS X. Also
+ fixed busted check for Mac OS
+
+ * krb5_libinit.c: added #define for Mac OS X so
+ that krb5int_cleanup_library calls krb5_stdcc_shutdown.
+
+ [pullups from 1-2-2-branch]
+
2002-06-09 Ken Raeburn <raeburn@mit.edu>
* configure.in: Don't set up keytab/file or keytab/srvtab
#include <assert.h>
+#if TARGET_OS_MAC
+ #include <Kerberos/com_err.h>
+#endif
+
#include "krb5.h"
#include "krb5_err.h"
#include "kv5m_err.h"
{
assert (initialized);
-#if defined(_WIN32) || defined(macintosh)
+#if defined(_WIN32) || TARGET_OS_MAC
krb5_stdcc_shutdown();
#endif