diff options
author | Jerry D. Hedden <jdhedden@cpan.org> | 2007-04-30 13:06:28 -0400 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-05-02 08:43:08 +0000 |
commit | 47f9f84cc98b8a5779f47ca8a12283098d2816e4 (patch) | |
tree | b39025ba2f6fc9f549813cffe63cd2b380bddcf2 /win32/config_sh.PL | |
parent | 4964fccb418626bbfc96e446747345a4f3e41961 (diff) | |
download | perl-47f9f84cc98b8a5779f47ca8a12283098d2816e4.tar.gz |
Remove ext/Thread
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510704301406t6373912ame78fea5c7a148cf4@mail.gmail.com>
p4raw-id: //depot/perl@31114
Diffstat (limited to 'win32/config_sh.PL')
-rw-r--r-- | win32/config_sh.PL | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/win32/config_sh.PL b/win32/config_sh.PL index 98c01eb3c9..21829fd2e3 100644 --- a/win32/config_sh.PL +++ b/win32/config_sh.PL @@ -46,12 +46,10 @@ FindExt::scan_ext("../ext"); FindExt::scan_ext("ext") if -d 'ext'; # also look in win32/ext/ if it exists FindExt::set_static_extensions(split ' ', $opt{'static_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_ext) || ' '; -$opt{'extensions'} = join(' ',@extensions) || ' '; +$opt{'dynamic_ext'} = join(' ',FindExt::dynamic_ext()) || ' '; +$opt{'extensions'} = join(' ',FindExt::extensions()) || ' '; $opt{'known_extensions'} = join(' ',FindExt::known_extensions()) || ' '; my $pl_h = '../patchlevel.h'; |