You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)" <ma...@hp.com> on 2001/11/20 23:18:35 UTC

[PATCH] Makefile.in

Hi,
	'just wondering if anybody would be interested in this patch.. If
SSL is enabled as DSO, then it puts the "LoadModule ssl_module..." within
the <IfDefine SSL>...</IfDefine> block.. This enables the user to just issue
a "apachectl start".. 


-Madhu


Index: Makefile.in
===================================================================
RCS file: /home/cvspublic/httpd-2.0/Makefile.in,v
retrieving revision 1.91
diff -u -r1.91 Makefile.in
--- Makefile.in 2001/10/22 12:46:29     1.91
+++ Makefile.in 2001/11/20 21:58:25
@@ -50,8 +50,14 @@
                                        -e 'p' \
                                        < $$i; \
                                for j in $(DSO_MODULES) "^EOL^"; do \
+                                       if test "x$$j" = "xssl"; then \
+                                               echo "<IfDefine SSL>"; \
+                                       fi; \
                                        if test $$j != "^EOL^"; then \
                                                echo "LoadModule
$${j}_module modules/mod_$${j}.so"; \
+                                       fi; \
+                                       if test "x$$j" = "xssl"; then \
+                                               echo "</IfDefine>"; \
                                        fi; \
                                done; \
                                sed -e '1,/@@LoadModule@@/d' \

Re: [PATCH] Makefile.in

Posted by Aaron Bannert <aa...@clove.org>.
On Tue, Nov 20, 2001 at 05:18:35PM -0500, MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote:
> Hi,
> 	'just wondering if anybody would be interested in this patch.. If
> SSL is enabled as DSO, then it puts the "LoadModule ssl_module..." within
> the <IfDefine SSL>...</IfDefine> block.. This enables the user to just issue
> a "apachectl start".. 

I don't quite understand. If you compiled SSL support in and you have DSO
you get the LoadModule line. If you didn't want that, take it out of your
config. What does this solve, exactly?

-aaron