Today I tried a fresh mod_perl build out of svn.
ok, with the rename merged to trunk there are still a few things outstanding that I can see.
mod_perl compiled fine, but libapreq2 had problems:
build/version_check.pl did not found the modules Apache2 and mod_perl. I commented out Apache2 and changed mod_perl to mod_perl2 and it worked:
> svn diff build/version_check.pl Index: build/version_check.pl =================================================================== --- build/version_check.pl (revision 159966) +++ build/version_check.pl (working copy) @@ -32,8 +32,8 @@
sub mp2_version {
eval {
- require Apache2;
- require mod_perl;
+ #require Apache2;
+ require mod_perl2;
$mod_perl::VERSION;
} or do {
require mod_perl;But later, Apache2 was missing - how can I build libapreq without Apache2.pm?
And a sidenote to libapreq2: If libtool is not installed there is a misleading error message:
> ./buildconf removing stale config files checking buildconf prereqs build/version_check.pl failed: no version_string found in ''.
Maybe it should output the name of programm it is testing (libtool in this case).
Bye, Uwe
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
