Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 61982 invoked by uid 500); 5 Oct 2000 03:44:23 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 61971 invoked by uid 500); 5 Oct 2000 03:44:23 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 5 Oct 2000 03:44:22 -0000 Message-ID: <20001005034422.61967.qmail@locus.apache.org> From: rbb@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/build special.mk rbb 00/10/04 20:44:22 Modified: src CHANGES src/build special.mk Log: If mod_so is compiled into the server, we need to create libexec, even if there are no shared modules compiled. This is in keeping with what we did with Apache 1.3, and it allows APXS to work, even if there were no shared modules installed initially. Revision Changes Path 1.245 +5 -0 apache-2.0/src/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apache-2.0/src/CHANGES,v retrieving revision 1.244 retrieving revision 1.245 diff -u -r1.244 -r1.245 --- CHANGES 2000/10/04 23:19:27 1.244 +++ CHANGES 2000/10/05 03:44:21 1.245 @@ -1,5 +1,10 @@ Changes with Apache 2.0a7 + *) If mod_so is enabled in the server always create libexec, even + if there are no modules installed in this directory. This is a + requirement for APXS to work correctly. + [Ryan Bloom] + *) Connection oriented output filters are now stored in the conn_rec instead of the request_rec. This allows us to add the output filter in the pre-connection phase instead of the 1.7 +1 -1 apache-2.0/src/build/special.mk Index: special.mk =================================================================== RCS file: /home/cvs/apache-2.0/src/build/special.mk,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- special.mk 2000/07/23 18:00:45 1.6 +++ special.mk 2000/10/05 03:44:22 1.7 @@ -62,7 +62,7 @@ install-modules: @shared='$(shared)'; \ - if test -n "$$shared"; then \ + if [ "x`echo $(static) | grep 'mod_so'`" != "x" ]; then \ $(MKINSTALLDIRS) $(libexecdir); \ for i in $$shared; do \ $(SH_LIBTOOL) --mode=install cp $$i $(libexecdir); \