Kaydet (Commit) 0feb8c34 authored tarafından Jack Jansen's avatar Jack Jansen

Don't try to build dl on darwin. It doesn't build out of the box, and it

wouldn't serve a useful purpose anyway.
üst 0c0aad94
......@@ -734,7 +734,7 @@ class PyBuildExt(build_ext):
if sys.maxint == 0x7fffffff:
# This requires sizeof(int) == sizeof(long) == sizeof(char*)
dl_inc = find_file('dlfcn.h', [], inc_dirs)
if (dl_inc is not None) and (platform not in ['atheos']):
if (dl_inc is not None) and (platform not in ['atheos', 'darwin']):
exts.append( Extension('dl', ['dlmodule.c']) )
# Platform-specific libraries
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment