Do the same as #29514 for Win32
authorSteve Hay <SteveHay@planit.com>
Wed, 13 Dec 2006 10:37:11 +0000 (10:37 +0000)
committerSteve Hay <SteveHay@planit.com>
Wed, 13 Dec 2006 10:37:11 +0000 (10:37 +0000)
p4raw-id: //depot/perl@29545

win32/FindExt.pm

index 690be6d..eb0eb3b 100644 (file)
@@ -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;