Only define sys_nerr if we're on a Macintosh. On those systems which
authorTheodore Tso <tytso@mit.edu>
Fri, 22 Sep 1995 23:59:56 +0000 (23:59 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 22 Sep 1995 23:59:56 +0000 (23:59 +0000)
use sys_nerr, it's an external variable, defined by libc.  Under
Windows, it's apparently an cpp macro.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6816 dc483132-0cff-0310-8789-dd5450dbe970

src/util/et/ChangeLog
src/util/et/error_message.c

index 5ef14ca2e7661789b3f9939b9507223cd4cf3833..189306fe29f60e375e68b03212baf700e01b8db0 100644 (file)
@@ -1,3 +1,10 @@
+Fri Sep 22 19:58:22 1995  Theodore Y. Ts'o  <tytso@dcl>
+
+       * error_message.c (sys_nerr): Only define sys_nerr if we're on a
+               Macintosh.  On those systems which use sys_nerr, it's an
+               external variable, defined by libc.  Under Windows, it's
+               apparently an cpp macro.
+
 Mon Aug  7 19:22:52 1995  Theodore Y. Ts'o  <tytso@dcl>
 
        * Makefile.in (compile_et): Add $(SHELL) to invocation of
index 26db759bb81271942b9492c7b0d2b35b422ce7d3..1d581367429b19405e3af4eab0739a12cda2f3d1 100644 (file)
@@ -17,7 +17,9 @@
 #include "mit-sipb-copyright.h"
 #include "internal.h"
 
+#ifdef _MACINTOSH
 #define sys_nerr 100
+#endif
 
 static const char copyright[] =
     "Copyright 1986, 1987, 1988 by the Student Information Processing Board\nand the department of Information Systems\nof the Massachusetts Institute of Technology";