Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 71734 invoked from network); 15 Jul 2004 18:00:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 15 Jul 2004 18:00:45 -0000 Received: (qmail 92561 invoked by uid 500); 15 Jul 2004 18:00:44 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 92450 invoked by uid 500); 15 Jul 2004 18:00:43 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 92437 invoked by uid 99); 15 Jul 2004 18:00:43 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Date: Thu, 15 Jul 2004 11:00:34 -0700 From: Justin Erenkrantz To: Noah Misch cc: APR Dev List , jorton@redhat.com Subject: Re: [PATCH] update find_ap{ru}.m4 for ap{ru}-1-config was Re: 1.0.0 RC4 (apr-config -> apr-1-config) Message-ID: <7766CD9323077204D4182A85@st-augustin.ics.uci.edu> In-Reply-To: <20040715160716.GB1507@orchestra.cs.caltech.edu> References: <013f01c4691e$b0c2fa80$7500a8c0@goliath> <01e701c469b4$fc63b880$5308a8c0@robinson.cam.ac.uk> <20040714152133.GA25796@redhat.com> <05ad01c469e8$eb104e20$5308a8c0@robinson.cam.ac.uk> <99CA65382203D77E24187888@[10.0.1.57]> <00f401c46a4f$726be210$5308a8c0@robinson.cam.ac.uk> <20040715100213.GB29967@redhat.com> <20040715123433.GA32693@orchestra.cs.caltech.edu> <20040715160716.GB1507@orchestra.cs.caltech.edu> X-Mailer: Mulberry/3.1.6 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Spam-Status: No, score=-0.1 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.0.0-pre1-r21475 X-Spam-Checker-Version: SpamAssassin 3.0.0-pre1-r21475 (2004-06-19) on scotch.ics.uci.edu X-Virus-Scanned: clamd / ClamAV version 0.70, clamav-milter version 0.70j X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N --On Thursday, July 15, 2004 9:07 AM -0700 Noah Misch wrote: > If APR_FIND_APR accepts version constraints, should it not interpret them > to at least the maximum granularity at which APR allows API changes? I > think this is not difficult: I disagree. When you have multiple parallel installs of the same major version all sorts of things can go wonky. In your scenario, imagine: /usr having apr-1.1.5 installed and then /opt/apache having apr-1.2.5 installed. That's going to be a nasty conflict when the user tries to run it depending upon the characteristics of the run-time linker (not to mention compiler search order). You might override the one in /usr/lib with the one in /opt/apache or you might not.. I'd strongly prefer we not open the door to a slew of errors. The granularity should be at the major version and no finer. -- justin