You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Thom May <th...@planetarytramp.net> on 2002/05/03 22:14:40 UTC

[PATCH] Fix for PR8170

At least I hope it's 8170 ;)
Anyhow, changes the LoadModule from just blindly being modules/mod_foo
to being the relative libexecdir/mod_foo
-Thom
-- 
Thom May -> thom@planetarytramp.net

<moshez> You know, one advantage of having a DPL is that if aliens
	 land and tell you "take me to your leader", then you can 
	 just load up db.d.o, get Bdale's address, and send them 
	 on their way


Index: Makefile.in
===================================================================
RCS file: /home/cvspublic/httpd-2.0/Makefile.in,v
retrieving revision 1.107
diff -u -u -r1.107 Makefile.in
--- Makefile.in	28 Apr 2002 23:41:25 -0000	1.107
+++ Makefile.in	3 May 2002 20:09:46 -0000
@@ -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>"; \

Re: [PATCH] Fix for PR8170

Posted by Justin Erenkrantz <je...@apache.org>.
On Fri, May 03, 2002 at 09:14:40PM +0100, Thom May wrote:
> At least I hope it's 8170 ;)
> Anyhow, changes the LoadModule from just blindly being modules/mod_foo
> to being the relative libexecdir/mod_foo

Yeah, it's 8170.  I marked it as fixed too.

Committed.  Thanks!  -- justin