Received: (from majordom@localhost) by hyperreal.com (8.8.5/8.8.5) id NAA19333; Tue, 6 May 1997 13:26:25 -0700 (PDT) Received: from devsys.jaguNET.com (devsys.jaguNET.com [206.156.208.6]) by hyperreal.com (8.8.5/8.8.5) with ESMTP id NAA19327 for ; Tue, 6 May 1997 13:26:22 -0700 (PDT) Received: (from jim@localhost) by devsys.jaguNET.com (8.8.5/jag-2.4) id QAA02151 for new-httpd@apache.org; Tue, 6 May 1997 16:26:16 -0400 (EDT) From: Jim Jagielski Message-Id: <199705062026.QAA02151@devsys.jaguNET.com> Subject: Re: [STATUS] Tue May 6 13:15:56 PDT 1997 To: new-httpd@apache.org Date: Tue, 6 May 1997 16:26:15 -0400 (EDT) In-Reply-To: <199705062021.QAA02119@devsys.jaguNET.com> from "Jim Jagielski" at May 6, 97 04:21:17 pm X-Mailer: ELM [version 2.4 PL25] Content-Type: text Sender: new-httpd-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org Jim Jagielski wrote: > > Dean Gaudet wrote: > > > > * HP/UX 10 compilation problems ... it's a popular enough platform that > > these should be fixed before release. Jim posted a patch but it > > didn't work for Marc. > > This does... I've also sent a copy to the originator of the PR: PS: This also requires a small patch to comment out the OPTIM line in Configuration.tmpl/Configuration > > Index: apache/src/Configure > =================================================================== > RCS file: /export/home/cvs/apache/src/Configure,v > retrieving revision 1.93 > diff -c -r1.93 Configure > *** Configure 1997/04/27 07:52:16 1.93 > --- Configure 1997/05/06 18:23:31 > *************** > *** 165,170 **** > --- 165,182 ---- > fi > > # > + # Also look for the standard compilers > + # > + for compilers in "gcc" "cc" "acc" "c89" > + do > + lookedfor="$lookedfor $compilers" > + if ./helpers/PrintPath -s $compilers; then > + COMPILER="$compilers" > + break > + fi > + done > + > + # > SHELL="/bin/sh" > > case "$PLAT" in > *************** > *** 210,232 **** > OS='HI-UX' > CFLAGS="$CFLAGS -DHIUX" > # if we're using the HIUX compiler, add a few flags. > ! if [ "$CC" = "cc" ]; then > CFLAGS="$CFLAGS -Aa -D_HIUX_SOURCE" > fi > ;; > *-hp-hpux10.*) > OS='HP-UX 10' > CFLAGS="$CFLAGS -DHPUX10" > # if we're using the HPUX compiler, add a few flags. > ! if [ "$CC" = "cc" ]; then > CFLAGS="$CFLAGS -Aa -D_HPUX_SOURCE" > fi > ;; > *-hp-hpux*) > OS='HP-UX' > CFLAGS="$CFLAGS -DHPUX" > ! if [ "$CC" = "cc" ]; then > CFLAGS="$CFLAGS -Aa -D_HPUX_SOURCE" > fi > ;; > *-sgi-irix64) > --- 222,247 ---- > OS='HI-UX' > CFLAGS="$CFLAGS -DHIUX" > # if we're using the HIUX compiler, add a few flags. > ! if [ "$CC" = "cc" ] || [ "$COMPILER" = "cc" ]; then > CFLAGS="$CFLAGS -Aa -D_HIUX_SOURCE" > + OPTIM=" " > fi > ;; > *-hp-hpux10.*) > OS='HP-UX 10' > CFLAGS="$CFLAGS -DHPUX10" > # if we're using the HPUX compiler, add a few flags. > ! if [ "$CC" = "cc" ] || [ "$COMPILER" = "cc" ]; then > CFLAGS="$CFLAGS -Aa -D_HPUX_SOURCE" > + OPTIM=" " > fi > ;; > *-hp-hpux*) > OS='HP-UX' > CFLAGS="$CFLAGS -DHPUX" > ! if [ "$CC" = "cc" ] || [ "$COMPILER" = "cc" ]; then > CFLAGS="$CFLAGS -Aa -D_HPUX_SOURCE" > + OPTIM=" " > fi > ;; > *-sgi-irix64) > *************** > *** 321,327 **** > ;; > *-isc4*) > OS='ISC 4' > ! CC=gcc > CFLAGS="$CFLAGS -posix -DISC" > LFLAGS="$LFLAGS -posix" > LIBS="$LIBS -linet" > --- 336,342 ---- > ;; > *-isc4*) > OS='ISC 4' > ! CC='gcc' > CFLAGS="$CFLAGS -posix -DISC" > LFLAGS="$LFLAGS -posix" > LIBS="$LIBS -linet" > *************** > *** 473,487 **** > # then we look for some popular compilers in our $PATH > # and set a "safe" optimization level > # > - > - for compilers in "gcc" "cc" "acc" "c89" > - do > - lookedfor="$lookedfor $compilers" > - if ./helpers/PrintPath -s $compilers; then > - COMPILER="$compilers" > - break > - fi > - done > > if grep "CC=" Makefile > /dev/null; then > CC="" # clear it just in case > --- 488,493 ---- > -- > ==================================================================== > Jim Jagielski | jaguNET Access Services > jim@jaguNET.com | http://www.jaguNET.com/ > "Not the Craw... the CRAW!" > -- ==================================================================== Jim Jagielski | jaguNET Access Services jim@jaguNET.com | http://www.jaguNET.com/ "Not the Craw... the CRAW!"