diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2004-03-17 20:25:04 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2004-03-17 20:25:04 +0000 |
commit | b61721fb6f722c720d6fae031d064f8b6acc1c25 (patch) | |
tree | 50d68cbb204a0b6fcdaa67396555ffaab8c9c917 /imakemdep.h | |
parent | 39892755f5fd8f73fda3489991d454864ee63ab0 (diff) |
merge with XORG-RELEASE-1 (tag XORG-CYGWIN-LAST-MERGE)CYGWIN-RELEASE-1-MERGECYGWIN-PRE-6_8_0-MERGECYGWIN-HEAD-MERGECYGWIN-HEAD-LAST-MERGE
Diffstat (limited to 'imakemdep.h')
-rw-r--r-- | imakemdep.h | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/imakemdep.h b/imakemdep.h index fba4c23..38a6d95 100644 --- a/imakemdep.h +++ b/imakemdep.h @@ -371,11 +371,11 @@ char *cpp_argv[ARGUMENTS] = { # ifdef __ia64__ "-D__ia64__", # endif -# ifdef __AMD64__ - "-D__AMD64__", +# ifdef __amd64__ + "-D__amd64__", # endif # ifdef __x86_64__ - "-D__AMD64__", + "-D__amd64__", # endif # ifdef __s390__ "-D__s390__", @@ -1014,9 +1014,18 @@ struct symtab predefs[] = { #ifdef sparc {"sparc", "1"}, #endif +#ifdef __sparc + {"__sparc", "1"}, +#endif +#ifdef __sparcv9 + {"__sparcv9", "1"}, +#endif #ifdef __sparc__ {"__sparc__", "1"}, #endif +#ifdef __sparcv9__ + {"__sparcv9__", "1"}, +#endif #ifdef hpux {"hpux", "1"}, #endif @@ -1255,14 +1264,17 @@ struct symtab predefs[] = { # ifdef __ia64__ {"__ia64__", "1"}, # endif -# if defined (AMD64) || defined (x86_64) - {"AMD64", "1"}, +# if defined (amd64) || defined (x86_64) + {"amd64", "1"}, {"x86_64", "1"}, # endif -# if defined (__AMD64__) || defined (__x86_64__) - {"__AMD64__", "1"}, +# if defined (__amd64__) || defined (__x86_64__) + {"__amd64__", "1"}, {"__x86_64__", "1"}, # endif +# ifdef __i386 + {"__i386", "1"}, +# endif # ifdef __i386__ {"__i386__", "1"}, # endif |