I am only doing this in HEAD not the 2.0 branch. Large file support in the 2.0 branch will remain off as it has always been. Also, I seemed to have found the problem and fixed it. Large file support is turned back on for NetWare.
Brad Brad Nicholes Senior Software Engineer Novell, Inc., the leading provider of Net business solutions http://www.novell.com >>> "William A. Rowe, Jr." <[EMAIL PROTECTED]> Tuesday, December 16, 2003 9:08:11 AM >>> Red flag, this means you break binary compatibility and we had better call that out somehow, if this code is tagged and released before the solution is found. Bill At 02:32 PM 12/13/2003, [EMAIL PROTECTED] wrote: >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? */ > > >