File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for the Perl extension Win32.
2
2
3
+ 0.42 [2011-01-06]
4
+ - remove brittle test for Win32::GetLongPathName($ENV{SYSTEMROOT})
5
+ which will fail if the case of the environment value doesn't
6
+ exactly match the case of the directory name on the filesystem.
7
+
3
8
0.41 [2010-12-10]
4
9
- Fix Win32::GetChipName() to return the native processor type when
5
10
running 32-bit Perl on 64-bit Windows (WOW64). This will also
Original file line number Diff line number Diff line change 1
1
--- # YAML:1.0
2
2
name : Win32
3
3
abstract : Interfaces to some Win32 API Functions
4
- version : 0.41
4
+ version : 0.42
5
5
author :
6
6
7
7
license : perl
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ package Win32;
8
8
require DynaLoader;
9
9
10
10
@ISA = qw| Exporter DynaLoader| ;
11
- $VERSION = ' 0.41 ' ;
11
+ $VERSION = ' 0.42 ' ;
12
12
$XS_VERSION = $VERSION ;
13
13
$VERSION = eval $VERSION ;
14
14
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ if ($drive) {
34
34
for (@paths ) {
35
35
s / ^c:/ $drive / ;
36
36
}
37
- push @paths , $ENV {SYSTEMROOT } if $ENV {SYSTEMROOT };
38
37
}
39
38
my %expect ;
40
39
@expect {@paths } = map { my $x = $_ ;
You can’t perform that action at this time.
0 commit comments