+Sat Feb 22 02:22:01 1997 Sam Hartman <hartmans@mit.edu>
+
+ * error_message.c: Remove #ifdef unix
+
+Sat Feb 22 02:18:47 1997 Sam Hartman <hartmans@tertius.mit.edu>
+
+ * et_h.awk (char_shift): Avoid #ifdef unix
+
+Sat Feb 22 02:04:20 1997 Sam Hartman <hartmans@mit.edu>
+
+ * com_err.c: Remove #ifdef unix
+
Sat Feb 22 00:34:05 1997 Sam Hartman <hartmans@luminous.MIT.EDU>
* Makefile.in (LIBMAJOR): Bump to 3 so that the krb5 lib is preferred to the NetBSD system library.
SHLIB_LIBS=
SHLIB_LDFLAGS= $(LDFLAGS) @SHLIB_RPATH_DIRS@
SHLIB_LIBDIRS= @SHLIB_LIBDIRS@
-STEXT=@STEXT@
+
all-windows:: $(OBJFILE)
copy com_err.h $(BUILDTOP)\include
va_end(ap);
}
-#ifdef unix
+#if !(defined(_MSDOS)||defined(_WIN32))
et_old_error_hook_func set_com_err_hook (new_proc)
et_old_error_hook_func new_proc;
{
KRB5_DLLIMP extern errcode_t KRB5_CALLCONV remove_error_table
ET_P((const struct error_table FAR *));
-#ifdef unix
+#if !(defined(_MSDOS)||defined(_WIN32))
/*
* The display routine should be application specific. A global hook,
* may cause inappropriate display procedures to be called between
static char buffer[ET_EBUFSIZ];
-#ifndef unix
+#if defined(_MSDOS)||defined(_WIN32)
static struct et_list * _et_list = (struct et_list *) NULL;
#else
/* Old interface compatibility */
print "" > outfile
print "extern struct error_table et_" table_name "_error_table;" > outfile
print "" > outfile
- print "#ifdef unix" > outfile
+ print "#if !(defined(_MSDOS)||defined(_WIN32))" > outfile
print "/* for compatibility with older versions... */" > outfile
print "extern void initialize_" table_name "_error_table ();" > outfile
print "#define init_" table_name "_err_tbl initialize_" table_name "_error_table" > outfile
print "#define initialize_" table_name "_error_table()" > outfile
print "#endif" > outfile
}
+