* et_h.awk: Fix to not depend on CPP symbol "unix".
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11137
dc483132-0cff-0310-8789-
dd5450dbe970
+Mon Feb 1 19:42:45 1999 Tom Yu <tlyu@mit.edu>
+
+ * et_c.awk: Fix to not depend on CPP symbol "unix".
+
+ * et_h.awk: Fix to not depend on CPP symbol "unix".
+
1998-12-01 Theodore Ts'o <tytso@rsts-11.mit.edu>
* com_err.h, error_table.h, error_message.c: Use "#if
tab_base_low, table_item_count) > outfile
}
print "" > outfile
- print "#if defined(unix) || defined(_AIX)" > outfile
+ print "#if !defined(_MSDOS) && !defined(_WIN32) && !defined(macintosh)" > outfile
print "struct et_list {" > outfile
print " struct et_list *next;" > outfile
print " const struct error_table * table;" > outfile
print "" > outfile
print "extern struct error_table et_" table_name "_error_table;" > outfile
print "" > outfile
- print "#if defined(unix) || defined(_AIX)" > outfile
+ print "#if !defined(_MSDOS) && !defined(_WIN32) && !defined(macintosh)" > 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