summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/DynamicLoader.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-02-03 16:27:08 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-02-03 16:27:08 (GMT)
commita1d7f82d6845a496eef7520936e07221b49eb70c (patch)
treeff418565e1d9f77022d2e5cb594c7b51014a792d /Source/kwsys/DynamicLoader.cxx
parent5b2b40d34b0129893ac2a99c3987a8867d33efa6 (diff)
downloadCMake-a1d7f82d6845a496eef7520936e07221b49eb70c.zip
CMake-a1d7f82d6845a496eef7520936e07221b49eb70c.tar.gz
CMake-a1d7f82d6845a496eef7520936e07221b49eb70c.tar.bz2
ENH: fix dynamic loading on haiku
Diffstat (limited to 'Source/kwsys/DynamicLoader.cxx')
-rw-r--r--Source/kwsys/DynamicLoader.cxx11
1 files changed, 2 insertions, 9 deletions
diff --git a/Source/kwsys/DynamicLoader.cxx b/Source/kwsys/DynamicLoader.cxx
index 9ca9146..ac02e1a 100644
--- a/Source/kwsys/DynamicLoader.cxx
+++ b/Source/kwsys/DynamicLoader.cxx
@@ -335,20 +335,13 @@ const char* DynamicLoader::LastError()
#endif //_WIN32
// ---------------------------------------------------------------
-// 4. Implementation for BeOS / Haiku
-#if defined __BEOS__ || defined(__HAIKU__)
+// 4. Implementation for BeOS
+#if defined __BEOS__
#include <string.h> // for strerror()
-#ifdef __BEOS__
#include <be/kernel/image.h>
#include <be/support/Errors.h>
-#endif
-
-#ifdef __HAIKU__
-#include <os/kernel/image.h>
-#include <os/support/Errors.h>
-#endif
#define DYNAMICLOADER_DEFINED 1