Tests fail under SuSE 10.1 (64bit)

2007-03-02 Thread Daniel Baldoni
G'day folks, Firstly, I apologise if this has been answered before but my last few hours of searching (including archives of this list) haven't turned up anything and my hair is getting pretty thin. :-| I am in the (what I consider) enviable position of being able to stipulate the combination

Re: [PATCH 39299] - Patch review request

2007-03-02 Thread Basant Kukreja
On Fri, Mar 02, 2007 at 08:39:25AM +0100, Plüm, Rüdiger, VF EITO wrote: -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 2. März 2007 02:15 An: dev@httpd.apache.org Betreff: Re: [PATCH 39299] - Patch review request Thanks

Re: Module Crashes if build as a shared object

2007-03-02 Thread Jeff Trawick
On 2/28/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi all One of my apache module crashes if it is used as shared module but works fine if it is build as static module. Watch out for static variable usage in your module. That's a common cause of this type of problem. Static variables

Re: util_ldap.c use of hardcoded sizelimit on ldap_search_ext_s causing error

2007-03-02 Thread Brad Nicholes
Looks good, I think I like your first suggestion better, putting the #ifdef in apr_ldap.h.in. This seems a little more straight forward rather than hiding the value in configure. Brad On 3/1/2007 at 7:07 PM, in message [EMAIL PROTECTED], David Jones [EMAIL PROTECTED] wrote: How about:

Re: Small patch to ab apr_socket_recv error handling

2007-03-02 Thread Filip Hanik - Dev Lists
is the patch below looking good? does it need adjustments? do I need to follow a different process? Filip Filip Hanik - Dev Lists wrote: ok, final patch, this one also adds in Content-Length: 0 when keep alive is used. somehow, most containers will not do keep alive unless there is a content

Several questions about writing modules

2007-03-02 Thread Fabiano Sidler
Hi folks! Although the Apache webserver has a somewhat comprehensive API, there are still questions I can't answer: What about pointers in the module_config struct? (How) does the httpd guarantee the proper deallocation of referenced memory? Do I have to register a dealloc function with each of

Re: Several questions about writing modules

2007-03-02 Thread Nick Kew
On Sat, 3 Mar 2007 01:04:58 +0100 Fabiano Sidler [EMAIL PROTECTED] wrote: Hi folks! Although the Apache webserver has a somewhat comprehensive API, there are still questions I can't answer: What about pointers in the module_config struct? (How) does the httpd guarantee the proper

Re: Several questions about writing modules

2007-03-02 Thread Fabiano Sidler
Thank you for your immediate answers! 2007/3/3, Nick Kew [EMAIL PROTECTED]: What about pointers in the module_config struct? (How) does the httpd guarantee the proper deallocation of referenced memory? Do I have to register a dealloc function with each of my module_config structs? Nope.