[Python-checkins] python/dist/src setup.py,1.103,1.104

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Mon, 05 Aug 2002 11:06:19 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv413

Modified Files:
	setup.py 
Log Message:
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).


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.103
retrieving revision 1.104
diff -C2 -d -r1.103 -r1.104
*** setup.py	4 Aug 2002 22:04:25 -0000	1.103
--- setup.py	5 Aug 2002 18:06:16 -0000	1.104
***************
*** 316,321 ****
                  # grp(3)
                  exts.append( Extension('grp', ['grpmodule.c']) )
-         # posix (UNIX) errno values
-         exts.append( Extension('errno', ['errnomodule.c']) )
          # select(2); not on ancient System V
          exts.append( Extension('select', ['selectmodule.c']) )
--- 316,319 ----