summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-03-06 12:07:27 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-03-06 12:07:27 (GMT)
commit1c24f9c8b7d76b9792f517e8bd298a66734abc3d (patch)
tree2226d1e6d645e03e1f39dab3b0735aba7b3c6eaf /README
parent859eb621087ec5141f9ec73adb0fe10fcab49cb8 (diff)
downloadcpython-1c24f9c8b7d76b9792f517e8bd298a66734abc3d.zip
cpython-1c24f9c8b7d76b9792f517e8bd298a66734abc3d.tar.gz
cpython-1c24f9c8b7d76b9792f517e8bd298a66734abc3d.tar.bz2
Document that _REENTRANT is not needed explicitly.
Diffstat (limited to 'README')
-rw-r--r--README16
1 files changed, 10 insertions, 6 deletions
diff --git a/README b/README
index add75f9..360ad7d 100644
--- a/README
+++ b/README
@@ -414,16 +414,20 @@ send in the patch. (Don't bother patching the configure script itself
Compiler switches for threads
.............................
+The definition of _REENTRANT should be configured automatically, if
+that does not work on your system, or if _REENTRANT is defined
+incorrectly, please report that as a bug.
+
OS/Compiler/threads Switches for use with threads
- (POSIX is draft 10, DCE is draft 4) (1) compile only (2) compile & link
+ (POSIX is draft 10, DCE is draft 4) compile & link
- SunOS 5.{1-5}/{gcc,SunPro cc}/solaris (1) -D_REENTRANT (2) -mt
- SunOS 5.5/{gcc,SunPro cc}/POSIX (1) -D_REENTRANT
- DEC OSF/1 3.x/cc/DCE (1) -D_REENTRANT (2) -threads
+ SunOS 5.{1-5}/{gcc,SunPro cc}/solaris -mt
+ SunOS 5.5/{gcc,SunPro cc}/POSIX (nothing)
+ DEC OSF/1 3.x/cc/DCE -threads
(butenhof@zko.dec.com)
- Digital UNIX 4.x/cc/DCE (1) -D_REENTRANT (2) -threads
+ Digital UNIX 4.x/cc/DCE -threads
(butenhof@zko.dec.com)
- Digital UNIX 4.x/cc/POSIX (1) -D_REENTRANT (2) -pthread
+ Digital UNIX 4.x/cc/POSIX -pthread
(butenhof@zko.dec.com)
AIX 4.1.4/cc_r/d7 (nothing)
(buhrt@iquest.net)