diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-02-09 21:49:11 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-02-09 21:49:11 +0000 |
commit | abd7186c6748d276ced6dd10e94e6c04ba10b768 (patch) | |
tree | e46654dccc04c581538be682d7a2b663ab58cc8c /win32 | |
parent | 3831a7876983b591d0421b0d72b1865c6adac0c1 (diff) | |
download | perl-abd7186c6748d276ced6dd10e94e6c04ba10b768.tar.gz |
Remove special casing for extensions nested inside other extensions.
(Incorporates "[PATCH] Don't include Hash::Utils::FieldHash twice" from
Jerry Hedden.)
Diffstat (limited to 'win32')
-rw-r--r-- | win32/FindExt.pm | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/win32/FindExt.pm b/win32/FindExt.pm index da0bf547c1..5c5a94f625 100644 --- a/win32/FindExt.pm +++ b/win32/FindExt.pm @@ -91,19 +91,6 @@ sub find_ext } $ext{$this_ext} = 'known' if $ext{$this_ext} && $item =~ $no; } - -# Special case: Add in modules that nest beyond the first level. -# Currently threads/shared and Hash/Util/FieldHash, since they are -# not picked up by the recursive find above (and adding in general -# recursive finding breaks SDBM_File/sdbm). -# A.D. 20011025 (SDBM), ajgough 20071008 (FieldHash) - - if (!$prefix && -d "${ext_dir}threads/shared") { - $ext{"threads/shared"} = 'dynamic'; - } - if (!$prefix && -d "${ext_dir}Hash/Util/FieldHash") { - $ext{"Hash/Util/FieldHash"} = 'dynamic'; - } } 1; |