Autrijus Tang schrieb:
...
Yeah.  Normally it's okay to call for tests on the trunk, but as Win32
users oftentimes relies on prebuilt binary packages, I guess a dev
release is easier to test with.

I'll roll a release today.

Just a quick note for cygwin users, that on my system this works ok,
but the testsuite detected a Win32::GetShortPathName bug on cygwin.
So I needed the attached patch.
Which probably should not go into the package...
--
Reini Urban
http://xarch.tu-graz.ac.at/home/rurban/
http://phpwiki.org/
cygwin perl5.8.6 Win32::GetShortPathName apparently is broken

--- ./t/2-pp.t.orig     2005-05-28 20:48:29.000000000 +0000
+++ ./t/2-pp.t  2005-06-11 10:42:03.001250000 +0000
@@ -50,7 +50,7 @@
     exit;
 }
 
-if (defined &Win32::GetShortPathName) {
+if (defined &Win32::GetShortPathName and $^O ne 'cygwin') {
     $^X = lc(Win32::GetShortPathName($^X));
     $startperl = lc(Win32::GetShortPathName($startperl));
 }

Reply via email to