Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 17309 invoked from network); 1 Oct 2007 07:22:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Oct 2007 07:22:55 -0000 Received: (qmail 85879 invoked by uid 500); 1 Oct 2007 07:22:38 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 85825 invoked by uid 500); 1 Oct 2007 07:22:38 -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 85814 invoked by uid 99); 1 Oct 2007 07:22:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Oct 2007 00:22:38 -0700 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [64.202.165.99] (HELO smtpauth05.prod.mesa1.secureserver.net) (64.202.165.99) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 01 Oct 2007 07:22:34 +0000 Received: (qmail 14922 invoked from network); 1 Oct 2007 07:22:12 -0000 Received: from unknown (24.15.193.17) by smtpauth05.prod.mesa1.secureserver.net (64.202.165.99) with ESMTP; 01 Oct 2007 07:22:12 -0000 Message-ID: <4700A023.8020101@rowe-clan.net> Date: Mon, 01 Oct 2007 02:22:11 -0500 From: "William A. Rowe, Jr." User-Agent: Thunderbird 1.5.0.12 (X11/20070719) MIME-Version: 1.0 To: "dev@httpd.apache.org" Subject: Time to chop exports.c in half? Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org server/Makefile.in; export_files: tmp=export_files_unsorted.txt; \ rm -f $$tmp && touch $$tmp; \ for dir in $(EXPORT_DIRS); do \ ls $$dir/*.h >> $$tmp; \ done; \ for dir in $(EXPORT_DIRS_APR); do \ (ls $$dir/ap[ru].h $$dir/ap[ru]_*.h >> $$tmp 2>/dev/null); \ done; \ sort -u $$tmp > $@; \ rm -f $$tmp Isn't it time, already, do do away with everything related to EXPORT_DIRS_APR in httpd 2.3-dev? (Obviously I wouldn't suggest changing anything for 2.2). It seems every modern OS should do a perfectly respectible job of binding dynamic libraries and their symbols without this extra, leftover cruft. Bill