diff options
author | Karl Williamson <public@khwilliamson.com> | 2014-03-04 16:13:36 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2014-03-04 16:40:51 -0700 |
commit | 6ed60307ec0bd14728ad72c8f6fb4c27112cbff6 (patch) | |
tree | 6e7060e19f68c73a21748d75cbd6658eb9439e1b /dist/IO/IO.pm | |
parent | 45479970582e5de29004c3c1ae1e0a4274843567 (diff) | |
download | perl-6ed60307ec0bd14728ad72c8f6fb4c27112cbff6.tar.gz |
dist/IO: Allow to be dual-lived
This dual-lived module has not been able to be compiled on releases
earlier than 5.10.1 since, I believe, that release, and not outside of
blead since commit 6f2d5cbc in the 5.19 series, both due to using macros
that were not backported.
This commit suitably defines the current missing macro when it isn't
available.
Diffstat (limited to 'dist/IO/IO.pm')
-rw-r--r-- | dist/IO/IO.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/IO/IO.pm b/dist/IO/IO.pm index 6edf83c4a4..ba89f0c8e6 100644 --- a/dist/IO/IO.pm +++ b/dist/IO/IO.pm @@ -7,7 +7,7 @@ use Carp; use strict; use warnings; -our $VERSION = "1.30"; +our $VERSION = "1.31"; XSLoader::load 'IO', $VERSION; sub import { |