Ensure that _scproxy gets build even when --disable-toolbox-glue
is specified on OSX. Fixes a regression in 2.6.3.
This commit is contained in:
parent
15ae41c2db
commit
a5b642c933
18
setup.py
18
setup.py
|
@ -1347,6 +1347,15 @@ class PyBuildExt(build_ext):
|
|||
else:
|
||||
missing.append('sunaudiodev')
|
||||
|
||||
if platform == 'darwin':
|
||||
# _scproxy
|
||||
exts.append(Extension("_scproxy", [os.path.join(srcdir, "Mac/Modules/_scproxy.c")],
|
||||
extra_link_args= [
|
||||
'-framework', 'SystemConfiguration',
|
||||
'-framework', 'CoreFoundation'
|
||||
]))
|
||||
|
||||
|
||||
if platform == 'darwin' and ("--disable-toolbox-glue" not in
|
||||
sysconfig.get_config_var("CONFIG_ARGS")):
|
||||
|
||||
|
@ -1400,15 +1409,6 @@ class PyBuildExt(build_ext):
|
|||
addMacExtension('_CF', core_kwds, ['cf/pycfbridge.c'])
|
||||
addMacExtension('autoGIL', core_kwds)
|
||||
|
||||
# _scproxy
|
||||
sc_kwds = {
|
||||
'extra_compile_args': carbon_extra_compile_args,
|
||||
'extra_link_args': [
|
||||
'-framework', 'SystemConfiguration',
|
||||
'-framework', 'CoreFoundation'
|
||||
],
|
||||
}
|
||||
addMacExtension("_scproxy", sc_kwds)
|
||||
|
||||
|
||||
# Carbon
|
||||
|
|
Loading…
Reference in New Issue