summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2006-07-13 20:31:59 +0000
committerSteve Peters <steve@fisharerojo.org>2006-07-13 20:31:59 +0000
commit4438fa18e7cba3001c09fd5b69d1478785845b88 (patch)
tree906a6b5a7019623657bd6e5a6f125151bd2ba87a /ext
parentcf0d1c66a0d97cdcc6938d91401fa36b9b5a67ac (diff)
downloadperl-4438fa18e7cba3001c09fd5b69d1478785845b88.tar.gz
Version bumps for z/OS fixes.
p4raw-id: //depot/perl@28569
Diffstat (limited to 'ext')
-rw-r--r--ext/Encode/Encode.pm2
-rw-r--r--ext/MIME/Base64/Base64.pm2
-rw-r--r--ext/threads/shared/shared.pm2
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/Encode/Encode.pm b/ext/Encode/Encode.pm
index 7f07b9e66d..ae047553bd 100644
--- a/ext/Encode/Encode.pm
+++ b/ext/Encode/Encode.pm
@@ -4,7 +4,7 @@
package Encode;
use strict;
use warnings;
-our $VERSION = sprintf "%d.%02d", q$Revision: 2.18 $ =~ /(\d+)/g;
+our $VERSION = "2.18_01";
sub DEBUG () { 0 }
use XSLoader ();
XSLoader::load( __PACKAGE__, $VERSION );
diff --git a/ext/MIME/Base64/Base64.pm b/ext/MIME/Base64/Base64.pm
index 43e5bb948f..4c1538dc72 100644
--- a/ext/MIME/Base64/Base64.pm
+++ b/ext/MIME/Base64/Base64.pm
@@ -9,7 +9,7 @@ require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(encode_base64 decode_base64);
-$VERSION = '3.07';
+$VERSION = '3.07_01';
require XSLoader;
XSLoader::load('MIME::Base64', $VERSION);
diff --git a/ext/threads/shared/shared.pm b/ext/threads/shared/shared.pm
index baae73590f..3878f6d961 100644
--- a/ext/threads/shared/shared.pm
+++ b/ext/threads/shared/shared.pm
@@ -7,7 +7,7 @@ BEGIN {
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(share cond_wait cond_timedwait cond_broadcast cond_signal);
- our $VERSION = '0.94';
+ our $VERSION = '0.94_01';
if ($threads::threads) {
*cond_wait = \&cond_wait_enabled;