Skip to content

Commit 0745ca0

Browse files
committedMay 11, 2024·
fix vista build
1 parent 83bdfcf commit 0745ca0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎lib/Perl/Dist/APPerl.pm

+3-3
Original file line numberDiff line numberDiff line change
@@ -1077,9 +1077,9 @@ sub Build {
10771077
print "cd ".$SiteConfig->{perl_repo}."\n";
10781078
chdir($SiteConfig->{perl_repo}) or die "Failed to enter perl repo";
10791079
# build using cosmo's zlib to avoid name clashes or including two versions of zlib
1080-
local $ENV{'BUILD_ZLIB'} = 'False';
1081-
local $ENV{'ZLIB_INCLUDE'} = $SiteConfig->{cosmocc} . '/include/third_party/zlib';
1082-
local $ENV{'ZLIB_LIB'} = '';
1080+
local $ENV{'BUILD_ZLIB'} = 'False' if $itemconfig->{cosmo3};
1081+
local $ENV{'ZLIB_INCLUDE'} = $SiteConfig->{cosmocc} . '/include/third_party/zlib' if $itemconfig->{cosmo3};
1082+
local $ENV{'ZLIB_LIB'} = '' if $itemconfig->{cosmo3};
10831083
_command_or_die('make');
10841084
$PERL_APE = "$SiteConfig->{perl_repo}/perl.com";
10851085
@perl_config_cmd = ('./perl', '-Ilib');

0 commit comments

Comments
 (0)
Please sign in to comment.