summaryrefslogtreecommitdiff
path: root/cpan/DB_File
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2011-01-11 16:12:16 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2011-01-11 16:12:59 +0000
commitae0f8eeeacb8af9e5ba70551659f75656dac5962 (patch)
treed3a56e37cb4698cc3d536a5c30d23038dc5ad87a /cpan/DB_File
parent447f000ef4448b16c51bcbc3e4e9a3714327c66c (diff)
downloadperl-ae0f8eeeacb8af9e5ba70551659f75656dac5962.tar.gz
Update DB_File to CPAN version 1.821
[DELTA] 1.821 10 January 2011 * Fixed typos & spelling errors. [perl #81792]
Diffstat (limited to 'cpan/DB_File')
-rw-r--r--cpan/DB_File/Changes19
-rw-r--r--cpan/DB_File/DB_File.pm2
-rw-r--r--cpan/DB_File/DB_File.xs8
-rw-r--r--cpan/DB_File/t/db-btree.t4
-rw-r--r--cpan/DB_File/t/db-hash.t2
-rw-r--r--cpan/DB_File/version.c2
6 files changed, 21 insertions, 16 deletions
diff --git a/cpan/DB_File/Changes b/cpan/DB_File/Changes
index 781a8b728f..c7fbf1670f 100644
--- a/cpan/DB_File/Changes
+++ b/cpan/DB_File/Changes
@@ -1,5 +1,10 @@
+1.821 10 January 2011
+
+ * Fixed typos & spelling errors.
+ [perl #81792]
+
1.820 28 March 2009
* remove MAN3PODS from Makefile.PL to match core.
@@ -99,7 +104,7 @@
1.807 1st November 2003
- * Fixed minor typos on pod documetation - reported by Jeremy Mates &
+ * Fixed minor typos on pod documentation - reported by Jeremy Mates &
Mark Jason Dominus.
* dbinfo updated to report when a database is encrypted.
@@ -108,7 +113,7 @@
* Fixed problem when trying to build with a multi-threaded perl.
- * Tidied up the recursion detetion code.
+ * Tidied up the recursion detection code.
* merged core patch 17844 - missing dTHX declarations.
@@ -124,7 +129,7 @@
* added code to guard against calling the callbacks (compare,hash & prefix)
recursively.
- * pasing undef for the flags and/or mode when opening a database could cause
+ * passing undef for the flags and/or mode when opening a database could cause
a "Use of uninitialized value in subroutine entry" warning. Now silenced.
* DBM filter code beefed up to cope with read-only $_.
@@ -139,7 +144,7 @@
1.803 1st March 2002
* Fixed a problem with db-btree.t where it complained about an "our"
- variable redeclaation.
+ variable redeclaration.
* FETCH, STORE & DELETE don't map the flags parameter into the
equivalent Berkeley DB function anymore.
@@ -159,7 +164,7 @@
1.800 23rd November 2001
- * use pport.h for perl backward compatability code.
+ * use pport.h for perl backward compatibility code.
* use new ExtUtils::Constant module to generate XS constants.
@@ -216,7 +221,7 @@
* Fixed perl core patch 7703
- * Added suppport to allow DB_File to be built with Berkeley DB 3.2 --
+ * Added support to allow DB_File to be built with Berkeley DB 3.2 --
btree_compare, btree_prefix and hash_cb needed to be changed.
* Updated dbinfo to support Berkeley DB 3.2 file format changes.
@@ -294,7 +299,7 @@
* Merged changes from 5.005_58
- * Fixed a bug in R_IBEFORE & R_IAFTER procesing in Berkeley DB
+ * Fixed a bug in R_IBEFORE & R_IAFTER processing in Berkeley DB
2 databases.
* Added some of the examples in the POD into the test harness.
diff --git a/cpan/DB_File/DB_File.pm b/cpan/DB_File/DB_File.pm
index 86d0b19888..7a47019998 100644
--- a/cpan/DB_File/DB_File.pm
+++ b/cpan/DB_File/DB_File.pm
@@ -165,7 +165,7 @@ our ($db_version, $use_XSLoader, $splice_end_array, $Error);
use Carp;
-$VERSION = "1.820" ;
+$VERSION = "1.821" ;
$VERSION = eval $VERSION; # needed for dev releases
{
diff --git a/cpan/DB_File/DB_File.xs b/cpan/DB_File/DB_File.xs
index afd0f63a15..e61dc134b4 100644
--- a/cpan/DB_File/DB_File.xs
+++ b/cpan/DB_File/DB_File.xs
@@ -69,7 +69,7 @@
1.67 - Backed off the use of newSVpvn.
Fixed DBM Filter code for Perl 5.004.
Fixed a small memory leak in the filter code.
- 1.68 - fixed backward compatability bug with R_IAFTER & R_IBEFORE
+ 1.68 - fixed backward compatibility bug with R_IAFTER & R_IBEFORE
merged in the 5.005_58 changes
1.69 - fixed a bug in push -- DB_APPEND wasn't working properly.
Fixed the R_SETCURSOR bug introduced in 1.68
@@ -79,7 +79,7 @@
Added a BOOT check to test for equivalent versions of db.h &
libdb.a/so.
1.71 - Support for Berkeley DB version 3.
- Support for Berkeley DB 2/3's backward compatability mode.
+ Support for Berkeley DB 2/3's backward compatibility mode.
Rewrote push
1.72 - No change to DB_File.xs
1.73 - No change to DB_File.xs
@@ -87,7 +87,7 @@
with a win32 macro.
Added Perl core patches 7703 & 7801.
1.75 - Fixed Perl core patch 7703.
- Added suppport to allow DB_File to be built with
+ Added support to allow DB_File to be built with
Berkeley DB 3.2 -- btree_compare, btree_prefix and hash_cb
needed to be changed.
1.76 - No change to DB_File.xs
@@ -95,7 +95,7 @@
1.78 - Core patch 10335, 10372, 10534, 10549, 11051 included.
1.79 - NEXTKEY ignores the input key.
Added lots of casts
- 1.800 - Moved backward compatability code into ppport.h.
+ 1.800 - Moved backward compatibility code into ppport.h.
Use the new constants code.
1.801 - No change to DB_File.xs
1.802 - No change to DB_File.xs
diff --git a/cpan/DB_File/t/db-btree.t b/cpan/DB_File/t/db-btree.t
index 0df890436b..c0f6c57369 100644
--- a/cpan/DB_File/t/db-btree.t
+++ b/cpan/DB_File/t/db-btree.t
@@ -1,5 +1,5 @@
#!./perl -w
-
+
use warnings;
use strict;
use Config;
@@ -345,7 +345,7 @@ untie %h ;
ok(43, $X = tie(%h, 'DB_File',$Dfile, O_RDWR, 0640, $DB_BTREE ));
-# Attempting to delete a non-existant key should fail
+# Attempting to delete a non-existent key should fail
$status = $X->del('joe') ;
ok(44, $status == 1 );
diff --git a/cpan/DB_File/t/db-hash.t b/cpan/DB_File/t/db-hash.t
index 4168362531..d78e6646df 100644
--- a/cpan/DB_File/t/db-hash.t
+++ b/cpan/DB_File/t/db-hash.t
@@ -294,7 +294,7 @@ ok(36, $status == 0 );
ok(37, $h{'q'} eq undef );
}
-# Attempting to delete a non-existant key should fail
+# Attempting to delete a non-existent key should fail
$status = $X->del('joe') ;
ok(38, $status == 1 );
diff --git a/cpan/DB_File/version.c b/cpan/DB_File/version.c
index 47158d3368..e01f6f6fa3 100644
--- a/cpan/DB_File/version.c
+++ b/cpan/DB_File/version.c
@@ -14,7 +14,7 @@
Changes:
1.71 - Support for Berkeley DB version 3.
- Support for Berkeley DB 2/3's backward compatability mode.
+ Support for Berkeley DB 2/3's backward compatibility mode.
1.72 - No change.
1.73 - Added support for threading
1.74 - Added Perl core patch 7801.