diff options
author | Steve Hay <SteveHay@planit.com> | 2007-10-08 10:17:41 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-10-08 10:17:41 +0000 |
commit | 9788a75a4d0043e8bce3f9aa0964e76e23ee2c3c (patch) | |
tree | 3117a57ff901dace0b4946963560090bc2784247 /win32/FindExt.pm | |
parent | 7d3b1f61da54c4cf5210c73ac1c807d0eea47175 (diff) | |
download | perl-9788a75a4d0043e8bce3f9aa0964e76e23ee2c3c.tar.gz |
Do the same as #32061 for Win32, which also fixes a static linking
build problem with Hash/Util/FieldHash
p4raw-id: //depot/perl@32066
Diffstat (limited to 'win32/FindExt.pm')
-rw-r--r-- | win32/FindExt.pm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/win32/FindExt.pm b/win32/FindExt.pm index b2386b1501..4038017b51 100644 --- a/win32/FindExt.pm +++ b/win32/FindExt.pm @@ -103,13 +103,18 @@ sub find_ext } } -# Special case: Add in threads/shared since it is not picked up by the -# recursive find above (and adding in general recursive finding breaks -# SDBM_File/sdbm). A.D. 10/25/2001. +# 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 (!$_[0] && -d "threads/shared") { $ext{"threads/shared"} = 'dynamic'; } + if (!$_[0] && -d "Hash/Util/FieldHash") { + $ext{"Hash/Util/FieldHash"} = 'dynamic'; + } } 1; |