You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@hyperreal.org on 1999/10/05 16:46:07 UTC

cvs commit: apache-2.0 configure

martin      99/10/05 07:46:07

  Modified:    .        configure
  Log:
  If none of the standard group names was found in /etc/group,
  configure would generate a line like
    conf_group       = #-1
  in the Makefile. But as this is an empty assignment (# is the
  comment start), the resulting httpd.conf was unusable. Set
  the group to "#-1" instead.
  
  Revision  Changes    Path
  1.5       +1 -1      apache-2.0/configure
  
  Index: configure
  ===================================================================
  RCS file: /home/cvs/apache-2.0/configure,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- configure	1999/08/29 10:43:13	1.4
  +++ configure	1999/10/05 14:46:06	1.5
  @@ -1139,7 +1139,7 @@
   ##  UID/GID as production oriented as a web server in NIS anyway.
   ##
   conf_user="nobody"
  -conf_group="#-1"
  +conf_group="\\\\#-1"
   conf_port="80"
   conf_serveradmin="you@your.address"
   conf_servername="new.host.name"