diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-09-17 16:19:16 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-09-17 16:19:16 (GMT) |
commit | fda3c3ddae776dc23e55327e481d3bd5bec0536a (patch) | |
tree | 73eeed502729e19332a177d050f071caca4c8674 /setup.py | |
parent | 83eeef4b067b7182778581c9fdfb104492647bd4 (diff) | |
download | cpython-fda3c3ddae776dc23e55327e481d3bd5bec0536a.zip cpython-fda3c3ddae776dc23e55327e481d3bd5bec0536a.tar.gz cpython-fda3c3ddae776dc23e55327e481d3bd5bec0536a.tar.bz2 |
[Patch #462255, from Jason Tishler] Re-enables building the resouce
module on the Cygwin platform.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -429,8 +429,7 @@ class PyBuildExt(build_ext): # Steen Lumholt's termios module exts.append( Extension('termios', ['termios.c']) ) # Jeremy Hylton's rlimit interface - if platform not in ['cygwin']: - exts.append( Extension('resource', ['resource.c']) ) + exts.append( Extension('resource', ['resource.c']) ) # Sun yellow pages. Some systems have the functions in libc. if platform not in ['cygwin']: |