diff options
Diffstat (limited to 'cpan/DB_File/DB_File.pm')
-rw-r--r-- | cpan/DB_File/DB_File.pm | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/cpan/DB_File/DB_File.pm b/cpan/DB_File/DB_File.pm index 7b8755bd54..0f813d512a 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_no_length, $splice_end_array, use Carp; -$VERSION = "1.822" ; +$VERSION = "1.823" ; $VERSION = eval $VERSION; # needed for dev releases { @@ -578,6 +578,20 @@ sub get_dup } +sub STORABLE_freeze +{ + my $type = ref shift; + croak "Cannot freeze $type object\n"; +} + +sub STORABLE_thaw +{ + my $type = ref shift; + croak "Cannot thaw $type object\n"; +} + + + 1; __END__ @@ -2263,10 +2277,6 @@ All versions of Berkeley DB are available there. Alternatively, Berkeley DB version 1 is available at your nearest CPAN archive in F<src/misc/db.1.85.tar.gz>. -If you are running IRIX, then get Berkeley DB version 1 from -F<http://reality.sgi.com/ariel>. It has the patches necessary to -compile properly on IRIX 5.3. - =head1 COPYRIGHT Copyright (c) 1995-2007 Paul Marquess. All rights reserved. This program |