__BEOS__ no longer overrides FEATURE_PTHREAD.
authorjongfoster <jongfoster@users.sourceforge.net>
Wed, 25 Jul 2001 22:57:13 +0000 (22:57 +0000)
committerjongfoster <jongfoster@users.sourceforge.net>
Wed, 25 Jul 2001 22:57:13 +0000 (22:57 +0000)
This is because FEATURE_PTHREAD will soon be widely used, so I
want to keep it simple.

jcc.c

diff --git a/jcc.c b/jcc.c
index 78c66bd..d628d39 100644 (file)
--- a/jcc.c
+++ b/jcc.c
@@ -1,4 +1,4 @@
-const char jcc_rcs[] = "$Id: jcc.c,v 1.28 2001/07/23 13:26:12 oes Exp $";
+const char jcc_rcs[] = "$Id: jcc.c,v 1.29 2001/07/24 12:47:06 oes Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/jcc.c,v $
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/jcc.c,v $
@@ -33,6 +33,9 @@ const char jcc_rcs[] = "$Id: jcc.c,v 1.28 2001/07/23 13:26:12 oes Exp $";
  *
  * Revisions   :
  *    $Log: jcc.c,v $
  *
  * Revisions   :
  *    $Log: jcc.c,v $
+ *    Revision 1.29  2001/07/24 12:47:06  oes
+ *    Applied BeOS support update by Eugenia
+ *
  *    Revision 1.28  2001/07/23 13:26:12  oes
  *    Fixed bug in popup-killing for the first read that caused binary garbage to be sent between headers and body
  *
  *    Revision 1.28  2001/07/23 13:26:12  oes
  *    Fixed bug in popup-killing for the first read that caused binary garbage to be sent between headers and body
  *
@@ -261,9 +264,9 @@ const char jcc_rcs[] = "$Id: jcc.c,v 1.28 2001/07/23 13:26:12 oes Exp $";
 #include <fcntl.h>
 #include <errno.h>
 
 #include <fcntl.h>
 #include <errno.h>
 
-#if defined(FEATURE_PTHREAD) && !defined(__BEOS__)
+#ifdef FEATURE_PTHREAD
 #include <pthread.h>
 #include <pthread.h>
-#endif /* def FEATURE_PTHREAD && ndef __BEOS__ */
+#endif /* def FEATURE_PTHREAD */
 
 #ifdef _WIN32
 # ifndef FEATURE_PTHREAD
 
 #ifdef _WIN32
 # ifndef FEATURE_PTHREAD