mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Patch from SF bug #473150: configure weaknesses on HP-UX (Michael Piotrowski)
1. configure doesn't handle HP-UX release numbers (e.g., B.11.00), resulting in MACHDEP = "hpuxB". 2. After checking for wchar.h, configure doesn't include it when checking the size of wchar_t. (Python 2.2b1 on HP-UX 11.00)
This commit is contained in:
parent
0aa811c527
commit
67b2659046
4 changed files with 6 additions and 5 deletions
2
configure
vendored
2
configure
vendored
|
@ -636,7 +636,7 @@ then
|
|||
ac_md_system=`echo $ac_sys_system |
|
||||
tr -d '/ ' | tr '[A-Z]' '[a-z]'`
|
||||
ac_md_release=`echo $ac_sys_release |
|
||||
tr -d '/ ' | sed 's/\..*//'`
|
||||
tr -d '/ ' | sed 's/^[A-Z]\.//' | sed 's/\..*//'`
|
||||
MACHDEP="$ac_md_system$ac_md_release"
|
||||
|
||||
case $MACHDEP in
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue