You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rs...@hyperreal.org on 1998/06/13 13:24:11 UTC

cvs commit: apache-1.3 configure

rse         98/06/13 04:24:11

  Modified:    src      CHANGES
               .        configure
  Log:
  Portability fix for APACI shadow tree support: Swap order of awk and sed in
  top-level configure script to avoid sed fails on some platforms (for instance
  SunOS 4.1.3 and NCR SysV) because of the non-newline-termined output of Awk.
  
  Submitted by: Bill Houle <bh...@sandiegoca.ncr.com>
  Reviewed by: Ralf S. Engelschall
  PR: 2435
  
  Revision  Changes    Path
  1.912     +5 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.911
  retrieving revision 1.912
  diff -u -r1.911 -r1.912
  --- CHANGES	1998/06/12 15:53:21	1.911
  +++ CHANGES	1998/06/13 11:24:07	1.912
  @@ -1,5 +1,10 @@
   Changes with Apache 1.3.1
   
  +  *) Portability fix for APACI shadow tree support: Swap order of awk and sed
  +     in top-level configure script to avoid sed fails on some platforms (for
  +     instance SunOS 4.1.3 and NCR SysV) because of the non-newline-termined
  +     output of Awk. [Bill Houle <bh...@sandiegoca.ncr.com>] PR#2435
  +
     *) Improve performance of directory listings (mod_autoindex) by comparing
        integer keys (last-modified and size) as integers rather than converting
        them to strings first.  Also use a set of explicit byte tests rather
  
  
  
  1.32      +1 -1      apache-1.3/configure
  
  Index: configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/configure,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- configure	1998/06/05 07:15:16	1.31
  +++ configure	1998/06/13 11:24:10	1.32
  @@ -278,7 +278,7 @@
                   echo "##  Apache Makefile (shadow wrapper)" >> Makefile
                   echo "##" >> Makefile
                   echo "" >> Makefile
  -                echo "GNUTRIPLE=\`$aux/GuessOS | $AWK '{ printf(\"%s\",\$\$1); }' | sed -e 's:/:-:g'\`" >> Makefile
  +                echo "GNUTRIPLE=\`$aux/GuessOS | sed -e 's:/:-:g' | $AWK '{ printf(\"%s\",\$\$1); }'\`" >> Makefile
                   echo "" >> Makefile
                   echo "all build install install-quiet clean distclean:" >> Makefile
                   echo "	@\$(MAKE) -f Makefile.\$(GNUTRIPLE) \$(MFLAGS) \$@" >> Makefile