Description: Replace undefined dependency versions in Makefile.PL
Author: zefram@fysh.org
Bug: https://rt.cpan.org/Public/Bug/Display.html?id=91980
Reviewed-by: Nick Morrott <knowledgejunkie@gmail.com>
Last-Update: 2019-02-23
---
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -5,8 +5,8 @@
     'NAME'	=> 'IO::LockedFile',
     'VERSION_FROM' => 'LockedFile.pm', # finds $VERSION
     'PREREQ_PM' => {
-	IO::File => undef,
-	Fcntl => undef },
+	'IO::File' => 0,
+	'Fcntl' => 0 },
     'PM' => {'LockedFile.pm'       => '$(INST_LIBDIR)/LockedFile.pm', 
              'LockedFile/Flock.pm' => '$(INST_LIBDIR)/LockedFile/Flock.pm'},
 );
