summaryrefslogtreecommitdiff
path: root/cpan/DB_File
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-12-09 23:27:38 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-12-09 23:27:38 +0000
commitea2450303dab0ce511c025e2afc6018863142beb (patch)
treef41b21ec54ce158a0b69e4b777bd186375dc9573 /cpan/DB_File
parent547bae375a4ab346bc37dfbc4c76b43073c371ed (diff)
downloadperl-ea2450303dab0ce511c025e2afc6018863142beb.tar.gz
Update DB_File to CPAN version 1.833
[DELTA] 1.833 9 Dec 2014 * More Silence compiler warnings * 1.832 breaks bleadperl C89 build RT #100812
Diffstat (limited to 'cpan/DB_File')
-rw-r--r--cpan/DB_File/DB_File.pm6
-rw-r--r--cpan/DB_File/DB_File.xs4
-rw-r--r--cpan/DB_File/Makefile.PL4
3 files changed, 8 insertions, 6 deletions
diff --git a/cpan/DB_File/DB_File.pm b/cpan/DB_File/DB_File.pm
index 73fd4e0cf5..8ab6a6ae39 100644
--- a/cpan/DB_File/DB_File.pm
+++ b/cpan/DB_File/DB_File.pm
@@ -2,14 +2,14 @@
#
# Written by Paul Marquess (pmqs@cpan.org)
#
-# 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.
package DB_File::HASHINFO ;
-require 5.00504;
+require 5.00803;
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.832" ;
+$VERSION = "1.833" ;
$VERSION = eval $VERSION; # needed for dev releases
{
diff --git a/cpan/DB_File/DB_File.xs b/cpan/DB_File/DB_File.xs
index 514b1bdb37..d060dcb215 100644
--- a/cpan/DB_File/DB_File.xs
+++ b/cpan/DB_File/DB_File.xs
@@ -125,6 +125,8 @@
# include "ppport.h"
#endif
+int DB_File___unused() { return 0; }
+
/* Mention DB_VERSION_MAJOR_CFG, DB_VERSION_MINOR_CFG, and
DB_VERSION_PATCH_CFG here so that Configure pulls them all in. */
@@ -171,7 +173,7 @@
# ifdef __cplusplus
# define dNOOP (void)0
# else
-# define dNOOP extern int DB_File___notused
+# define dNOOP extern int DB_File___notused()
# endif
/* Ditto for dXSARGS. */
diff --git a/cpan/DB_File/Makefile.PL b/cpan/DB_File/Makefile.PL
index d33e74f30c..70857be329 100644
--- a/cpan/DB_File/Makefile.PL
+++ b/cpan/DB_File/Makefile.PL
@@ -4,8 +4,8 @@ use strict ;
use ExtUtils::MakeMaker 5.16 ;
use Config ;
-die "DB_File needs Perl 5.005_04 or better. This is $]\n"
- if $] < 5.00504;
+die "DB_File needs Perl 5.008_03 or better. This is $]\n"
+ if $] < 5.00803;
my $VER_INFO ;
my $LIB_DIR ;