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/07/12 11:25:47 UTC

cvs commit: apache-1.3 configure

rse         98/07/12 02:25:47

  Modified:    src      CHANGES
               .        configure
  Log:
  Add conservative ticks around more egrep arguments in top-level configure
  to avoid problems under brain-dead platforms like Digital Unix (OSF1).
  
  PR: 2596
  PS: The error on OSF1 also could mean that OSF1 really wants "egrep -e
      <pattern>" instead of "egrep <pattern>". But when this is the problem
      other egreps in src/Configure also would fail. Because they don't we can
      assume that the problem for OSF1 is really the missing quotes because of
      the ^ char.
  
  Revision  Changes    Path
  1.961     +4 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.960
  retrieving revision 1.961
  diff -u -r1.960 -r1.961
  --- CHANGES	1998/07/11 10:56:03	1.960
  +++ CHANGES	1998/07/12 09:25:44	1.961
  @@ -1,4 +1,8 @@
   Changes with Apache 1.3.1
  + 
  +  *) Add conservative ticks around more egrep arguments in top-level configure
  +     to avoid problems under brain-dead platforms like Digital Unix (OSF1).
  +     [Ralf S. Engelschall] PR#2596
   
     *) mod_rewrite created RewriteLock files under the uid of the parent
        process, thus the child processes had no write access to the files.
  
  
  
  1.39      +2 -2      apache-1.3/configure
  
  Index: configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/configure,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- configure	1998/07/06 11:27:57	1.38
  +++ configure	1998/07/12 09:25:46	1.39
  @@ -789,9 +789,9 @@
   conf_serveradmin="you@your.address"
   conf_servername="new.host.name"
   if [ ".$confadjust" = .1 ]; then
  -    if [ ".`egrep ^nobody: /etc/group`" != . ]; then
  +    if [ ".`egrep '^nobody:' /etc/group`" != . ]; then
           conf_group="nobody"
  -        if [ ".`egrep ^nogroup: /etc/group`" != . ]; then
  +        if [ ".`egrep '^nogroup:' /etc/group`" != . ]; then
               conf_group="nogroup"
           fi
       fi