Ported the posix directory for the PC--one file
authorKeith Vetter <keithv@fusion.com>
Tue, 7 Mar 1995 20:50:46 +0000 (20:50 +0000)
committerKeith Vetter <keithv@fusion.com>
Tue, 7 Mar 1995 20:50:46 +0000 (20:50 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5077 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/posix/ChangeLog
src/lib/krb5/posix/Makefile.in
src/lib/krb5/posix/syslog.c

index 048ee35c7de0ae538427c9ea5c44c338443f7e54..210dd791da318fc434129139b81b7e45b880473c 100644 (file)
@@ -1,3 +1,9 @@
+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/...>
index e6a6698f85a59ad02249ffa790732d6b45a035d8..4c43f098cd63df94283d09b7fe685627d8fc84d8 100644 (file)
@@ -1,6 +1,14 @@
 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
index 659d59fef3fe12ea063d1d5b656caa5dc7a2d905..4e5510f1fd7a0cdf87be0f8ce8db3e9c26fd1a39 100644 (file)
@@ -33,6 +33,7 @@
  * Modified to use UNIX domain IPC by Ralph Campbell
  */
 
+#ifndef _MSDOS
 #ifdef __STDC__
 #include <stdarg.h>
 #else
@@ -236,3 +237,14 @@ setlogmask(pmask)
                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