summaryrefslogtreecommitdiff
path: root/Echolot/Storage/File.pm
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2002-07-16 02:59:17 +0000
committerPeter Palfrader <peter@palfrader.org>2002-07-16 02:59:17 +0000
commitc1a9df1ad716686c009214b2433947c9db45e510 (patch)
tree440320d653a79523be23004ae7e8784d19fce00d /Echolot/Storage/File.pm
parent6474254b8452dac75e5ebe46c17506916366bf9e (diff)
use POSIX instead of Fcntl :seek for older Perls
Diffstat (limited to 'Echolot/Storage/File.pm')
-rw-r--r--Echolot/Storage/File.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/Echolot/Storage/File.pm b/Echolot/Storage/File.pm
index e6b7a8d..4e90d1a 100644
--- a/Echolot/Storage/File.pm
+++ b/Echolot/Storage/File.pm
@@ -1,7 +1,7 @@
package Echolot::Storage::File;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
-# $Id: File.pm,v 1.37 2002/07/16 02:48:57 weasel Exp $
+# $Id: File.pm,v 1.38 2002/07/16 02:59:17 weasel Exp $
#
=pod
@@ -24,7 +24,8 @@ use IO::Handle;
use English;
use Carp qw{cluck confess carp};
use Fcntl ':flock'; # import LOCK_* constants
-use Fcntl ':seek'; # import SEEK_* constants
+#use Fcntl ':seek'; # import SEEK_* constants
+use POSIX; # import SEEK_* constants (older perls don't have SEEK_ in Fcntl)
use Echolot::Tools;
=item B<new> (I<%args>)