Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 41308 invoked from network); 12 Oct 2007 14:44:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Oct 2007 14:44:30 -0000 Received: (qmail 94836 invoked by uid 500); 12 Oct 2007 14:44:18 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 94732 invoked by uid 500); 12 Oct 2007 14:44:18 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 94721 invoked by uid 99); 12 Oct 2007 14:44:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Oct 2007 07:44:18 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Oct 2007 14:44:29 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C92FF1A9838; Fri, 12 Oct 2007 07:44:09 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r584171 - /apr/apr/trunk/build/apr_common.m4 Date: Fri, 12 Oct 2007 14:44:08 -0000 To: commits@apr.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071012144409.C92FF1A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jorton Date: Fri Oct 12 07:44:08 2007 New Revision: 584171 URL: http://svn.apache.org/viewvc?rev=584171&view=rev Log: * build/apr_common.m4 (APR_CHECK_TYPES_COMPATIBLE): Set the cache variable correctly on success even if actions-if-true are specified. Modified: apr/apr/trunk/build/apr_common.m4 Modified: apr/apr/trunk/build/apr_common.m4 URL: http://svn.apache.org/viewvc/apr/apr/trunk/build/apr_common.m4?rev=584171&r1=584170&r2=584171&view=diff ============================================================================== --- apr/apr/trunk/build/apr_common.m4 (original) +++ apr/apr/trunk/build/apr_common.m4 Fri Oct 12 07:44:08 2007 @@ -971,5 +971,6 @@ AC_CACHE_CHECK([whether $1 and $2 are the same], apr_cvname, [ AC_TRY_COMPILE(AC_INCLUDES_DEFAULT, [ int foo[0 - !__builtin_types_compatible_p($1, $2)]; -], [apr_cvname=yes $3], [apr_cvname=no])]) +], [apr_cvname=yes +$3], [apr_cvname=no])]) ])