mirror of https://github.com/python/cpython
Change HP=UX compiler options from -Aa to -Ae, which implies
-D_HPUX_SOURCE and also turns on long long support. Suggestion by stnor@sweden.hp.com (Stefan Norberg). Please test this if you have access to HP-UX!!!
This commit is contained in:
parent
ecc23b07a9
commit
cd5ff9f057
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
|
||||
# From configure.in Revision: 1.160
|
||||
# From configure.in Revision: 1.161
|
||||
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated automatically using autoconf version 2.13
|
||||
|
@ -1039,12 +1039,12 @@ esac
|
|||
case $ac_sys_system in
|
||||
hp*|HP*)
|
||||
case $CC in
|
||||
cc|*/cc) CC="$CC -Aa -D_HPUX_SOURCE";;
|
||||
cc|*/cc) CC="$CC -Ae";;
|
||||
esac;;
|
||||
BeOS*)
|
||||
case $CC in
|
||||
cc) CC=cc;;
|
||||
esac;;
|
||||
case $CC in
|
||||
cc) CC=cc;;
|
||||
esac;;
|
||||
Monterey*)
|
||||
case $CC in
|
||||
cc) CC="$CC -Wl,-Bexport";;
|
||||
|
|
|
@ -213,12 +213,12 @@ esac
|
|||
case $ac_sys_system in
|
||||
hp*|HP*)
|
||||
case $CC in
|
||||
cc|*/cc) CC="$CC -Aa -D_HPUX_SOURCE";;
|
||||
cc|*/cc) CC="$CC -Ae";;
|
||||
esac;;
|
||||
BeOS*)
|
||||
case $CC in
|
||||
cc) CC=cc;;
|
||||
esac;;
|
||||
case $CC in
|
||||
cc) CC=cc;;
|
||||
esac;;
|
||||
Monterey*)
|
||||
case $CC in
|
||||
cc) CC="$CC -Wl,-Bexport";;
|
||||
|
|
Loading…
Reference in New Issue