diff options
author | Guido van Rossum <guido@python.org> | 2001-10-20 14:21:45 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-10-20 14:21:45 (GMT) |
commit | 67b2659046b624dcd84c09a3912caf33eeb53733 (patch) | |
tree | ce37650ed5aa90dbe941529378288fe54a16c4fb /configure | |
parent | 0aa811c527372fbee0e20192bba3cf343a744e08 (diff) | |
download | cpython-67b2659046b624dcd84c09a3912caf33eeb53733.zip cpython-67b2659046b624dcd84c09a3912caf33eeb53733.tar.gz cpython-67b2659046b624dcd84c09a3912caf33eeb53733.tar.bz2 |
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)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |