Fix minor problems with the CPAN release
Nicholas Clark [Sat, 3 Jan 2004 19:22:08 +0000 (19:22 +0000)]
1: Make Storable.xs to work on 5.8.2 and later (already in the core)
2: Ship the linux hints file
3: Ship Test::More for the benefit of Perls pre 5.6.2
4: Correct Makefile.PL to install in core for 5.8.0 and later

p4raw-id: //depot/perl@22049

ext/Storable/ChangeLog
ext/Storable/MANIFEST
ext/Storable/Makefile.PL
ext/Storable/README
ext/Storable/Storable.pm

index b91e4f5..f8ab98c 100644 (file)
@@ -1,3 +1,13 @@
+Sat Jan  3 18:49:18 GMT 2004   Nicholas Clark <nick@ccl4.org>
+
+    Version 2.09
+
+       Fix minor problems with the CPAN release
+       1: Make Storable.xs to work on 5.8.2 and later (already in the core)
+       2: Ship the linux hints file
+       3: Ship Test::More for the benefit of Perls pre 5.6.2
+       4: Correct Makefile.PL to install in core for 5.8.0 and later
+
 Sat Sep  6 01:08:20 IST 2003   Abhijit Menon-Sen <ams@wiw.org>
 
     Version 2.08
index ab0b705..566cbf0 100644 (file)
@@ -4,6 +4,7 @@ Makefile.PL                 Generic Makefile template
 Storable.pm                The perl side of Storable
 Storable.xs                The C side of Storable
 ChangeLog                  Changes since baseline
+hints/linux.pl             Hint file to drop gcc to -O2
 t/blessed.t                See if Storable works
 t/canonical.t              See if Storable works
 t/code.t                   Test (de)serialization of code references
@@ -30,3 +31,6 @@ t/tied_hook.t             See if Storable works
 t/tied_items.t             See if Storable works
 t/utf8.t                   See if Storable works
 t/utf8hash.t               See if Storable works
+t/Test/Builder.pm          For testing the CPAN release on pre 5.6.2
+t/Test/More.pm             For testing the CPAN release on pre 5.6.2
+t/Test/Simple.pm           For testing the CPAN release on pre 5.6.2
index 60e1453..985f56d 100644 (file)
@@ -14,7 +14,7 @@ WriteMakefile(
     MAN3PODS            => {},
 # We now ship this in t/
 #    PREREQ_PM           => { 'Test::More' => '0.41' },
-    INSTALLDIRS         => 'perl',
+    INSTALLDIRS                => $] >= 5.007 ? 'perl' : 'site',
     VERSION_FROM        => 'Storable.pm',
     dist                => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
 );
index b8704c3..6fdaee0 100644 (file)
@@ -1,6 +1,6 @@
-                         Storable 2.07
+                         Storable 2.09
                Copyright (c) 1995-2000, Raphael Manfredi
-               Copyright (c) 2001,2002, Larry Wall
+               Copyright (c) 2001-2004, Larry Wall
 
 ------------------------------------------------------------------------
     This program is free software; you can redistribute it and/or modify
index 81c94c8..e7f9600 100644 (file)
@@ -21,7 +21,7 @@ package Storable; @ISA = qw(Exporter DynaLoader);
 use AutoLoader;
 use vars qw($canonical $forgive_me $VERSION);
 
-$VERSION = '2.08';
+$VERSION = '2.09';
 *AUTOLOAD = \&AutoLoader::AUTOLOAD;            # Grrr...
 
 #