From dc1c1a7ae54deb91d3aa6b9071a34e83bddbb178 Mon Sep 17 00:00:00 2001 From: Aaron Bannert Date: Fri, 23 Nov 2001 17:45:52 +0000 Subject: [PATCH] mod_ssl is big and bulky, takes awhile to load, sometimes must wait for 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 Reviewed by: Aaron Bannert git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92145 13f79535-47bb-0310-9956-ffa450edef68 --- Makefile.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile.in b/Makefile.in index 6cb3175409..31ef41884e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -50,9 +50,15 @@ install-conf: -e 'p' \ < $$i; \ for j in $(DSO_MODULES) "^EOL^"; do \ + if test "x$$j" = "xssl"; then \ + echo ""; \ + fi; \ if test $$j != "^EOL^"; then \ echo "LoadModule $${j}_module modules/mod_$${j}.so"; \ fi; \ + if test "x$$j" = "xssl"; then \ + echo ""; \ + fi; \ done; \ sed -e '1,/@@LoadModule@@/d' \ -e '/@@LoadModule@@/d' \ -- 2.50.1