rse 98/09/17 01:07:54
Modified: src CHANGES . configure Log: ARGL, people on sw-mod-ssl and c.i.w.s.u said they have to fix the "Group" directive after installing, but no one said why or wrote a problem report. We lost an "else" inside the configure script which forced a failure of the configuration adjustment (we have one more problem: `conf_group = #-1' is fine under BSD Make, but GNU make sees `conf_group = ' because of the hash character): Fix APACI's `Group' configuration adjustment - especially for Linux platforms where `nogroup' exists in /etc/group. Revision Changes Path 1.1062 +3 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1061 retrieving revision 1.1062 diff -u -r1.1061 -r1.1062 --- CHANGES 1998/09/17 04:09:39 1.1061 +++ CHANGES 1998/09/17 08:07:52 1.1062 @@ -1,4 +1,7 @@ Changes with Apache 1.3.2 + + *) Fix APACI's `Group' configuration adjustment - especially for Linux + platforms where `nogroup' exists in /etc/group. [Ralf S. Engelschall] *) Make PrintPath work generically instead of having one version strictly for OS/2. [Jim Jagielski, Brian Havard] 1.48 +1 -0 apache-1.3/configure Index: configure =================================================================== RCS file: /export/home/cvs/apache-1.3/configure,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- configure 1998/09/16 20:37:41 1.47 +++ configure 1998/09/17 08:07:53 1.48 @@ -817,6 +817,7 @@ if [ ".$confadjust" = .1 ]; then if [ ".`egrep '^nobody:' /etc/group`" != . ]; then conf_group="nobody" + else if [ ".`egrep '^nogroup:' /etc/group`" != . ]; then conf_group="nogroup" fi