diff options
author | Steve Hay <SteveHay@planit.com> | 2009-10-03 14:04:31 +0100 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2009-10-03 14:04:31 +0100 |
commit | f4a6a713802da1b781d7108503156fa3a0fe219e (patch) | |
tree | a8330a5b08e2544bce896a4c1b04140c089f781c /win32/FindExt.pm | |
parent | d0a59c98f4f34ddeebddf2659e1f796d77278ecc (diff) | |
download | perl-f4a6a713802da1b781d7108503156fa3a0fe219e.tar.gz |
Make Win32 treat IO-Compress as an XS extension, as was done elsewhere by
commit 4cc80fc4cbbd82e20f7b14b68abb53d552076022
Something is still wrong with the treatment of IO-Compress on (at least)
Win32, though--see:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2009-10/msg00061.html
Diffstat (limited to 'win32/FindExt.pm')
-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'; |