What is the output of that script supposed to look like? Without doing anything I have issues:

[EMAIL PROTECTED]:~# tar -xzf perlsetvar-bug-mp2.tar.gz
[EMAIL PROTECTED]:~# cd perlsetvar-bug-mp2
[EMAIL PROTECTED]:~/perlsetvar-bug-mp2# perl Makefile.PL
Checking if your kit is complete...
Looks good
Writing Makefile for perlsetvar-bug
[EMAIL PROTECTED]:~/perlsetvar-bug-mp2# ./t/TEST -conf
[warning] setting ulimit to allow core files
ulimit -c unlimited; /usr/bin/perl /data1/system/root/perlsetvar-bug-mp2/t/TEST -conf
[warning] cleaning out current configuration
[ error] configure() has failed:
find_apache_module: module name argument is required at /kinnetics/component/httpd/site_perl/i386-linux-thread-multi/Apache/TestConfig.pm line 702.


[warning] forcing Apache::TestConfig object save
[warning] run 't/TEST -clean' to clean up before continuing
[EMAIL PROTECTED]:~/perlsetvar-bug-mp2#



BTW, I emptied the Authentication and Authorization handlers and it still fails using my original test.


---------------

package Apache::Kinnetics::Authenticate;

use strict;
use Apache::Const -compile => ':common';

sub handler {
        return Apache::OK;
}

1;

---------------

package Apache::Kinnetics::Authorize;

use strict;
use Apache::Const -compile => ':common';

sub handler {
        return Apache::OK;
}

1;


Geoffrey Young wrote:

Matthew Darwin wrote:

Ok,

I removed this section of httpd.conf, I start seeing output from your
script:

<Perl >

...

ok, that's a start :)

there are really too many variables at this point for me to figure out what
you are trying to do.  if you could adjust t/conf/extra.conf.in in small
increments until t/bug.t fails it would help isolate the issue.  after each
adjustment, don't forget to run

 $ t/TEST -conf

so that your changes to t/conf/extra.conf.in are recognized.

--Geoff


-- Matthew Darwin [EMAIL PROTECTED] http://www.mdarwin.ca

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to