diff options
-rw-r--r-- | win32/FindExt.pm | 7 |
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; |