From 0d3db3a8157f38e6dc7ea69500069c86c0b40be7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Fran=C3=A7ois=20Natali?= Date: Thu, 12 Apr 2012 19:11:54 +0200 Subject: [PATCH] Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban. --- Misc/ACKS | 1 + Misc/NEWS | 2 ++ setup.py | 4 ++++ 3 files changed, 7 insertions(+) diff --git a/Misc/ACKS b/Misc/ACKS index 73afc97ec9f..e36e626ca31 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -717,6 +717,7 @@ Jim Robinson Andy Robinson Kevin Rodgers Giampaolo Rodola +Adi Roiban Mike Romberg Armin Ronacher Case Roole diff --git a/Misc/NEWS b/Misc/NEWS index f4da7e7785c..8aa7315b968 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -94,6 +94,8 @@ Library Build ----- +- Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban. + - Issue #14437: Fix building the _io module under Cygwin. diff --git a/setup.py b/setup.py index 2c1473c8bb5..064bbc0f08b 100644 --- a/setup.py +++ b/setup.py @@ -451,6 +451,10 @@ class PyBuildExt(build_ext): if platform in ['osf1', 'unixware7', 'openunix8']: 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': # This should work on any unixy platform ;-) # If the user has bothered specifying additional -I and -L flags