From: Harlan Stenn Date: Mon, 26 Jun 2006 04:51:09 +0000 (-0400) Subject: [Bug 658] hppa2.0-hp-hpux10.20 cc needs a bigger -H for cpp X-Git-Tag: NTP_4_2_3P11~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21207475e04593fb9ac07ae7e387651ba1a39173;p=thirdparty%2Fntp.git [Bug 658] hppa2.0-hp-hpux10.20 cc needs a bigger -H for cpp bk: 449f67bdHcca3OFlEF109Q1YOQUyZQ --- diff --git a/configure.ac b/configure.ac index cd8aa7e8e..1f75cdb1e 100644 --- a/configure.ac +++ b/configure.ac @@ -31,10 +31,18 @@ AC_PROG_CC_C_O AC_PROG_CC_STDC AC_PROG_CPP +# HMS: These need to be moved to AM_CPPFLAGS and/or AM_CFLAGS case "$host" in *-*-amigaos) CFLAGS="$CFLAGS -Dfork=vfork -DSYS_AMIGA" ;; + *-*-hpux10.) # at least for hppa2.0-hp-hpux10.20 + case "$GCC" in + no) + CFLAGS="$CFLAGS -Wp,-H18816" + ;; + esac + ;; *-pc-cygwin*) CFLAGS="$CFLAGS -DSYS_CYGWIN32" ;;