Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5739e102
Commit
5739e102
authored
Apr 12, 2012
by
Charles-François Natali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban.
parent
e7bade56
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+2
-0
setup.py
setup.py
+4
-0
No files found.
Misc/ACKS
View file @
5739e102
...
@@ -783,6 +783,7 @@ Andy Robinson
...
@@ -783,6 +783,7 @@ Andy Robinson
Mark Roddy
Mark Roddy
Kevin Rodgers
Kevin Rodgers
Giampaolo Rodola
Giampaolo Rodola
Adi Roiban
Mike Romberg
Mike Romberg
Armin Ronacher
Armin Ronacher
Case Roole
Case Roole
...
...
Misc/NEWS
View file @
5739e102
...
@@ -131,6 +131,8 @@ Extension Modules
...
@@ -131,6 +131,8 @@ Extension Modules
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.
- Issue #14387: Do not include accu.h from Python.h.
- Issue #14387: Do not include accu.h from Python.h.
...
...
setup.py
View file @
5739e102
...
@@ -467,6 +467,10 @@ class PyBuildExt(build_ext):
...
@@ -467,6 +467,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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment