Re: cvs commit: apr-util/buckets apr_buckets_file.c

2002-05-16 Thread Brian Pane
[EMAIL PROTECTED] wrote: jwoolley02/05/15 16:10:52 Modified:buckets apr_buckets_file.c Log: file_bucket_read() is not the only caller of file_make_mmap(). file_bucket_setaside() does it as well, and that call was missed when the can_mmap flag was added. This patch moves the can_mmap

[STATUS] (apr) Wed May 15 23:45:18 EDT 2002

2002-05-16 Thread Rodent of Unusual Size
APACHE PORTABLE RUNTIME (APR) LIBRARY STATUS: -*-text-*- Last modified at [$Date: 2002/05/07 03:35:34 $] Release: 2.0a9 : released December 12, 2000 2.0a8 : released November 20, 2000 2.0a7 : released October 8, 2000 2.0a6 : released August 18, 2000 2

[STATUS] (apr-util) Wed May 15 23:45:22 EDT 2002

2002-05-16 Thread Rodent of Unusual Size
APRUTIL LIBRARY STATUS: -*-text-*- Last modified at [$Date: 2001/12/08 00:43:54 $] Release: 2.0a9 : released December 12, 2000 RELEASE SHOWSTOPPERS: * Need apu_compat.h to track the latest renames Status: someone want to step up to diff na

[PATCH] WIN32 implementations of apr_thread_cond_timedwait + apr_thread_cond_wait

2002-05-16 Thread JF B
--- apr/locks/win32/thread_cond.c Wed Mar 13 15:39:22 2002+++ apr_new/locks/win32/thread_cond.c Wed May  8 18:25:52 2002@@ -85,28 +85,33 @@ { DWORD rv; -    while (1) {-    WaitForSingleObject(cond->mutex, INFINITE);-    cond->num_waiting++;-    ReleaseMutex(cond->mutex);+    WaitFo

Re: [PATCH] WIN32 implementations of apr_thread_cond_timedwait + apr_thread_cond_wait

2002-05-16 Thread Aaron Bannert
On Wed, May 15, 2002 at 02:40:33PM -0700, JF B wrote: > --- apr/locks/win32/thread_cond.c Wed Mar 13 15:39:22 2002 > +++ apr_new/locks/win32/thread_cond.c Wed May 8 18:25:52 2002 ... Cool! Could you explain why you thought apr_thread_cond_wait() needed to be altered? I'll try to give this an eye

Re: [PATCH] WIN32 implementations of apr_thread_cond_timedwait + apr_thread_cond_wait

2002-05-16 Thread William A. Rowe, Jr.
At 04:40 PM 5/15/2002, JF B wrote: --- apr/locks/win32/thread_cond.c Wed Mar 13 15:39:22 2002 +++ apr_new/locks/win32/thread_cond.c Wed May  8 18:25:52 2002 @@ -85,28 +85,33 @@  { [...] apr_thread_mutex_lock(mutex); @@ -115,8 +120,52 @@    APR_DECLARE(apr_status_t) apr_thread_cond_timedwait(a

Re: [PATCH] Use libtool dependency code

2002-05-16 Thread Jeff Trawick
Justin Erenkrantz <[EMAIL PROTECTED]> writes: > This patch is a first cut at enabling the libtool intra-library > dependency code for httpd-2.0, apr, and apr-util. This is part of > the rationale for switching to libtool-1.4. It compiles fine here > with libtool-1.4.2 on Linux. > > AIUI, this w

[PATCH] WIN32 implementations of apr_thread_cond_wait + apr_thread_cond_timedwait

2002-05-16 Thread jfbriere
--- apr/locks/win32/thread_cond.c Wed Mar 13 15:39:22 2002 +++ apr_new/locks/win32/thread_cond.c Thu May 16 14:27:03 2002 @@ -85,15 +85,20 @@ { DWORD rv; +apr_thread_mutex_unlock(mutex); while (1) { WaitForSingleObject(cond->mutex, INFINITE); cond->num_wa

Re: [PATCH] Use libtool dependency code

2002-05-16 Thread Jeff Trawick
Jeff Trawick <[EMAIL PROTECTED]> writes: > I'm getting a weird problem with an Apache binary build: > > Binary image successfully created... > exec(): 0509-036 Cannot load program ./bindist/bin/httpd because of the > following errors: > 0509-150 Dependent module libaprutil.so could not