martin      99/10/05 07:46:04

  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.104     +1 -1      apache-1.3/configure
  
  Index: configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/configure,v
  retrieving revision 1.103
  retrieving revision 1.104
  diff -u -r1.103 -r1.104
  --- configure 1999/09/09 20:14:29     1.103
  +++ configure 1999/10/05 14:46:02     1.104
  @@ -1084,7 +1084,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="[EMAIL PROTECTED]"
   conf_servername="new.host.name"
  
  
  

Reply via email to