rse 98/07/22 06:20:53
Modified: . INSTALL src CHANGES Log: Document the special APACI behavior for installation paths where ``/apache'' is appended to paths under some (well defined, of course) situations to prevent pollution of system locations with Apache files. PR: 2660 Revision Changes Path 1.37 +17 -0 apache-1.3/INSTALL Index: INSTALL =================================================================== RCS file: /export/home/cvs/apache-1.3/INSTALL,v retrieving revision 1.36 retrieving revision 1.37 diff -u -r1.36 -r1.37 --- INSTALL 1998/07/08 11:09:34 1.36 +++ INSTALL 1998/07/22 13:20:50 1.37 @@ -196,6 +196,23 @@ localstatedir=PREFIX/var, runtimedir=PREFIX/var/run, logfiledir=PREFIX/var/log and proxycachedir=PREFIX/var/proxy. + Note: To reduce the pollution of shared installation locations + (like /usr/local/ or /etc) with Apache files to a minimum the + string ``/apache'' is automatically appended to 'libexecdir', + 'sysconfdir', 'datadir', 'localstatedir' and 'includedir' if + (and only if) the following points apply for each path + individually: + + 1. the path doesn't already contain the word ``apache'' + 2. the path was not directly customized by the user + + Keep in mind that per default these paths are derived from + 'prefix' and 'exec-prefix', so usually its only a matter + whether these paths contain ``apache'' or not. Although the + defaults were defined with experience in mind you always should + make sure the paths fit your situation by checking the finally + chosen paths via the --layout option. + Use the --compat option to install Apache into a installation tree which has a similar layout than the one used with Apache 1.2. 1.977 +5 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.976 retrieving revision 1.977 diff -u -r1.976 -r1.977 --- CHANGES 1998/07/22 05:48:19 1.976 +++ CHANGES 1998/07/22 13:20:51 1.977 @@ -1,5 +1,10 @@ Changes with Apache 1.3.2 + *) Document the special APACI behavior for installation paths where + ``/apache'' is appended to paths under some (well defined, of course) + situations to prevent pollution of system locations with Apache files. + [Ralf S. Engelschall] PR#2660 + *) Fixed problem with buffered response message not being sent for the read_request error conditions of URI-too-long (414) and malformed header fields (400). [Roy Fielding] PR#2646