summaryrefslogtreecommitdiff
path: root/Modules/Setup.dist
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-08-05 18:06:17 +0000
committerFred Drake <fdrake@acm.org>2002-08-05 18:06:17 +0000
commit5f8a23f32fb32476d97c0be4c7da2dea5efe3393 (patch)
treedc5106a121569fdb310fca62eb22e67c4921d1b8 /Modules/Setup.dist
parent2805428d92f165064c0f7f4c12aa3c0c5e4ed1eb (diff)
downloadcpython-git-5f8a23f32fb32476d97c0be4c7da2dea5efe3393.tar.gz
Since the errno module is needed by os._execvpe(), and that is used by the
setup.py (indirectly) script to build the standard dynamically loaded modules, the errno module is being made static so it will always be available. Closes SF bug #591205 (needed on trunk only).
Diffstat (limited to 'Modules/Setup.dist')
-rw-r--r--Modules/Setup.dist2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Setup.dist b/Modules/Setup.dist
index f3bc312e22..905d0ac47e 100644
--- a/Modules/Setup.dist
+++ b/Modules/Setup.dist
@@ -109,6 +109,7 @@ PYTHONPATH=$(COREPYTHONPATH)
# setup.py script in the root of the Python source tree.
posix posixmodule.c # posix (UNIX) system calls
+errno errnomodule.c # posix (UNIX) errno values
_sre _sre.c # Fredrik Lundh's new regular expressions
# The rest of the modules listed in this file are all commented out by
@@ -177,7 +178,6 @@ GLHACK=-Dclear=__GLclear
#fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
#pwd pwdmodule.c # pwd(3)
#grp grpmodule.c # grp(3)
-#errno errnomodule.c # posix (UNIX) errno values
#select selectmodule.c # select(2); not on ancient System V
# Memory-mapped files (also works on Win32).