]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add default case (standard conformance) to avoid piling up
authorGuido van Rossum <guido@python.org>
Mon, 2 Jun 1997 22:25:45 +0000 (22:25 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 2 Jun 1997 22:25:45 +0000 (22:25 +0000)
system specific #ifdefs.

Python/thread_pthread.h

index 8e6ca86ed926681fb894d43c3082465ef7355809..5b70fa4e3cf62a475715bfc095f01321c0330e66 100644 (file)
@@ -66,12 +66,12 @@ PERFORMANCE OF THIS SOFTWARE.
 #    define PY_PTHREAD_D7
 #  endif
 
-#elif defined(__unix) && defined(__sparc)
-#  define PY_PTHREAD_STD
-#elif defined(__linux)
-#  define PY_PTHREAD_STD
 #elif defined(__DGUX)
 #  define PY_PTHREAD_D6
+
+#else /* Default case */
+#  define PY_PTHREAD_STD
+
 #endif