mirror of
https://github.com/python/cpython.git
synced 2025-08-15 14:20:55 +00:00
Merged revisions 74962 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74962 | ronald.oussoren | 2009-09-20 12:31:22 +0200 (Sun, 20 Sep 2009) | 2 lines Fix for issue 6851: urllib.urlopen crashes in a thread on OSX 10.6 ........
This commit is contained in:
parent
04606fbcbe
commit
40617a8eae
3 changed files with 36 additions and 183 deletions
11
setup.py
11
setup.py
|
@ -1402,6 +1402,17 @@ 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
|
||||
carbon_kwds = {'extra_compile_args': carbon_extra_compile_args,
|
||||
'extra_link_args': ['-framework', 'Carbon'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue