diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2004-07-15 19:56:25 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2004-07-15 19:56:25 (GMT) |
commit | 84b744775206eceefc9c94ba3e23f18332ac062b (patch) | |
tree | 71961e8250cff6d2470185c64d2e1c96cb6f62e8 | |
parent | 5336f8caa4ed6d3777183f8b0ab1fc81db3eec3d (diff) | |
download | cpython-84b744775206eceefc9c94ba3e23f18332ac062b.zip cpython-84b744775206eceefc9c94ba3e23f18332ac062b.tar.gz cpython-84b744775206eceefc9c94ba3e23f18332ac062b.tar.bz2 |
_localemodule now needs to be linked with CoreFoundation on darwin.
-rw-r--r-- | setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -341,8 +341,15 @@ class PyBuildExt(build_ext): locale_libs = ['intl'] else: locale_libs = [] + if platform == 'darwin': + locale_extra_link_args = ['-framework', 'CoreFoundation'] + else: + locale_extra_link_args = [] + + exts.append( Extension('_locale', ['_localemodule.c'], - libraries=locale_libs ) ) + libraries=locale_libs, + extra_link_args=locale_extra_link_args) ) # Modules with some UNIX dependencies -- on by default: # (If you have a really backward UNIX, select and socket may not be |