You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2002/05/03 23:09:06 UTC

cvs commit: httpd-2.0 CHANGES Makefile.in

jerenkrantz    02/05/03 14:09:06

  Modified:    .        CHANGES Makefile.in
  Log:
  Fix generated httpd.conf to respect layout for LoadModule lines.
  PR:	8170
  Submitted by:	Thom May <th...@planetarytramp.net>
  Reviewed by:	Justin Erenkrantz
  
  Revision  Changes    Path
  1.756     +4 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.755
  retrieving revision 1.756
  diff -u -r1.755 -r1.756
  --- CHANGES	2 May 2002 19:54:06 -0000	1.755
  +++ CHANGES	3 May 2002 21:09:05 -0000	1.756
  @@ -1,4 +1,8 @@
   Changes with Apache 2.0.37
  +
  +  *) Fix generated httpd.conf to respect layout for LoadModule lines.
  +     PR 8170.  [Thom May <th...@planetarytramp.net>]
  +
     *) Win32: During a graceful restart, threads in the new process
        were accessing scoreboard slots still in use by active threads in 
        the the old process. [Bill Stoddard]
  
  
  
  1.108     +1 -1      httpd-2.0/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/Makefile.in,v
  retrieving revision 1.107
  retrieving revision 1.108
  diff -u -r1.107 -r1.108
  --- Makefile.in	28 Apr 2002 23:41:25 -0000	1.107
  +++ Makefile.in	3 May 2002 21:09:05 -0000	1.108
  @@ -57,7 +57,7 @@
   						echo "<IfDefine SSL>"; \
   					fi; \
   					if test $$j != "^EOL^"; then \
  -						echo "LoadModule $${j}_module modules/mod_$${j}.so"; \
  +						echo "LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \
   					fi; \
   					if test "x$$j" = "xssl"; then \
   						echo "</IfDefine>"; \