diff options
author | Steffen Mueller <smueller@cpan.org> | 2011-07-27 22:24:09 +0200 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2011-07-27 22:36:55 +0200 |
commit | b21842bdb5588bb8eb651224624910f5b57d694a (patch) | |
tree | cdb78df9bf67f7e3404f5423c356d8e49b09a988 /dist/ExtUtils-ParseXS | |
parent | ef4474b5b7af564ed5f0979a4019b7fb79bb0233 (diff) | |
download | perl-b21842bdb5588bb8eb651224624910f5b57d694a.tar.gz |
ExtUtils::ParseXS requires 5.8.1
(This is also the update to CPAN's 3.00_04).
Diffstat (limited to 'dist/ExtUtils-ParseXS')
-rw-r--r-- | dist/ExtUtils-ParseXS/Changes | 4 | ||||
-rw-r--r-- | dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/dist/ExtUtils-ParseXS/Changes b/dist/ExtUtils-ParseXS/Changes index f7d321357f..ccb33e6514 100644 --- a/dist/ExtUtils-ParseXS/Changes +++ b/dist/ExtUtils-ParseXS/Changes @@ -1,6 +1,8 @@ Revision history for Perl extension ExtUtils::ParseXS. -3.00_04 - +3.00_04 - Wed Jul 27 22:22:00 CET 2011 + + - Require perl 5.8.1. - Patches from CPAN RT #53938, #61908 Both of these are attempts to fix win32 problems: diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm index 0fcae561bf..8f5fe4ae9b 100644 --- a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm +++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm @@ -1,7 +1,7 @@ package ExtUtils::ParseXS; use strict; -use 5.006; # We use /??{}/ in regexes +use 5.008001; # We use /??{}/ in regexes use Cwd; use Config; use Exporter; |