+Wed Jun 12 00:43:16 1996 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * osconf.h: Add #ifdef _WIN32 in places where we had #ifdef _MSDOS
+
Tue Mar 5 12:27:18 1996 Richard Basch <basch@lehman.com>
* osconf.h (KPROPD_DEFAULT_KDB5_EDIT): kdb5_edit is now in PREFIX/sbin
#ifndef KRB5_OSCONF__
#define KRB5_OSCONF__
-#if !defined(_MSDOS)
+#if !defined(_MSDOS) || !defined(_WIN32)
/* Don't try to pull in autoconf.h for Windows, since it's not used */
#ifndef KRB5_AUTOCONF__
#define KRB5_AUTOCONF__
#endif
#endif
-#if defined(_WINDOWS) || defined(WIN32)
+#if defined(_MSDOS) || defined(_WIN32)
#define DEFAULT_PROFILE_FILENAME "krb5.ini"
#define DEFAULT_LNAME_FILENAME "/aname"
#define DEFAULT_KEYTAB_NAME "FILE:%s\\v5srvtab"
+Wed Jun 12 00:44:07 1996 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * syslog.h: Add #ifdef _WIN32 in places where we had #ifdef _MSDOS
+
Thu Jun 22 16:12:23 1995 Tom Yu (tlyu@dragons-lair)
* syslog.h: reverse sense of KRB5_PROVIDE_PROTOTYPES
#define LOG_NOWAIT 0x10 /* if forking to log on console, don't wait() */
#ifndef KERNEL
-#if (defined(__STDC__) || defined(_WINDOWS)) && !defined(KRB5_NO_PROTOTYPES)
+#if (defined(__STDC__) || defined(_MSDOS) || defined(_WIN32)) && !defined(KRB5_NO_PROTOTYPES)
extern void syslog (int , const char *, ... );
#ifdef va_start
/* XXX depending on #define of va_start in <stdarg.h> */
+Wed Jun 12 00:48:32 1996 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * pname_to_uid.c: Add #ifdef _WIN32 in places where we had #ifdef
+ _MSDOS
+
Fri Jun 7 14:52:56 1996 Kevin L Mitchell <klmitch@mit.edu>
* accept_sec_context.c, init_sec_context.c, inq_context.c,
*/
#include "gssapiP_krb5.h"
-#if !defined(_MSDOS) && !defined(_MACINTOSH)
+#if !defined(_MSDOS) && !defined(_WIN32) && !defined(_MACINTOSH)
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif