Return-Path: Delivered-To: apmail-apr-cvs-archive@www.apache.org Received: (qmail 33108 invoked from network); 13 Dec 2003 20:32:50 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 13 Dec 2003 20:32:50 -0000 Received: (qmail 13440 invoked by uid 500); 13 Dec 2003 20:32:40 -0000 Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 13396 invoked by uid 500); 13 Dec 2003 20:32:39 -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 13382 invoked from network); 13 Dec 2003 20:32:39 -0000 Date: 13 Dec 2003 20:32:49 -0000 Message-ID: <20031213203249.33062.qmail@minotaur.apache.org> From: bnicholes@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/include apr.hnw X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N bnicholes 2003/12/13 12:32:49 Modified: include apr.hnw Log: large file support is causing problems with acrobat reader and PDF files. Turning it off on NetWare until I can figure out why. Revision Changes Path 1.42 +5 -1 apr/include/apr.hnw Index: apr.hnw =================================================================== RCS file: /home/cvs/apr/include/apr.hnw,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- apr.hnw 25 Nov 2003 19:30:02 -0000 1.41 +++ apr.hnw 13 Dec 2003 20:32:49 -0000 1.42 @@ -227,7 +227,7 @@ #define APR_HAS_UNICODE_FS 0 #define APR_HAS_PROC_INVOKED 0 #define APR_HAS_USER 1 -#define APR_HAS_LARGE_FILES 1 +#define APR_HAS_LARGE_FILES 0 #define APR_HAS_XTHREAD_FILES 0 #define APR_HAS_OS_UUID 0 @@ -262,7 +262,11 @@ typedef size_t apr_size_t; typedef ssize_t apr_ssize_t; +#if APR_HAS_LARGE_FILES typedef off64_t apr_off_t; +#else +typedef off_t apr_off_t; +#endif typedef int apr_socklen_t; /* Are we big endian? */