From: Guido van Rossum Date: Thu, 21 Aug 1997 00:08:11 +0000 (+0000) Subject: Richard Jones: I think we can be confident in using 'CC="-Aa X-Git-Tag: v1.5a4~349 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8456161fcd155b0c60f9bdeaa0e706ad9f54b0c8;p=python Richard Jones: I think we can be confident in using 'CC="-Aa -D_HPUX_SOURCE"' on HP 9.x and 10.x platforms. --- diff --git a/configure.in b/configure.in index 10545dcfc6..5e6e8765a1 100644 --- a/configure.in +++ b/configure.in @@ -82,6 +82,13 @@ fi AC_PROG_CC +case $ac_sys_system in +hp*|HP*) + case $CC in + cc|*/cc) CC="$CC -Aa -D_HPUX_SOURCE";; + esac;; +esac + # LINKCC is the command that links the python executable -- default is $(CC). # This is altered for AIX in order to build the export list before linking. AC_SUBST(LINKCC)