+Tue Mar 7 12:30:45 1995 Keith Vetter (keithv@fusion.com)
+
+ * syslog.c: a disabled stub provided for satisfying the linker
+ on the pc.
+ * Makefile.in: made to work on the pc but only for syslog.c
+
Tue Feb 28 01:05:42 1995 John Gilmore (gnu at toad.com)
* daemon.c, memmove.c, strcasecmp.c, strdup.c: Avoid <krb5/...>
CFLAGS = $(CCOPTS) $(DEFS)
LDFLAGS = -g
-all:: $(OBJS)
+##DOSBUILDTOP = ..\..\..
+##DOSLIBNAME=..\krb5.lib
+##DOS!include $(BUILDTOP)\config\windows.in
OBJS = @LIBOBJS@
+
+all:: all-$(WHAT)
+
+all-unix:: $(OBJS)
+
+all-windows:: syslog.obj
* Modified to use UNIX domain IPC by Ralph Campbell
*/
+#ifndef _MSDOS
#ifdef __STDC__
#include <stdarg.h>
#else
LogMask = pmask;
return (omask);
}
+#else /* _MSDOS */
+
+/* Windows doesn't have the concept of a system log, so just
+** do nothing here.
+*/
+void
+syslog(int pri, const char *fmt, ...)
+{
+ return;
+}
+#endif