]> granicus.if.org Git - apache/commitdiff
mod_ssl is big and bulky, takes awhile to load, sometimes must wait for
authorAaron Bannert <aaron@apache.org>
Fri, 23 Nov 2001 17:45:52 +0000 (17:45 +0000)
committerAaron Bannert <aaron@apache.org>
Fri, 23 Nov 2001 17:45:52 +0000 (17:45 +0000)
entropy to be collected, and has a nasty little bug that prevents the
server from being started in non-SSL mode. This patch corrects some of
those problems, but is not intended as a workaround for the bug.

Submitted by: Madhusudan Mathihalli <madhusudan_mathihalli@hp.com>
Reviewed by: Aaron Bannert

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92145 13f79535-47bb-0310-9956-ffa450edef68

Makefile.in

index 6cb3175409aba2db9fb72f4cd21776f4bf7edf26..31ef41884e6bc28fd3d1c28616bd699b95bc881a 100644 (file)
@@ -50,9 +50,15 @@ install-conf:
                                        -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' \
                                        -e '/@@LoadModule@@/d' \