On Sun, 5 Aug 2001, allan wrote:

> > Stas Bekman wrote:
> > http://perl.apache.org/guide/install.html#Manual_Testing
> > please also provide the output from t/logs/error_log
>
> ok then:
>
> with TEST_VERBOSE=1:
>
> modules/src.........Use of uninitialized value in concatenation (.) or
> string at modules/src.t line 1.
> 1..6
> ok 1
> dir=../src
> ok 2
> main=
> not ok 3
> module_magic_number = 0
> not ok 4
> httpd_version =
> not ok 5
> -I../src -I../src/modules/perl
> ok 6

looks like your Apache source vars get lots after the compilation. After
all you did get to compile it. Seems to me like some peculiar thing that
happens only on osx. I'll let folks who have osx around to chime in.

These are the three tests that fail:

print "main=", $src->main, "\n";
test ++$i, -e join("/", $src->main, "httpd.h");

my $mmn = $src->module_magic_number;
print "module_magic_number = $mmn\n";
test ++$i, $mmn;

my $v = $src->httpd_version;
print "httpd_version = $v\n";
test ++$i, $v;


_____________________________________________________________________
Stas Bekman              JAm_pH     --   Just Another mod_perl Hacker
http://stason.org/       mod_perl Guide  http://perl.apache.org/guide
mailto:[EMAIL PROTECTED]   http://apachetoday.com http://eXtropia.com/
http://singlesheaven.com http://perl.apache.org http://perlmonth.com/


Reply via email to