summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2012-06-18 14:31:24 +0100
committerZefram <zefram@fysh.org>2012-06-18 14:31:24 +0100
commit9bdaae7867d9f4ce1eeda017a740daf28dec9c9a (patch)
tree97e03c3f70a293c84fb3290bc64f202020c9cdec
parentcdc958a84461faa25ffaf2eb0fef7d83fe52bdca (diff)
downloadperl-9bdaae7867d9f4ce1eeda017a740daf28dec9c9a.tar.gz
use ppport.h for Storable on Perl 5.8.9
Storable.xs requires a definition of dVAR, which on 5.8.9 is only supplied by ppport.h.
-rw-r--r--dist/Storable/Storable.pm2
-rw-r--r--dist/Storable/Storable.xs2
2 files changed, 2 insertions, 2 deletions
diff --git a/dist/Storable/Storable.pm b/dist/Storable/Storable.pm
index 6f92611e8f..f500cbfac2 100644
--- a/dist/Storable/Storable.pm
+++ b/dist/Storable/Storable.pm
@@ -21,7 +21,7 @@ package Storable; @ISA = qw(Exporter);
use vars qw($canonical $forgive_me $VERSION);
-$VERSION = '2.35';
+$VERSION = '2.36';
BEGIN {
if (eval { local $SIG{__DIE__}; require Log::Agent; 1 }) {
diff --git a/dist/Storable/Storable.xs b/dist/Storable/Storable.xs
index e091e9d3b5..e23b54fd6a 100644
--- a/dist/Storable/Storable.xs
+++ b/dist/Storable/Storable.xs
@@ -17,7 +17,7 @@
#include <patchlevel.h> /* Perl's one, needed since 5.6 */
#endif
-#if !defined(PERL_VERSION) || PERL_VERSION < 8 || (PERL_VERSION == 8 && PERL_SUBVERSION < 9) || (PERL_VERSION == 10 && PERL_SUBVERSION < 1)
+#if !defined(PERL_VERSION) || PERL_VERSION < 10 || (PERL_VERSION == 10 && PERL_SUBVERSION < 1)
#define NEED_load_module
#define NEED_vload_module
#define NEED_newCONSTSUB