Kaydet (Commit) 0d3db3a8 authored tarafından Charles-François Natali's avatar Charles-François Natali

Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban.

üst 142ab32e
...@@ -717,6 +717,7 @@ Jim Robinson ...@@ -717,6 +717,7 @@ Jim Robinson
Andy Robinson Andy Robinson
Kevin Rodgers Kevin Rodgers
Giampaolo Rodola Giampaolo Rodola
Adi Roiban
Mike Romberg Mike Romberg
Armin Ronacher Armin Ronacher
Case Roole Case Roole
......
...@@ -94,6 +94,8 @@ Library ...@@ -94,6 +94,8 @@ Library
Build Build
----- -----
- Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban.
- Issue #14437: Fix building the _io module under Cygwin. - Issue #14437: Fix building the _io module under Cygwin.
......
...@@ -451,6 +451,10 @@ class PyBuildExt(build_ext): ...@@ -451,6 +451,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
......
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