diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-09-22 18:05:13 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-09-22 18:05:13 (GMT) |
commit | 67dc176ffaa8c813d6156f14ff07c4685769aef8 (patch) | |
tree | 21f9a642074a2adcd9f23c12a985d7ca221e8b92 /Source/kwsys/ProcessUNIX.c | |
parent | 43fe0d3978a81b74be42c0e975bdfe0092778b48 (diff) | |
download | CMake-67dc176ffaa8c813d6156f14ff07c4685769aef8.zip CMake-67dc176ffaa8c813d6156f14ff07c4685769aef8.tar.gz CMake-67dc176ffaa8c813d6156f14ff07c4685769aef8.tar.bz2 |
ENH: a few more haiku fixes, stop the debugger from coming up for tests
Diffstat (limited to 'Source/kwsys/ProcessUNIX.c')
-rw-r--r-- | Source/kwsys/ProcessUNIX.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/kwsys/ProcessUNIX.c b/Source/kwsys/ProcessUNIX.c index 32b4d9e..2f8914b 100644 --- a/Source/kwsys/ProcessUNIX.c +++ b/Source/kwsys/ProcessUNIX.c @@ -63,6 +63,10 @@ do. #include <dirent.h> /* DIR, dirent */ #include <ctype.h> /* isspace */ +#ifdef __HAIKU__ +#undef __BEOS__ +#endif + #if defined(KWSYS_C_HAS_PTRDIFF_T) && KWSYS_C_HAS_PTRDIFF_T typedef ptrdiff_t kwsysProcess_ptrdiff_t; #else |