Re: detecting Apache::Log et al

2001-01-25 Thread Matt Sergeant
On Wed, 24 Jan 2001, Doug MacEachern wrote: On Thu, 18 Jan 2001, Matt Sergeant wrote: I know we've been over this before, but I think I've forgotten! How do I detect if Apache::Log got compiled in a module's Makefile.PL ? I can't do eval("use Apache::Log;") because Apache/Log.pm gets

Re: detecting Apache::Log et al

2001-01-25 Thread Doug MacEachern
On Thu, 25 Jan 2001, Matt Sergeant wrote: with current cvs: use Apache::MyConfig (); if ($Apache::MyConfig::Setup{PERL_LOG_API}) { ... } Is that going to be in mod_perl 1.25? yep. anything that's in the Changes file will be in the next release, in this case that is: include mod_perl

Re: detecting Apache::Log et al

2001-01-24 Thread Doug MacEachern
On Thu, 18 Jan 2001, Matt Sergeant wrote: I know we've been over this before, but I think I've forgotten! How do I detect if Apache::Log got compiled in a module's Makefile.PL ? I can't do eval("use Apache::Log;") because Apache/Log.pm gets installed regardless, its just that the Log.so

detecting Apache::Log et al

2001-01-18 Thread Matt Sergeant
I know we've been over this before, but I think I've forgotten! How do I detect if Apache::Log got compiled in a module's Makefile.PL ? I can't do eval("use Apache::Log;") because Apache/Log.pm gets installed regardless, its just that the Log.so doesn't get compiled. So, how do I do it? --