* et_c.awk: Fix to not depend on CPP symbol "unix"
authorTom Yu <tlyu@mit.edu>
Tue, 2 Feb 1999 00:43:45 +0000 (00:43 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 2 Feb 1999 00:43:45 +0000 (00:43 +0000)
* 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

src/util/et/ChangeLog
src/util/et/et_c.awk
src/util/et/et_h.awk

index 8c05dcca3de9582248f39fb32903e2e0106d6146..4df5ad96a5a2ca9b91dbe07075ae7acaaf6b5b16 100644 (file)
@@ -1,3 +1,9 @@
+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
index a368d584804b75c2707649703c0f2190397a029f..94b258f0fab3af49ea6a37380924ee7199f0faa8 100644 (file)
@@ -209,7 +209,7 @@ END {
                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
index 8f23d3411acfd3824b00b3a4656be7dd963d60ee..2521886ec03585c8c262f3100ec619678393bc6a 100644 (file)
@@ -148,7 +148,7 @@ END {
        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