32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
$OpenBSD: patch-Makefile_PL,v 1.1 2002/09/20 02:10:38 kevlo Exp $
|
|
--- Makefile.PL.orig Sat Jun 1 04:22:56 2002
|
|
+++ Makefile.PL Fri Sep 20 10:01:35 2002
|
|
@@ -13,27 +13,6 @@ WriteMakefile(
|
|
DISTNAME => "Storable",
|
|
MAN3PODS => {},
|
|
PREREQ_PM => { 'Test::More' => '0.41' },
|
|
- INSTALLDIRS => 'perl',
|
|
VERSION_FROM => 'Storable.pm',
|
|
dist => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
|
|
);
|
|
-
|
|
-my $ivtype = $Config{ivtype};
|
|
-
|
|
-# I don't know if the VMS folks ever supported long long on 5.6.x
|
|
-if ($ivtype and $ivtype eq 'long long' and $^O !~ /^MSWin/) {
|
|
- print <<'EOM';
|
|
-
|
|
-You appear to have a perl configured to use 64 bit integers in its scalar
|
|
-variables. If you have existing data written with an earlier version of
|
|
-Storable which this version of Storable refuses to load with a
|
|
-
|
|
- Byte order is not compatible
|
|
-
|
|
-error, then please read the section "64 bit data in perl 5.6.0 and 5.6.1"
|
|
-in the Storable documentation for instructions on how to read your data.
|
|
-
|
|
-(You can find the documentation at the end of Storable.pm in POD format)
|
|
-
|
|
-EOM
|
|
-}
|