The following reply was made to PR config/695; it has been noted by GNATS.
From: Marc Slemko <[EMAIL PROTECTED]>
To: Eric Roberts <[EMAIL PROTECTED]>
Subject: Re: config/695: http_bprintf.c error with ' -K noinline '
Date: Sun, 8 Jun 1997 16:45:08 -0600 (MDT)
On Sun, 8 Jun 1997, Eric Roberts wrote:
> gcc -c -O2 -DSCO5 -K noinline http_bprintf.c
> gcc: noinline: No such file or directory
> gcc: unrecognized option `-K'
> make: *** [http_bprintf.o] Error 1
> >How-To-Repeat:
>
> >Fix:
> I took out the -K and still noinline was not found.
> I did a find / -print | grep noinline
> and found nothing with noinline anywhere
> Can you help? I've gotten this error with two of your versions. Thankyou..
You will need to remove the whole "-K noinline" bit. It is there to
workaround a bug in SCO's compiler; since you are using gcc, it chokes.
Try applying the following patch to Configure, then rerunning Configure
and remaking.
Index: Configure
===================================================================
RCS file: /export/home/cvs/apache/src/Configure,v
retrieving revision 1.96
diff -c -r1.96 Configure
*** Configure 1997/05/13 00:20:30 1.96
--- Configure 1997/06/08 22:42:30
***************
*** 359,365 ****
OS='SCO 5'
CFLAGS="$CFLAGS -DSCO5"
LIBS="$LIBS -lsocket -lmalloc -lprot"
! OSBPRINTF="-K noinline"
DEF_WANTHSREGEX=no
;;
*-solaris2*)
--- 359,367 ----
OS='SCO 5'
CFLAGS="$CFLAGS -DSCO5"
LIBS="$LIBS -lsocket -lmalloc -lprot"
! if [ "$CC" = "cc" ] || [ "$COMPILER" = "cc" ]; then
! OSBPRINTF="-K noinline"
! fi
DEF_WANTHSREGEX=no
;;
*-solaris2*)