diff options
author | Guido van Rossum <guido@python.org> | 2000-09-22 16:15:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-09-22 16:15:54 (GMT) |
commit | cd5ff9f057011e2940aecbb33198ca83c75ea274 (patch) | |
tree | 5d914d4f10cad2b01fe36ce48d554ccdbb2cdbd9 /configure.in | |
parent | ecc23b07a9fb688ee4c640bcbfc2fdbae1201943 (diff) | |
download | cpython-cd5ff9f057011e2940aecbb33198ca83c75ea274.zip cpython-cd5ff9f057011e2940aecbb33198ca83c75ea274.tar.gz cpython-cd5ff9f057011e2940aecbb33198ca83c75ea274.tar.bz2 |
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!!!
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index c881890..1bf8854 100644 --- a/configure.in +++ b/configure.in @@ -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";; |