diff options
-rw-r--r-- | win32/FindExt.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/FindExt.pm b/win32/FindExt.pm index fe1febd839..4355a1769a 100644 --- a/win32/FindExt.pm +++ b/win32/FindExt.pm @@ -91,7 +91,7 @@ sub find_ext # Temporary hack to cope with smokers that are not clearing directories: next if $ext{$this_ext}; - if (has_xs_or_c("$ext_dir$item")) { + if (has_xs_or_c("$ext_dir$item") or $this_ext eq 'IO/Compress') { $ext{$this_ext} = $static{$this_ext} ? 'static' : 'dynamic'; } else { $ext{$this_ext} = 'nonxs'; |