summaryrefslogtreecommitdiff
path: root/cpan/DB_File
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-12-23 14:03:54 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-12-23 14:03:54 +0000
commit1bb0c253189bee57fc50a82b1420a60f2e677043 (patch)
tree40d94939d246dc80d3d5141db8312c33d706308c /cpan/DB_File
parentbb9bfaa4cc8652ab8df46818fbf2f712debcc468 (diff)
downloadperl-1bb0c253189bee57fc50a82b1420a60f2e677043.tar.gz
Update DB_File to CPAN version 1.835
[DELTA] 1.835 23 Dec 2014 * Silence more compiler warnings
Diffstat (limited to 'cpan/DB_File')
-rw-r--r--cpan/DB_File/DB_File.pm2
-rw-r--r--cpan/DB_File/DB_File.xs2
-rw-r--r--cpan/DB_File/Makefile.PL2
3 files changed, 3 insertions, 3 deletions
diff --git a/cpan/DB_File/DB_File.pm b/cpan/DB_File/DB_File.pm
index 900e6da635..9b1f957738 100644
--- a/cpan/DB_File/DB_File.pm
+++ b/cpan/DB_File/DB_File.pm
@@ -163,7 +163,7 @@ our ($db_version, $use_XSLoader, $splice_end_array_no_length, $splice_end_array,
use Carp;
-$VERSION = "1.834" ;
+$VERSION = "1.835" ;
$VERSION = eval $VERSION; # needed for dev releases
{
diff --git a/cpan/DB_File/DB_File.xs b/cpan/DB_File/DB_File.xs
index 0b20a1c5a9..151ec31dc6 100644
--- a/cpan/DB_File/DB_File.xs
+++ b/cpan/DB_File/DB_File.xs
@@ -314,7 +314,7 @@ typedef db_recno_t recno_t;
#if DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR < 5
# define flagSet(flags, bitmask) ((flags) & (bitmask))
#else
-# define flagSet(flags, bitmask) (((flags) & DB_OPFLAGS_MASK) == (bitmask))
+# define flagSet(flags, bitmask) (((flags) & DB_OPFLAGS_MASK) == (u_int)(bitmask))
#endif
#else /* db version 1.x */
diff --git a/cpan/DB_File/Makefile.PL b/cpan/DB_File/Makefile.PL
index 372b9f0ead..f5ef7c85f8 100644
--- a/cpan/DB_File/Makefile.PL
+++ b/cpan/DB_File/Makefile.PL
@@ -4,7 +4,7 @@ use strict ;
use ExtUtils::MakeMaker 5.16 ;
use Config ;
-die "DB_File needs Perl 5.008_03 or better. This is $]\n"
+die "DB_File needs Perl 5.8.3 or better. This is $]\n"
if $] < 5.008003;
my $VER_INFO ;