Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 61250 invoked by uid 500); 5 Aug 2002 14:53:49 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 61238 invoked from network); 5 Aug 2002 14:53:48 -0000 Date: Mon, 5 Aug 2002 10:51:00 -0400 (EDT) From: Cliff Woolley X-X-Sender: root@deepthought.cs.virginia.edu To: dev@apr.apache.org cc: apr-cvs@apache.org Subject: Re: cvs commit: apr configure.in In-Reply-To: <20020805092824.29017.qmail@icarus.apache.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On 5 Aug 2002 martin@apache.org wrote: > martin 2002/08/05 02:28:24 > > Modified: . configure.in > Log: > Fix buggy substitution > > Revision Changes Path > 1.474 +2 -2 apr/configure.in > > Index: configure.in > =================================================================== > RCS file: /home/cvs/apr/configure.in,v > retrieving revision 1.473 > retrieving revision 1.474 > diff -u -r1.473 -r1.474 > --- configure.in 4 Aug 2002 01:52:25 -0000 1.473 > +++ configure.in 5 Aug 2002 09:28:24 -0000 1.474 > @@ -1142,7 +1142,7 @@ > elif test "$ac_cv_sizeof_off_t" = "$ac_cv_sizeof_long"; then > off_t_fmt='#define APR_OFF_T_FMT "ld"' > elif test "$ac_cv_sizeof_off_t" = "$ac_cv_sizeof_long_long"; then > - off_t_fmt='#define APR_OFF_T_FMT $int64_t_fmt' > + off_t_fmt='#define APR_OFF_T_FMT APR_INT64_T_FMT' > else > off_t_fmt='#error Can not determine the proper size for off_t' > fi Are we quite sure that if sizeof(off_t) != sizeof(long) && sizeof(off_t) == sizeof(long long) then sizeof(long long) == 64? --Cliff