summaryrefslogtreecommitdiff
path: root/xc/config/imake/imakemdep.h
diff options
context:
space:
mode:
Diffstat (limited to 'xc/config/imake/imakemdep.h')
-rw-r--r--xc/config/imake/imakemdep.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/xc/config/imake/imakemdep.h b/xc/config/imake/imakemdep.h
index 05c5b89f8..6d47f2f66 100644
--- a/xc/config/imake/imakemdep.h
+++ b/xc/config/imake/imakemdep.h
@@ -20,7 +20,7 @@ used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
*/
-/* $XFree86: xc/config/imake/imakemdep.h,v 3.48 2001/03/27 00:21:17 torrey Exp $ */
+/* $XFree86: xc/config/imake/imakemdep.h,v 3.50 2001/04/25 16:44:54 tsi Exp $ */
/*
@@ -653,6 +653,12 @@ char *cpp_argv[ARGUMENTS] = {
#if defined(__APPLE__)
"-D__APPLE__",
"-D__DARWIN__",
+# ifdef __ppc__
+ "-D__ppc__",
+# endif
+# ifdef __i386__
+ "-D__i386__",
+# endif
#endif
};
@@ -906,7 +912,14 @@ struct symtab predefs[] = {
{"mc68020", "1"},
#endif
#ifdef __GNUC__
+# if __GNUC__ == 1
{"__GNUC__", "1"},
+# else
+ {"__GNUC__", "2"},
+# endif
+#endif
+#ifdef __STRICT_ANSI__
+ {"__STRICT_ANSI__", "1"},
#endif
#if __STDC__
{"__STDC__", "1"},