[Python-checkins] CVS: python/dist/src setup.py,1.55,1.56

A.M. Kuchling akuchling@users.sourceforge.net
Mon, 17 Sep 2001 09:19:18 -0700


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

Modified Files:
	setup.py 
Log Message:
[Patch #462255, from Jason Tishler] Re-enables building the resouce
    module on the Cygwin platform.


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.55
retrieving revision 1.56
diff -C2 -d -r1.55 -r1.56
*** setup.py	2001/09/13 15:05:08	1.55
--- setup.py	2001/09/17 16:19:15	1.56
***************
*** 430,435 ****
              exts.append( Extension('termios', ['termios.c']) )
              # Jeremy Hylton's rlimit interface
!             if platform not in ['cygwin']:
!                 exts.append( Extension('resource', ['resource.c']) )
  
              # Sun yellow pages. Some systems have the functions in libc.
--- 430,434 ----
              exts.append( Extension('termios', ['termios.c']) )
              # Jeremy Hylton's rlimit interface
!             exts.append( Extension('resource', ['resource.c']) )
  
              # Sun yellow pages. Some systems have the functions in libc.