From dev-return-17564-apmail-apr-dev-archive=apr.apache.org@apr.apache.org Thu Nov 16 14:17:42 2006 Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 4150 invoked from network); 16 Nov 2006 14:17:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Nov 2006 14:17:41 -0000 Received: (qmail 95762 invoked by uid 500); 16 Nov 2006 14:17:50 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 95726 invoked by uid 500); 16 Nov 2006 14:17:50 -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 95713 invoked by uid 99); 16 Nov 2006 14:17:50 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Nov 2006 06:17:50 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of trawick@gmail.com designates 64.233.182.187 as permitted sender) Received: from [64.233.182.187] (HELO nf-out-0910.google.com) (64.233.182.187) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Nov 2006 06:17:37 -0800 Received: by nf-out-0910.google.com with SMTP id x37so635680nfc for ; Thu, 16 Nov 2006 06:17:15 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=mctT7kkcCSs9GCvwjbaMieB4/HHX5W1ksGkyLgEywI2VtyhEfzmE3Ok/QAIKBCn/U7c1qvNb0aoo9+QUeYB3OszAkbAs4Se74yHOlpcVWkhIp98JH8EvnlzaNGOUotAVSkNvB6QIzPgwyD3WZ172MD+7xwa2+7evdqyvHRi6G2A= Received: by 10.82.111.8 with SMTP id j8mr68483buc.1163686635314; Thu, 16 Nov 2006 06:17:15 -0800 (PST) Received: by 10.82.161.18 with HTTP; Thu, 16 Nov 2006 06:17:15 -0800 (PST) Message-ID: Date: Thu, 16 Nov 2006 09:17:15 -0500 From: "Jeff Trawick" To: dev@apr.apache.org Subject: APR_HAS_LARGE_FILES and 64-bit builds MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Should it be on or off? IOW, should it mean that OS LFS support for 32-bit apps such as fstat64() is used, or should it mean that APR can handle large files? Here's how it is chosen today: if test "${ac_cv_sizeof_off_t}${apr_cv_use_lfs64}" = "4yes"; then # Enable LFS aprlfs=1 AC_CHECK_FUNCS([mmap64 sendfile64 sendfilev64 mkstemp64 readdir64_r]) else aprlfs=0 fi