freebsd-ports/archivers/p5-IO-Zlib/files/patch-Zlib.pm
Jun Kuriyama 1e04edb8d9 Add a patch to work around on 4-stable (perl-5.00503's Fcntl.pm does
not export SEEK_SET symbol).

Doing "make test" on 4-stable will fail because perl-5.005 does not
support EOF method in TIE HANDLE.

Submitted by:	lth
2005-02-13 03:37:26 +00:00

11 lines
245 B
Perl

--- Zlib.pm.orig Sun Feb 13 00:43:08 2005
+++ Zlib.pm Sun Feb 13 00:43:30 2005
@@ -297,7 +297,7 @@
use vars qw($VERSION $AUTOLOAD @ISA);
use Carp;
-use Fcntl qw(SEEK_SET);
+use constant SEEK_SET => 0;
my $has_Compress_Zlib;
my $aliased;