diff options
author | Steve Hay <SteveHay@planit.com> | 2007-04-27 17:12:05 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-04-27 17:12:05 +0000 |
commit | a4135a11698ff2a7a71d2dbac683f5bb1ed2ab7c (patch) | |
tree | 3911ee83e361d56652494612ab7885d6c6f450bc /win32/FindExt.pm | |
parent | e64b1bd1d100534286224b3b46db4d9c6a8cb3a9 (diff) | |
download | perl-a4135a11698ff2a7a71d2dbac683f5bb1ed2ab7c.tar.gz |
Do the same as #31095 for Win32
p4raw-id: //depot/perl@31103
Diffstat (limited to 'win32/FindExt.pm')
-rw-r--r-- | win32/FindExt.pm | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/win32/FindExt.pm b/win32/FindExt.pm index f0477b8846..298b44f9f1 100644 --- a/win32/FindExt.pm +++ b/win32/FindExt.pm @@ -100,17 +100,10 @@ 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. -# Ditto for IO/Compress/Base and IO/Compress/Zlib if (!$_[0] && -d "threads/shared") { $ext{"threads/shared"} = 'dynamic'; } - if (!$_[0] && -d "IO/Compress/Base") { - $ext{"IO/Compress/Base"} = 'nonxs'; - } - if (!$_[0] && -d "IO/Compress/Zlib") { - $ext{"IO/Compress/Zlib"} = 'nonxs'; - } } 1; |