summaryrefslogtreecommitdiff
path: root/win32/FindExt.pm
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-02-09 21:49:11 +0000
committerNicholas Clark <nick@ccl4.org>2009-02-09 21:49:11 +0000
commitabd7186c6748d276ced6dd10e94e6c04ba10b768 (patch)
treee46654dccc04c581538be682d7a2b663ab58cc8c /win32/FindExt.pm
parent3831a7876983b591d0421b0d72b1865c6adac0c1 (diff)
downloadperl-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/FindExt.pm')
-rw-r--r--win32/FindExt.pm13
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;