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' \