Re: cvs commit: apr CHANGES apr-config.in

2002-04-02 Thread Jeff Trawick
[EMAIL PROTECTED] writes: jerenkrantz02/04/01 11:30:27 Modified:.CHANGES apr-config.in Log: Fix apr-config so that it will not attempt to cd to bindir if it doesn't exist yet. beauteous!!!

apr_bucket_file_create() args...

2002-04-02 Thread Bill Stoddard
This looks broken to me (at least on Windows). apr_off_t is an int64 and apr_size_t is an int. APU_DECLARE(apr_bucket *) apr_bucket_file_create(apr_file_t *fd, apr_off_t offset, apr_size_t len,

Re: cvs commit: apr CHANGES apr-config.in

2002-04-02 Thread William A. Rowe, Jr.
At 08:13 PM 4/1/2002, Jeff Trawick wrote: [EMAIL PROTECTED] writes: jerenkrantz02/04/01 11:30:27 Modified:.CHANGES apr-config.in Log: Fix apr-config so that it will not attempt to cd to bindir if it doesn't exist yet. beauteous!!! I take this as Justin's +1 ... but

Re: cvs commit: apr STATUS

2002-04-02 Thread William A. Rowe, Jr.
Are these also for consideration in the 2.0.34 release? Bill gregames02/04/01 13:07:13 Modified:buildapr_hints.m4 .STATUS Log: FreeBSD: use fcntl cross-process locks by default. Make note of problems experienced with flock and SysV sems. Revision

Re: cvs commit: apr CHANGES apr-config.in

2002-04-02 Thread William A. Rowe, Jr.
Now tagged with APACHE_2_0_34 jerenkrantz02/04/01 11:30:27 Modified:.CHANGES apr-config.in Log: Fix apr-config so that it will not attempt to cd to bindir if it doesn't exist yet. Revision ChangesPath 1.250 +3 -0 apr/CHANGES 1.15 +5 -1

Re: apr_bucket_file_create() args...

2002-04-02 Thread William A. Rowe, Jr.
It would be, except that we won't handle more than ONE size_t's worth of data at a time within a single bucket. The patch to normalize to one size_t's worth of data took a 71 line delta. The patch to normalize to any off_t's worth of data was at 500 lines and growing when I gave up. I've said it a

Re: cvs commit: apr STATUS

2002-04-02 Thread Jeff Trawick
William A. Rowe, Jr. [EMAIL PROTECTED] writes: Are these also for consideration in the 2.0.34 release? gregames02/04/01 13:07:13 Modified:buildapr_hints.m4 .STATUS Log: FreeBSD: use fcntl cross-process locks by default. Make note of problems

Re: apr_bucket_file_create() args...

2002-04-02 Thread Cliff Woolley
On Mon, 1 Apr 2002, Bill Stoddard wrote: This looks broken to me (at least on Windows). apr_off_t is an int64 and apr_size_t is an int. APU_DECLARE(apr_bucket *) apr_bucket_file_create(apr_file_t *fd, apr_off_t offset,

Re: apr_bucket_file_create() args...

2002-04-02 Thread William A. Rowe, Jr.
At 10:14 PM 4/1/2002, you wrote: Humm... I would be suprised if sendfile has a limit like this. If it does, then it is a bug in the OS IMHO. In principle, sendfile should work on any file supported by the OS... Where do you see 64 bits of size here? BOOL TransmitFile( SOCKET hSocket, HANDLE

Re: apr_bucket_file_create() args...

2002-04-02 Thread Cliff Woolley
On Mon, 1 Apr 2002, William A. Rowe, Jr. wrote: At 10:14 PM 4/1/2002, FirstBill wrote: Humm... I would be suprised if sendfile has a limit like this. If it does, then it is a bug in the OS IMHO. In principle, sendfile should work on any file supported by the OS... Where do you see 64 bits