Commit 2f09caa9 authored by Antoine Pitrou's avatar Antoine Pitrou

Issue #941346: Improve the build process under AIX and allow Python to

be built as a shared library.  Patch by Sébastien Sablé.
parent 3136e10a
......@@ -748,6 +748,9 @@ class build_ext(Command):
elif sys.platform == 'darwin':
# Don't use the default code below
return ext.libraries
elif sys.platform[:3] == 'aix':
# Don't use the default code below
return ext.libraries
else:
from distutils import sysconfig
if sysconfig.get_config_var('Py_ENABLE_SHARED'):
......
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