diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-03-02 06:24:14 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-03-02 06:24:14 (GMT) |
commit | 5dfa13719f2929e390e82a94a3721a65a6fd9bf8 (patch) | |
tree | c3113ca509b687066505db793b5052db148de2c0 /setup.py | |
parent | 3ed4c15a88c79ae71a01854415a66ca1cd6697c7 (diff) | |
download | cpython-5dfa13719f2929e390e82a94a3721a65a6fd9bf8.zip cpython-5dfa13719f2929e390e82a94a3721a65a6fd9bf8.tar.gz cpython-5dfa13719f2929e390e82a94a3721a65a6fd9bf8.tar.bz2 |
Disable the dl module
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -388,7 +388,7 @@ class PyBuildExt(build_ext): exts.append( Extension('resource', ['resource.c']) ) # Generic dynamic loading module - exts.append( Extension('dl', ['dlmodule.c']) ) + #exts.append( Extension('dl', ['dlmodule.c']) ) # Sun yellow pages. Some systems have the functions in libc. if platform not in ['cygwin']: |