RE: Module import error

2003-01-09 Thread Dylan Boudreau
ECTED] Subject: Re: Module import error Hi Dylan Check your version of Fcntl. The EXPORT_TAGS hash in Fcntl.pm should have an key of 'seek' which, according to the Perl dianostics, it doesn't. As a quick fix you could try: use Fcntl qw(SEEK_SET SEEK_CUR SEEK_END); HTH, R

Re: Module import error

2003-01-09 Thread Rob Dixon
Hi Dylan Check your version of Fcntl. The EXPORT_TAGS hash in Fcntl.pm should have an key of 'seek' which, according to the Perl dianostics, it doesn't. As a quick fix you could try: use Fcntl qw(SEEK_SET SEEK_CUR SEEK_END); HTH, Rob "Dylan Boudreau" <[EMAIL PROTECTED]> wrote in message

Module import error

2003-01-09 Thread Dylan Boudreau
I am trying to use seek from Fcntl and am getting the following errors when I try and run the program. "seek" is not defined in %Fcntl::EXPORT_TAGS at /usr/perl5/5.00503/Exporter.pm line 67 Exporter::export('Fcntl', 'main', ':seek') called at /usr/perl5/5.00503/Exporter.pm line 182