summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2004-01-03 20:16:23 +0000
committerNicholas Clark <nick@ccl4.org>2004-01-03 20:16:23 +0000
commit8afdca0ec8dfa534935c9311894a5fe071acba34 (patch)
treef2234c0fd373d1f1107807aaf4dacfa0bf8337cd
parenta32bf8eb05712999a9d721bef5f46aab01d7d7c1 (diff)
downloadperl-8afdca0ec8dfa534935c9311894a5fe071acba34.tar.gz
Integrate:
[ 22049] 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 [ 22050] No matter how hard you proof read it, something always slips through. p4raw-link: @22050 on //depot/perl: 7224c650f2c20f798575fdf9ecc82fe277635a86 p4raw-link: @22049 on //depot/perl: dcf2e277aa4d17b79fa38b2f8bd20f8c90699f6d p4raw-id: //depot/maint-5.8/perl@22053 p4raw-integrated: from //depot/perl@22048 'copy in' ext/Storable/MANIFEST (@17969..) ext/Storable/Makefile.PL (@18008..) ext/Storable/README (@19412..) ext/Storable/Storable.pm (@20263..) ext/Storable/ChangeLog (@22049..)
-rw-r--r--ext/Storable/ChangeLog10
-rw-r--r--ext/Storable/MANIFEST4
-rw-r--r--ext/Storable/Makefile.PL2
-rw-r--r--ext/Storable/README4
-rw-r--r--ext/Storable/Storable.pm2
5 files changed, 18 insertions, 4 deletions
diff --git a/ext/Storable/ChangeLog b/ext/Storable/ChangeLog
index b91e4f55d3..ea038c8fa0 100644
--- a/ext/Storable/ChangeLog
+++ b/ext/Storable/ChangeLog
@@ -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 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 only 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
diff --git a/ext/Storable/MANIFEST b/ext/Storable/MANIFEST
index ab0b7050bf..566cbf007a 100644
--- a/ext/Storable/MANIFEST
+++ b/ext/Storable/MANIFEST
@@ -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
diff --git a/ext/Storable/Makefile.PL b/ext/Storable/Makefile.PL
index 60e1453e88..985f56d7aa 100644
--- a/ext/Storable/Makefile.PL
+++ b/ext/Storable/Makefile.PL
@@ -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' },
);
diff --git a/ext/Storable/README b/ext/Storable/README
index b8704c3b79..6fdaee0cd5 100644
--- a/ext/Storable/README
+++ b/ext/Storable/README
@@ -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
diff --git a/ext/Storable/Storable.pm b/ext/Storable/Storable.pm
index 81c94c8507..e7f9600cb2 100644
--- a/ext/Storable/Storable.pm
+++ b/ext/Storable/Storable.pm
@@ -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...
#