From dev-return-15162-apmail-apr-dev-archive=apr.apache.org@apr.apache.org Fri Dec 16 12:15:12 2005 Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 67959 invoked from network); 16 Dec 2005 12:15:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 16 Dec 2005 12:15:10 -0000 Received: (qmail 25582 invoked by uid 500); 16 Dec 2005 12:14:49 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 25376 invoked by uid 500); 16 Dec 2005 12:14:47 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 25354 invoked by uid 99); 16 Dec 2005 12:14:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2005 04:14:47 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of jorton@redhat.com designates 66.187.233.31 as permitted sender) Received: from [66.187.233.31] (HELO mx1.redhat.com) (66.187.233.31) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2005 04:14:46 -0800 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id jBGCEPaw013241; Fri, 16 Dec 2005 07:14:25 -0500 Received: from radish.cambridge.redhat.com (radish.cambridge.redhat.com [172.16.18.90]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id jBGCEJ116432; Fri, 16 Dec 2005 07:14:19 -0500 Received: (from jorton@localhost) by radish.cambridge.redhat.com (8.13.4/8.13.4/Submit) id jBGCEIDQ011427; Fri, 16 Dec 2005 12:14:18 GMT Date: Fri, 16 Dec 2005 12:14:18 +0000 From: Joe Orton To: dev@apr.apache.org Cc: commits@apr.apache.org Subject: Re: svn commit: r356957 - in /apr: apr-util/trunk/build/find_apu.m4 apr/trunk/build/find_apr.m4 Message-ID: <20051216121418.GA10716@redhat.com> Mail-Followup-To: dev@apr.apache.org, commits@apr.apache.org References: <20051215001601.48864.qmail@minotaur.apache.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20051215001601.48864.qmail@minotaur.apache.org> User-Agent: Mutt/1.4.2.1i X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Thu, Dec 15, 2005 at 12:16:01AM -0000, colm@apache.org wrote: > + if test "$apu_acceptable" != "yes"; then > + AC_MSG_WARN([Found APU in $apu_config, but we think it's bad]) These error messages are pretty awful! Never write UI in the first person, the configure script is not sentient and it can't think for itself, at least not yet :) e.g. AC_MSG_WARN([skipped APR-util at $apu_config, version not acceptable]) is better if that's appropriate. joe