]> granicus.if.org Git - python/commitdiff
Move the signal module back into Setup.config.in so it can be enabled
authorAndrew M. Kuchling <amk@amk.ca>
Wed, 21 Feb 2001 21:10:14 +0000 (21:10 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Wed, 21 Feb 2001 21:10:14 +0000 (21:10 +0000)
   and disabled from the configure script.

Modules/Setup.config.in
Modules/Setup.dist

index b9b7a1e17e0f7b3e8a9c2fd5ba61dd42b21ec42e..7a27e52a5ecf1adc69af7562fc9a8a325a7ad4f3 100644 (file)
@@ -9,5 +9,8 @@
 # Threading
 @USE_THREAD_MODULE@thread threadmodule.c
 
+# The signal module
+@USE_SIGNAL_MODULE@signal signalmodule.c
+
 # The rest of the modules previously listed in this file are built
 # by the setup.py script in Python 2.1.
index 82380f603eb4c6045673123935cf7cfa9b5997d9..457101d6c9529473672705bc3e63a4a3140c3207 100644 (file)
@@ -97,9 +97,6 @@ PYTHONPATH=$(COREPYTHONPATH)
 posix posixmodule.c            # posix (UNIX) system calls
 _sre _sre.c                    # Fredrik Lundh's new regular expressions
 
-# The signal module can't be compiled as a dynamically linked module.
-signal signalmodule.c           # signal(2)
-
 # The rest of the modules listed in this file are all commented out by
 # default.  Usually they can be detected and built as dynamically
 # loaded modules by the new setup.py script added in Python 2.1.  If