[STATUS] (apr) Wed Nov 21 23:45:26 EST 2001

2001-11-22 Thread Rodent of Unusual Size
APACHE PORTABLE RUNTIME (APR) LIBRARY STATUS: -*-text-*- Last modified at [$Date: 2001/11/14 08:36:16 $] 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

[PATCH] optimization for apr_pool_userdata_set

2001-11-22 Thread Brian Pane
This patch takes advantage of the recent optimizations to apr_hash_t's handling of APR_HASH_KEY_STRING to eliminate a strlen call within apr_pool_userdata_set. --Brian Index: srclib/apr/memory/unix/apr_pools.c === RCS file:

[PATCH] fix warning in apr_mmap_dup

2001-11-22 Thread Joe Orton
The warning was: mmap.c: In function `apr_mmap_dup': mmap.c:180: warning: implicit declaration of function `apr_pmemdup' and here's a fix: Index: mmap.c === RCS file: /home/cvspublic/apr/mmap/unix/mmap.c,v retrieving revision 1.37

Re: [PATCH] fix warning in apr_mmap_dup

2001-11-22 Thread Aaron Bannert
On Thu, Nov 22, 2001 at 10:23:43AM +, Joe Orton wrote: The warning was: mmap.c: In function `apr_mmap_dup': mmap.c:180: warning: implicit declaration of function `apr_pmemdup' committed, thanks! -aaron

umasks, apr_file_perms_set and APR_OS_DEFAULT

2001-11-22 Thread Kevin Pilch-Bisson
Hi All, I'm a developer on the subversion project, and one of the things I'm trying to do is make the files in the .svn administrative directory read-only. In order to do that I have to play around with permissions on a bunch of files. The problem I have run into is that if APR_OS_DEFAULT is is

Re: umasks, apr_file_perms_set and APR_OS_DEFAULT

2001-11-22 Thread Kevin Pilch-Bisson
On Thu, Nov 22, 2001 at 02:48:15PM -0500, Kevin Pilch-Bisson wrote: Hi All, I'm a developer on the subversion project, and one of the things I'm trying to do is make the files in the .svn administrative directory read-only. In order to do that I have to play around with permissions on a