diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-02-15 12:31:25 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-02-15 12:31:25 +0000 |
commit | eadddfac8c84315d3b083947a75b271e6d6b7754 (patch) | |
tree | 92b42254444b7069c3f1e6e31d4315bacac9e458 | |
parent | 77e6095e34c8cd9414ba30b5ca3a8bdb33481363 (diff) | |
download | perl-eadddfac8c84315d3b083947a75b271e6d6b7754.tar.gz |
Also Storable really wants the PATCHLEVEL, not PERL_VERSION.
p4raw-id: //depot/perl@18714
-rw-r--r-- | ext/Storable/Storable.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Storable/Storable.xs b/ext/Storable/Storable.xs index 4073f928c2..fe6ee11a45 100644 --- a/ext/Storable/Storable.xs +++ b/ext/Storable/Storable.xs @@ -12,7 +12,7 @@ #include <perl.h> #include <XSUB.h> -#ifndef PERL_VERSION +#ifndef PATCHLEVEL # include <patchlevel.h> /* Perl's one, needed since 5.6 */ # if !(defined(PERL_VERSION) || (SUBVERSION > 0 && defined(PATCHLEVEL))) # include <could_not_find_Perl_patchlevel.h> |