From: "Doug MacEachern" <[EMAIL PROTECTED]>
Sent: Wednesday, October 17, 2001 12:14 PM
> On Wed, 17 Oct 2001, William A. Rowe, Jr. wrote:
>
> > It's ok, that patch broke win32 as well... we end up with paths like
>
> wha? the 5.005 compat patch did not change behavior at all. [...]
>
> > C:/httpd-test/perl-framework/C:/httpd-test/perl-framework/t/conf
> >
> > since it doesn't look to Unix like C:/ starts a path.
> >
> > I'd suggest we revert, and find a better solution for Win32.
>
> you must be talking about the patch that added this to Apache/TestRun.pm,
> right??
Yup my bad... and it solves Ken's problem, perhaps.
> BEGIN {
> #Apache likes everything to be in /unix/path/file.ext format
> $INC{'File/Spec.pm'} = __FILE__;
> require File::Spec::Unix;
> @File::Spec::ISA = qw(File::Spec::Unix);
> }