From b62d801f01715ac7b768724578045becb058e358 Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Wed, 13 Dec 2006 10:37:11 +0000 Subject: [PATCH] Do the same as #29514 for Win32 p4raw-id: //depot/perl@29545 --- win32/FindExt.pm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/win32/FindExt.pm b/win32/FindExt.pm index 690be6d..eb0eb3b 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; -- 2.7.4