File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -783,6 +783,7 @@ Andy Robinson
783783Mark Roddy
784784Kevin Rodgers
785785Giampaolo Rodola
786+ Adi Roiban
786787Mike Romberg
787788Armin Ronacher
788789Case Roole
Original file line number Diff line number Diff line change @@ -131,6 +131,8 @@ Extension Modules
131131Build
132132-----
133133
134+ - Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban.
135+
134136- Issue #14437: Fix building the _io module under Cygwin.
135137
136138- Issue #14387: Do not include accu.h from Python.h.
Original file line number Diff line number Diff line change @@ -467,6 +467,10 @@ def detect_modules(self):
467467 if platform in ['osf1' , 'unixware7' , 'openunix8' ]:
468468 lib_dirs += ['/usr/ccs/lib' ]
469469
470+ # HP-UX11iv3 keeps files in lib/hpux folders.
471+ if platform == 'hp-ux11' :
472+ lib_dirs += ['/usr/lib/hpux64' , '/usr/lib/hpux32' ]
473+
470474 if platform == 'darwin' :
471475 # This should work on any unixy platform ;-)
472476 # If the user has bothered specifying additional -I and -L flags
You can’t perform that action at this time.
0 commit comments