Imported Upstream version 2.8.11.2
[platform/upstream/cmake.git] / Modules / CheckForPthreads.c
index d831078..7250fbf 100644 (file)
@@ -15,8 +15,8 @@ int main(int ac, char*av[]){
   pthread_t tid[2];
   pthread_create(&tid[0], 0, runner, (void*)1);
   pthread_create(&tid[1], 0, runner, (void*)2);
-  
-#if defined(__BEOS__) && !defined(__ZETA__)  && !defined(__HAIKU__) // (no usleep on BeOS 5.)
+
+#if defined(__BEOS__) && !defined(__ZETA__) // (no usleep on BeOS 5.)
   usleep(1); // for strange behavior on single-processor sun
 #endif