mirror of
https://github.com/python/cpython.git
synced 2025-11-16 00:38:11 +00:00
Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban.
This commit is contained in:
commit
515ea9bd65
3 changed files with 7 additions and 0 deletions
|
|
@ -862,6 +862,7 @@ Mark Roddy
|
||||||
Kevin Rodgers
|
Kevin Rodgers
|
||||||
Giampaolo Rodola
|
Giampaolo Rodola
|
||||||
Elson Rodriguez
|
Elson Rodriguez
|
||||||
|
Adi Roiban
|
||||||
Luis Rojas
|
Luis Rojas
|
||||||
Mike Romberg
|
Mike Romberg
|
||||||
Armin Ronacher
|
Armin Ronacher
|
||||||
|
|
|
||||||
|
|
@ -264,6 +264,8 @@ Library
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban.
|
||||||
|
|
||||||
- Issue #14387: Do not include accu.h from Python.h.
|
- Issue #14387: Do not include accu.h from Python.h.
|
||||||
|
|
||||||
- Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined.
|
- Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined.
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -464,6 +464,10 @@ class PyBuildExt(build_ext):
|
||||||
if platform in ['osf1', 'unixware7', 'openunix8']:
|
if platform in ['osf1', 'unixware7', 'openunix8']:
|
||||||
lib_dirs += ['/usr/ccs/lib']
|
lib_dirs += ['/usr/ccs/lib']
|
||||||
|
|
||||||
|
# HP-UX11iv3 keeps files in lib/hpux folders.
|
||||||
|
if platform == 'hp-ux11':
|
||||||
|
lib_dirs += ['/usr/lib/hpux64', '/usr/lib/hpux32']
|
||||||
|
|
||||||
if platform == 'darwin':
|
if platform == 'darwin':
|
||||||
# This should work on any unixy platform ;-)
|
# This should work on any unixy platform ;-)
|
||||||
# If the user has bothered specifying additional -I and -L flags
|
# If the user has bothered specifying additional -I and -L flags
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue