+Mon Jun 10 21:51:35 1996 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * syslog.c: Change _WINDOWS to _MSDOS, and add check for _WIN32.
+
Wed Feb 7 00:23:18 1996 Theodore Y. Ts'o <tytso@dcl>
* Makefile.in: Folded in danw's changes to allow
* Modified to use UNIX domain IPC by Ralph Campbell
*/
-#if !defined(_WINDOWS) && !defined(_MACINTOSH)
+#if !defined(_MSDOS) && !defined(_WIN32) && !defined(_MACINTOSH)
-#if defined(__STDC__) || defined(_WINDOWS)
+#if defined(__STDC__) || defined(_MSDOS) || defined(_WIN32)
#include <stdarg.h>
#else
#define const
void
-#if defined(__STDC__) || defined(_WINDOWS)
+#if defined(__STDC__) || defined(_MSDOS) || defined(_WIN32)
syslog(int pri, const char *fmt, ...)
#else
syslog(pri, fmt, va_alist)
{
va_list pvar;
void vsyslog();
-#if defined(__STDC__) || defined(_WINDOWS)
+#if defined(__STDC__) || defined(_MSDOS) || defined(_WIN32)
va_start(pvar, fmt);
#else
va_start(pvar);
+Mon Jun 10 21:52:38 1996 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * rc_io.c: Change _WINDOWS to _MSDOS, and add check for _WIN32.
+
Sat Feb 24 18:53:33 1996 Theodore Y. Ts'o <tytso@dcl>
* rc_io.c (krb5_rc_io_creat, krb5_rc_io_open): Use Windows path
* I/O functions for the replay cache default implementation.
*/
-#ifdef _WINDOWS
+#if defined(_MSDOS) || defined(_WIN32)
# define PATH_SEPARATOR "\\"
#else
# define PATH_SEPARATOR "/"
if (!dirlen)
{
if (!(dir = getenv("KRB5RCACHEDIR")))
-#ifdef _WINDOWS
+#if defined(_MSDOS) || defined(_WIN32)
if (!(dir = getenv("TEMP")))
if (!(dir = getenv("TMP")))
dir = "C:\\";