diff options
author | Guido van Rossum <guido@python.org> | 1997-12-04 00:48:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-12-04 00:48:27 (GMT) |
commit | a0cbb3dbae487b5cb1aef4345740725f817faf98 (patch) | |
tree | b3d584fa8c375639c27c856ab19fe40d364dd48d /Modules/Setup.in | |
parent | e612be59263f9771f89c79a89843872ae1b8f667 (diff) | |
download | cpython-a0cbb3dbae487b5cb1aef4345740725f817faf98.zip cpython-a0cbb3dbae487b5cb1aef4345740725f817faf98.tar.gz cpython-a0cbb3dbae487b5cb1aef4345740725f817faf98.tar.bz2 |
Moved the thread module to its own Setup.thread(.in) file,
which is edited by the config.status script depending on whether
--with-thread is specified or not. Also needs changes to configure(.in).
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index b4fcd78..fd673df 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -95,11 +95,7 @@ signal signalmodule.c # signal(2) #gl glmodule.c cgensupport.c -I$(srcdir) -lgl -lX11 -# Thread module -- use only if Python has thread support for your OS. -# Note that you must have configured (and built!) Python with the -# --with-thread option passed to the configure script for this to work: - -#thread threadmodule.c +# The thread module is now automatically enabled, see Setup.thread. # Pure module. Cannot be linked dynamically. # -DWITH_QUANTIFY, -DWITH_PURIFY, or -DWITH_ALL_PURE |