Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 16085 invoked from network); 4 Jan 2006 09:40:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 Jan 2006 09:40:27 -0000 Received: (qmail 2927 invoked by uid 500); 4 Jan 2006 09:40:23 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 2906 invoked by uid 500); 4 Jan 2006 09:40:22 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 2895 invoked by uid 99); 4 Jan 2006 09:40:22 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jan 2006 01:40:22 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [128.195.24.168] (HELO scotch.ics.uci.edu) (128.195.24.168) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jan 2006 01:40:22 -0800 Received: from scotch.ics.uci.edu (localhost [127.0.0.1]) by scotch.ics.uci.edu (8.12.11/8.12.11) with ESMTP id k049eBx0006842 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Wed, 4 Jan 2006 01:40:11 -0800 (PST) Received: (from jerenk@localhost) by scotch.ics.uci.edu (8.13.4+Sun/8.12.11/Submit) id k049eB0C006841 for dev@httpd.apache.org; Wed, 4 Jan 2006 01:40:11 -0800 (PST) X-Authentication-Warning: scotch.ics.uci.edu: jerenk set sender to justin@erenkrantz.com using -f Date: Wed, 4 Jan 2006 01:40:11 -0800 From: Justin Erenkrantz To: dev@httpd.apache.org Subject: Re: A Bloat of Libraries Message-ID: <20060104094011.GE939@scotch.ics.uci.edu> Mail-Followup-To: Justin Erenkrantz , dev@httpd.apache.org References: <200601030637.13337.nick@webthing.com> <43BA95AE.5080309@turner.com> <200601032309.36544.nick@webthing.com> <20060104085401.GA27366@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060104085401.GA27366@redhat.com> User-Agent: Mutt/1.5.11 X-Spam-Checker-Version: SpamAssassin 3.2.0-r232569 (2005-08-13) on scotch.ics.uci.edu X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=no version=3.2.0-r232569 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Wed, Jan 04, 2006 at 08:54:01AM +0000, Joe Orton wrote: > > Again, there are substantial libtool issues that come into play that limit > > what we can realistically do. > > I don't see any here. 2.2.x links only mod_deflate against -lz and only > mod_ssl against $(SSL_LIBS). The 2.0.x way only linking dependent > libraries into httpd is broken for the not unexpected case of having a > static OpenSSL build or a static libz, etc. Try to create a static mod_deflate that links against -lz. GNU libtool doesn't like that combination at all. (It just silently drops the -lz.) It's the one major problem I keep running into with the 2.2 series. I keep having to add -lz to AP_LIBS or make mod_deflate shared. -- justin