Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 26390 invoked by uid 500); 23 Nov 2001 18:01:34 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 26379 invoked by uid 500); 23 Nov 2001 18:01:34 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 23 Nov 2001 17:45:52 -0000 Message-ID: <20011123174552.81667.qmail@icarus.apache.org> From: aaron@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0 Makefile.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N aaron 01/11/23 09:45:52 Modified: . Makefile.in Log: 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 Revision Changes Path 1.92 +6 -0 httpd-2.0/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/httpd-2.0/Makefile.in,v retrieving revision 1.91 retrieving revision 1.92 diff -u -r1.91 -r1.92 --- Makefile.in 2001/10/22 12:46:29 1.91 +++ Makefile.in 2001/11/23 17:45:52 1.92 @@ -50,8 +50,14 @@ -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' \