This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update DB_File to CPAN version 1.835
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Tue, 23 Dec 2014 14:03:54 +0000 (14:03 +0000)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Tue, 23 Dec 2014 14:03:54 +0000 (14:03 +0000)
  [DELTA]

1.835 23 Dec 2014

   * Silence more compiler warnings

Porting/Maintainers.pl
cpan/DB_File/DB_File.pm
cpan/DB_File/DB_File.xs
cpan/DB_File/Makefile.PL

index e4b66cc..3f84c17 100755 (executable)
@@ -328,7 +328,7 @@ use File::Glob qw(:case);
     },
 
     'DB_File' => {
-        'DISTRIBUTION' => 'PMQS/DB_File-1.834.tar.gz',
+        'DISTRIBUTION' => 'PMQS/DB_File-1.835.tar.gz',
         'FILES'        => q[cpan/DB_File],
         'EXCLUDED'     => [
             qr{^patches/},
index 900e6da..9b1f957 100644 (file)
@@ -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
 
 {
index 0b20a1c..151ec31 100644 (file)
@@ -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 */
index 372b9f0..f5ef7c8 100644 (file)
@@ -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 ;