diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-30 16:03:40 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-30 16:03:40 +0000 |
commit | 76fbd8c4ea7bb4d7a18a2c0a1d508a67659f3068 (patch) | |
tree | 07df987d6dc9101dd46cf553b10d3842b15a9e0f /ext | |
parent | 561c79edc84c161bc73be7aa0d10cde362797d7d (diff) | |
download | perl-76fbd8c4ea7bb4d7a18a2c0a1d508a67659f3068.tar.gz |
More VERSION tuning: to avoid unnecessary Perl upgrades
by CPAN.pm, use rather _00.
p4raw-id: //depot/perl@11047
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Errno/Errno_pm.PL | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Dir.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Handle.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Seekable.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Socket/UNIX.pm | 2 | ||||
-rw-r--r-- | ext/IPC/SysV/Msg.pm | 2 | ||||
-rw-r--r-- | ext/IPC/SysV/Semaphore.pm | 2 | ||||
-rw-r--r-- | ext/IPC/SysV/SysV.pm | 2 | ||||
-rw-r--r-- | ext/Time/HiRes/HiRes.pm | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL index b3514d41e0..58b440b9c4 100644 --- a/ext/Errno/Errno_pm.PL +++ b/ext/Errno/Errno_pm.PL @@ -2,7 +2,7 @@ use ExtUtils::MakeMaker; use Config; use strict; -our $VERSION = "1.111"; +our $VERSION = "1.09_00"; my %err = (); diff --git a/ext/IO/lib/IO/Dir.pm b/ext/IO/lib/IO/Dir.pm index 68b00a3bd6..d09eb7ff0b 100644 --- a/ext/IO/lib/IO/Dir.pm +++ b/ext/IO/lib/IO/Dir.pm @@ -19,7 +19,7 @@ use File::stat; use File::Spec; @ISA = qw(Tie::Hash Exporter); -$VERSION = "1.04"; +$VERSION = "1.03_00"; @EXPORT_OK = qw(DIR_UNLINK); sub DIR_UNLINK () { 1 } diff --git a/ext/IO/lib/IO/Handle.pm b/ext/IO/lib/IO/Handle.pm index 0810422f25..8d9de0f871 100644 --- a/ext/IO/lib/IO/Handle.pm +++ b/ext/IO/lib/IO/Handle.pm @@ -258,7 +258,7 @@ use IO (); # Load the XS module require Exporter; @ISA = qw(Exporter); -$VERSION = "1.22"; +$VERSION = "1.21_00"; @EXPORT_OK = qw( autoflush diff --git a/ext/IO/lib/IO/Seekable.pm b/ext/IO/lib/IO/Seekable.pm index 650f755847..89e8955739 100644 --- a/ext/IO/lib/IO/Seekable.pm +++ b/ext/IO/lib/IO/Seekable.pm @@ -107,7 +107,7 @@ require Exporter; @EXPORT = qw(SEEK_SET SEEK_CUR SEEK_END); @ISA = qw(Exporter); -$VERSION = "1.09"; +$VERSION = "1.08_00"; sub seek { @_ == 3 or croak 'usage: $io->seek(POS, WHENCE)'; diff --git a/ext/IO/lib/IO/Socket/UNIX.pm b/ext/IO/lib/IO/Socket/UNIX.pm index b69aa8ced9..f9651cb9b8 100644 --- a/ext/IO/lib/IO/Socket/UNIX.pm +++ b/ext/IO/lib/IO/Socket/UNIX.pm @@ -13,7 +13,7 @@ use Socket; use Carp; @ISA = qw(IO::Socket); -$VERSION = "1.21"; +$VERSION = "1.20_00"; IO::Socket::UNIX->register_domain( AF_UNIX ); diff --git a/ext/IPC/SysV/Msg.pm b/ext/IPC/SysV/Msg.pm index 3269b265c4..59d44b5f7a 100644 --- a/ext/IPC/SysV/Msg.pm +++ b/ext/IPC/SysV/Msg.pm @@ -11,7 +11,7 @@ use strict; use vars qw($VERSION); use Carp; -$VERSION = "1.01"; +$VERSION = "1.00_00"; { package IPC::Msg::stat; diff --git a/ext/IPC/SysV/Semaphore.pm b/ext/IPC/SysV/Semaphore.pm index 287d438e55..df5dc4ff04 100644 --- a/ext/IPC/SysV/Semaphore.pm +++ b/ext/IPC/SysV/Semaphore.pm @@ -12,7 +12,7 @@ use strict; use vars qw($VERSION); use Carp; -$VERSION = "1.01"; +$VERSION = "1.00_00"; { package IPC::Semaphore::stat; diff --git a/ext/IPC/SysV/SysV.pm b/ext/IPC/SysV/SysV.pm index a85ae5cdc3..9b62bbf4a2 100644 --- a/ext/IPC/SysV/SysV.pm +++ b/ext/IPC/SysV/SysV.pm @@ -14,7 +14,7 @@ use Config; require Exporter; @ISA = qw(Exporter); -$VERSION = "1.04"; +$VERSION = "1.03_00"; @EXPORT_OK = qw( GETALL GETNCNT GETPID GETVAL GETZCNT diff --git a/ext/Time/HiRes/HiRes.pm b/ext/Time/HiRes/HiRes.pm index 0ff4798576..f512145fff 100644 --- a/ext/Time/HiRes/HiRes.pm +++ b/ext/Time/HiRes/HiRes.pm @@ -12,7 +12,7 @@ use XSLoader; @EXPORT_OK = qw (usleep sleep ualarm alarm gettimeofday time tv_interval getitimer setitimer ITIMER_REAL ITIMER_VIRTUAL ITIMER_PROF); -$VERSION = '1.21'; +$VERSION = '1.20_00'; sub AUTOLOAD { my $constname; |