Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 85965 invoked from network); 17 Jan 2011 17:03:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Jan 2011 17:03:08 -0000 Received: (qmail 52212 invoked by uid 500); 17 Jan 2011 17:03:08 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 52124 invoked by uid 500); 17 Jan 2011 17:03:07 -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 52117 invoked by uid 99); 17 Jan 2011 17:03:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Jan 2011 17:03:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Jan 2011 17:03:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4769D2388A84; Mon, 17 Jan 2011 17:02:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1059989 - in /apr/apr/branches/1.4.x: configure.in include/apr.h.in Date: Mon, 17 Jan 2011 17:02:38 -0000 To: commits@apr.apache.org From: jim@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110117170238.4769D2388A84@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jim Date: Mon Jan 17 17:02:37 2011 New Revision: 1059989 URL: http://svn.apache.org/viewvc?rev=1059989&view=rev Log: Update for Darwin - use previously updated FMT Modified: apr/apr/branches/1.4.x/configure.in apr/apr/branches/1.4.x/include/apr.h.in Modified: apr/apr/branches/1.4.x/configure.in URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/configure.in?rev=1059989&r1=1059988&r2=1059989&view=diff ============================================================================== --- apr/apr/branches/1.4.x/configure.in (original) +++ apr/apr/branches/1.4.x/configure.in Mon Jan 17 17:02:37 2011 @@ -83,12 +83,6 @@ AH_BOTTOM([ #define SIZEOF_STRUCT_IOVEC 8 #endif -/* - * ./i386/_types.h:typedef long long __int64_t; - * ./sys/_types.h:typedef __int64_t __darwin_off_t; - * ./sys/types.h:typedef __darwin_off_t off_t; - * So off_t is always long long - */ #undef APR_OFF_T_STRFN #define APR_OFF_T_STRFN APR_INT64_STRFN Modified: apr/apr/branches/1.4.x/include/apr.h.in URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/include/apr.h.in?rev=1059989&r1=1059988&r2=1059989&view=diff ============================================================================== --- apr/apr/branches/1.4.x/include/apr.h.in (original) +++ apr/apr/branches/1.4.x/include/apr.h.in Mon Jan 17 17:02:37 2011 @@ -529,14 +529,8 @@ typedef apr_uint32_t apr_uin #define APR_IS_BIGENDIAN 0 #endif -/* - * ./i386/_types.h:typedef long long __int64_t; - * ./sys/_types.h:typedef __int64_t __darwin_off_t; - * ./sys/types.h:typedef __darwin_off_t off_t; - * So off_t is always long long - */ #undef APR_OFF_T_FMT -#define APR_OFF_T_FMT "lld" +#define APR_OFF_T_FMT APR_INT64_T_FMT #endif /* DARWIN_10 */