Re: load order dependency between mod_ldap and mod_authnz_ldap

2011-06-27 Thread Joe Orton
On Sat, Jun 25, 2011 at 10:11:20PM +0200, Graham Leggett wrote: On 06 Jun 2011, at 11:53 PM, William A. Rowe Jr. wrote: Since the move from apr-util-ldap to ap_ldap, mod_ldap needs to be loaded before mod_authnz_ldap. This is somewhat annoying because the default httpd.conf tries to load

Re: svn commit: r916377 - in /httpd/httpd/trunk: CHANGES docs/manual/programs/rotatelogs.xml support/rotatelogs.c

2011-06-27 Thread Joe Orton
On Mon, Jun 20, 2011 at 04:14:10PM +0200, Graham Leggett wrote: On 20 Jun 2011, at 12:58 PM, Plüm, Rüdiger, VF-Group wrote: more general -p mode just added - is it worth keeping? I think it is worth keeping for those people that only need the link. Creating a post rotation script that

Re: load order dependency between mod_ldap and mod_authnz_ldap

2011-06-27 Thread Graham Leggett
On 27 Jun 2011, at 12:28 PM, Joe Orton wrote: This is not so, to fix this, you would need to wrap every single LDAP API function call[1] in an optional function, and if you did that, you would solve the problem that caused you to want to remove apr_ldap from APR in the first place, making the

TR of httpd-2.3.13-beta on June 28 (Tues)

2011-06-27 Thread Jim Jagielski
Subj sez it all...

Re: load order dependency between mod_ldap and mod_authnz_ldap

2011-06-27 Thread William A. Rowe Jr.
On 6/27/2011 8:19 AM, Graham Leggett wrote: mod_ldap - An LDAP shared memory cache mod_authnz_ldap - A user of the LDAP shared memory cache The LDAP API exposes way more functionality than mod_ldap exposes, so while you may have fixed the problem for the special case that is

Re: load order dependency between mod_ldap and mod_authnz_ldap

2011-06-27 Thread William A. Rowe Jr.
On 6/27/2011 9:04 AM, William A. Rowe Jr. wrote: Of course, following Joe's commit, we no longer have the module load order issue (thanks Joe! I'll review win32 within three days per Gregg's notes). Just read Jim's post, which sounds great. I'll get to this tonight.

Re: http_protocol.h, ap_rputs inline spells disaster on MSVC

2011-06-27 Thread Stefan Fritsch
Hi Gregg, On Monday 27 June 2011, Gregg L. Smith wrote: looking at the submitted by in r1131465 this is a part of all the code cleanup I have been seeing in bugzilla of late. It seems however that inlining ap_rputs is causing problems on MSVC. I am using VC9 and here is what I am seeing

Re: load order dependency between mod_ldap and mod_authnz_ldap

2011-06-27 Thread Stefan Fritsch
On Sunday 26 June 2011, Graham Leggett wrote: On 26 Jun 2011, at 3:16 PM, Stefan Fritsch wrote: Nobody said that this would be magically fixed by moving the stuff to HTTPD. But it means that the apr libraries are no longer involved in the mess, which is already very helpful for

Re: Re: http_protocol.h, ap_rputs inline spells disaster on MSVC

2011-06-27 Thread Gregg L. Smith
Hi Stefan, Yes, switching to APR_INLINE did the trick, thanks. Cheers, Gregg -Original Message- From: Stefan Fritsch s...@sfritsch.de To: dev@httpd.apache.org Date: Mon, 27 Jun 2011 19:57:50 +0200 Subject: Re: http_protocol.h, ap_rputs inline spells disaster on MSVC Hi Gregg, On