diff options
author | Francois Tigeot <ftigeot@wolfpond.org> | 2011-02-20 20:08:46 +0100 |
---|---|---|
committer | Francois Tigeot <ftigeot@wolfpond.org> | 2011-02-21 14:37:59 +0100 |
commit | ab50df50a86b773d6c74216b6e2d1035406be872 (patch) | |
tree | d2947a3c2d219b35dc1fb27288d07837e961b0b5 /soltools | |
parent | 7c17c577e0462f0b9655ac9c0debaf35b2b8668c (diff) |
Add DragonFly defines.
Diffstat (limited to 'soltools')
-rw-r--r-- | soltools/mkdepend/imakemdep.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/soltools/mkdepend/imakemdep.h b/soltools/mkdepend/imakemdep.h index 494e26177013..2fc693454c12 100644 --- a/soltools/mkdepend/imakemdep.h +++ b/soltools/mkdepend/imakemdep.h @@ -274,7 +274,9 @@ char *cpp_argv[ARGUMENTS] = { #ifdef unix "-Uunix", /* remove unix symbol so that filename unix.c okay */ #endif -#if defined(__386BSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(MACH) +#if defined(__386BSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || \ + defined(MACH) || defined(DRAGONFLY) +/* FIXME: strange list of obsolete systems */ # ifdef __i386__ "-D__i386__", # endif @@ -514,6 +516,8 @@ char *cpp_argv[ARGUMENTS] = { * them to the the following table. The definition of struct symtab is * in util/makedepend/def.h. */ + +/* FIXME: strange list of obsolete systems */ struct pair predefs[] = { #ifdef apollo {"apollo", "1", NULL}, @@ -720,6 +724,9 @@ struct pair predefs[] = { #ifdef __OpenBSD__ {"__OpenBSD__", "1", NULL}, #endif +#ifdef __DragonFly__ + {"__DragonFly__", "1", NULL}, +#endif #ifdef __EMX__ {"__EMX__", "1", NULL}, #endif |