summaryrefslogtreecommitdiff
path: root/win32/config_sh.PL
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2005-01-19 09:33:27 +0000
committerSteve Hay <SteveHay@planit.com>2005-01-19 09:33:27 +0000
commit0eff23c15d71fe17c30cce5c453ccaf7cb644cb7 (patch)
tree2b92c93c894a23b6cc7264dd448b5ea3e972bb6d /win32/config_sh.PL
parentf203173faf09af5447759fb1352e0e866dcc01fc (diff)
downloadperl-0eff23c15d71fe17c30cce5c453ccaf7cb644cb7.tar.gz
Exclude "Thread" from $Config{extensions}
It is already excluded from $Config{dynamic_ext}, so should not be in $Config{extensions} either. (Note that Thread is actually still built, though. This is just for consistency with Unix builds.) p4raw-id: //depot/perl@23817
Diffstat (limited to 'win32/config_sh.PL')
-rw-r--r--win32/config_sh.PL7
1 files changed, 4 insertions, 3 deletions
diff --git a/win32/config_sh.PL b/win32/config_sh.PL
index 646b5c2026..dd58495c0c 100644
--- a/win32/config_sh.PL
+++ b/win32/config_sh.PL
@@ -45,11 +45,12 @@ while (@{$optref} && $optref->[0] =~ /^([\w_]+)=(.*)$/) {
FindExt::scan_ext("../ext");
FindExt::set_static_extensions(split ' ', $opt{'static_ext'});
-my @dynamic = grep(!/Thread/,FindExt::dynamic_ext());
+my @dynamic_ext = grep(!/Thread/,FindExt::dynamic_ext());
+my @extensions = grep(!/Thread/,FindExt::extensions());
$opt{'nonxs_ext'} = join(' ',FindExt::nonxs_ext()) || ' ';
$opt{'static_ext'} = join(' ',FindExt::static_ext()) || ' ';
-$opt{'dynamic_ext'} = join(' ',@dynamic) || ' ';
-$opt{'extensions'} = join(' ',FindExt::extensions()) || ' ';
+$opt{'dynamic_ext'} = join(' ',@dynamic_ext) || ' ';
+$opt{'extensions'} = join(' ',@extensions) || ' ';
$opt{'known_extensions'} = join(' ',FindExt::known_extensions()) || ' ';
my $pl_h = '../patchlevel.h';