in reply to Re^2: "flock" is not defined in %Fcntl::EXPORT_TAGS at /usr/lib/perl5/Exporter.pm
in thread "flock" is not defined in %Fcntl::EXPORT_TAGS at /usr/lib/perl5/Exporter.pm
Possibly this tag was not defined in the version of Fcntl.pm that came with Perl 5.6.0. You could get around this various ways, such as by importing the listed symbols directly or by updating the Fcntl module.# Named groups of exports %EXPORT_TAGS = ( 'flock' => [qw(LOCK_SH LOCK_EX LOCK_NB LOCK_UN)], ...
|
|---|