Kaydet (Commit) a6c2eb5e authored tarafından Fred Drake's avatar Fred Drake

Donn Cave <donn@u.washington.edu>:

Do not assume that all platforms using a MetroWorks compiler can use
POSIX threads; the assumption breaks on BeOS.  This fix only helps
for BeOS.

This closes SourceForge patch #101772.
üst 51d9036c
...@@ -58,7 +58,7 @@ extern char *getenv(const char *); ...@@ -58,7 +58,7 @@ extern char *getenv(const char *);
#define SUN_LWP #define SUN_LWP
#endif #endif
#ifdef __MWERKS__ #if defined(__MWERKS__) && !defined(__BEOS__)
#define _POSIX_THREADS #define _POSIX_THREADS
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment