rse         99/01/17 02:48:32

  Modified:    src      CHANGES Configure
  Log:
  Let src/Configure be aware of CFLAGS options starting with plus
  signs as it's the case for the HP/UX's compiler.
  
  Submitted by: Doug Yatcilla <[EMAIL PROTECTED]>
  Reviewed by: Ralf S. Engelschall
  PR: 3681
  
  Revision  Changes    Path
  1.1219    +4 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1218
  retrieving revision 1.1219
  diff -u -r1.1218 -r1.1219
  --- CHANGES   1999/01/17 10:33:41     1.1218
  +++ CHANGES   1999/01/17 10:48:30     1.1219
  @@ -1,5 +1,9 @@
   Changes with Apache 1.3.5
   
  +  *) Let src/Configure be aware of CFLAGS options starting with plus
  +     signs as it's the case for the HP/UX's compiler.
  +     [Doug Yatcilla <[EMAIL PROTECTED]>] PR#3681
  +
     *) Remove the hard-wire of TAR=tar (we now check for gtar and gnutar first)
        and check to see if the tar we wind up with supports '-h'.
        [Jim Jagielski] PR#3671
  
  
  
  1.328     +1 -1      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.327
  retrieving revision 1.328
  diff -u -r1.327 -r1.328
  --- Configure 1999/01/16 22:00:44     1.327
  +++ Configure 1999/01/17 10:48:30     1.328
  @@ -1816,7 +1816,7 @@
   TEXTRA_CFLAGS=`egrep '^EXTRA_CFLAGS=' Makefile.config | tail -1 |\
               sed -e 's;^EXTRA_CFLAGS=;;' -e 's;\`.*\`;;'`
   tmpstr=`echo $CFLAGS $TEXTRA_CFLAGS |\
  -     sed -e 's;[     ]-;!-;g' -e 's/\\\"/\"/g' -e 's/\([^\\]\)"/\1/g'`
  +     sed -e 's;[     ]\([+-]\);!\1;g' -e 's/\\\"/\"/g' -e 
's/\([^\\]\)"/\1/g'`
   OIFS="$IFS"
   IFS='!'
   for cflag in $tmpstr; do
  
  
  

Reply via email to