diff options
-rw-r--r-- | imakemdep.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/imakemdep.h b/imakemdep.h index 87558ae..1340cc4 100644 --- a/imakemdep.h +++ b/imakemdep.h @@ -395,6 +395,9 @@ char *cpp_argv[ARGUMENTS] = { # ifdef __m68k__ "-D__m68k__", # endif +# ifdef __hppa__ + "-D__hppa__", +# endif # ifdef __sh__ "-D__sh__", # endif @@ -1326,6 +1329,9 @@ struct symtab predefs[] = { # ifdef __s390__ {"__s390__", "1"}, # endif +# ifdef __hppa__ + {"__hppa__", "1"}, +# endif # ifdef __sh__ {"__sh__", "1"}, # endif |