summaryrefslogtreecommitdiff
path: root/win32/FindExt.pm
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2006-12-13 10:37:11 +0000
committerSteve Hay <SteveHay@planit.com>2006-12-13 10:37:11 +0000
commitb62d801f01715ac7b768724578045becb058e358 (patch)
tree6777668662aac988bd44c9e2fb4b4f69249291b7 /win32/FindExt.pm
parentcecf5685359d1599cf3a31ed49f95b583ac5f0da (diff)
downloadperl-b62d801f01715ac7b768724578045becb058e358.tar.gz
Do the same as #29514 for Win32
p4raw-id: //depot/perl@29545
Diffstat (limited to 'win32/FindExt.pm')
-rw-r--r--win32/FindExt.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/win32/FindExt.pm b/win32/FindExt.pm
index 690be6d882..eb0eb3b662 100644
--- a/win32/FindExt.pm
+++ b/win32/FindExt.pm
@@ -100,10 +100,17 @@ 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;