Change 29545 by [EMAIL PROTECTED] on 2006/12/13 10:37:11
Do the same as #29514 for Win32
Affected files ...
... //depot/perl/win32/FindExt.pm#10 edit
Differences ...
==== //depot/perl/win32/FindExt.pm#10 (text) ====
Index: perl/win32/FindExt.pm
--- perl/win32/FindExt.pm#9~29509~ 2006-12-11 05:21:28.000000000 -0800
+++ perl/win32/FindExt.pm 2006-12-13 02:37:11.000000000 -0800
@@ -100,10 +100,17 @@
# 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;
End of Patch.