summaryrefslogtreecommitdiff
path: root/cpan/DB_File
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-12-10 23:09:29 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-12-10 23:09:29 +0000
commita56f0d0868ac98883133e4cde91091a3050db4ef (patch)
tree6104ecb7d5713cd9b0047ef7232acb786c6f5b4d /cpan/DB_File
parent2d5b99ed9300325a390bd28bc3b358b17508216c (diff)
downloadperl-a56f0d0868ac98883133e4cde91091a3050db4ef.tar.gz
Update DB_File to CPAN version 1.834
[DELTA] 1.834 11 Dec 2014 * Makefile.PL: version check is missing a zero RT #100844
Diffstat (limited to 'cpan/DB_File')
-rw-r--r--cpan/DB_File/DB_File.pm4
-rw-r--r--cpan/DB_File/DB_File.xs2
-rw-r--r--cpan/DB_File/Makefile.PL2
3 files changed, 4 insertions, 4 deletions
diff --git a/cpan/DB_File/DB_File.pm b/cpan/DB_File/DB_File.pm
index 8ab6a6ae39..900e6da635 100644
--- a/cpan/DB_File/DB_File.pm
+++ b/cpan/DB_File/DB_File.pm
@@ -9,7 +9,7 @@
package DB_File::HASHINFO ;
-require 5.00803;
+require 5.008003;
use warnings;
use strict;
@@ -163,7 +163,7 @@ our ($db_version, $use_XSLoader, $splice_end_array_no_length, $splice_end_array,
use Carp;
-$VERSION = "1.833" ;
+$VERSION = "1.834" ;
$VERSION = eval $VERSION; # needed for dev releases
{
diff --git a/cpan/DB_File/DB_File.xs b/cpan/DB_File/DB_File.xs
index d060dcb215..0b20a1c5a9 100644
--- a/cpan/DB_File/DB_File.xs
+++ b/cpan/DB_File/DB_File.xs
@@ -6,7 +6,7 @@
All comments/suggestions/problems are welcome
- Copyright (c) 1995-2013 Paul Marquess. All rights reserved.
+ Copyright (c) 1995-2014 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
diff --git a/cpan/DB_File/Makefile.PL b/cpan/DB_File/Makefile.PL
index 70857be329..372b9f0ead 100644
--- a/cpan/DB_File/Makefile.PL
+++ b/cpan/DB_File/Makefile.PL
@@ -5,7 +5,7 @@ use ExtUtils::MakeMaker 5.16 ;
use Config ;
die "DB_File needs Perl 5.008_03 or better. This is $]\n"
- if $] < 5.00803;
+ if $] < 5.008003;
my $VER_INFO ;
my $LIB_DIR ;