Stas Bekman wrote:
Doing binary search on various checkout dates, it showed that the guilty
change is:
And the fix (workaround) is:
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
retrieving revision 1.140
diff -u -r1.140 Makefile.PL
--- Makefile.PL 27 Jun 2004 23:41:06 -0000 1.140
+++ Makefile.PL 30 Jun 2004 22:53:03 -0000
@@ -472,7 +472,6 @@
package MY;
use Config;
-use File::Spec::Functions qw(catdir);
use constant WIN32 => $^O eq 'MSWin32';
my $apache_test_install;
@@ -489,7 +488,7 @@
if (WIN32) {
ModPerl::MM::add_dep(\$string, pure_all => 'aprext');
- my $aprext = catdir qw(xs APR aprext);
+ my $aprext = File::Spec->catdir(qw(xs APR aprext));
$string .= <<"EOF";
aprext:
Apparently MakeMaker in 5.6.x was a bit broken...
--
__________________________________________________________________
Stas Bekman JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/ mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org http://ticketmaster.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]