Skip Menu |

This queue is for tickets about the File-NFSLock CPAN distribution.

Report information
The Basics
Id: 33932
Status: resolved
Priority: 0/
Queue: File-NFSLock

People
Owner: Nobody in particular
Requestors: dagolden [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in:
  • 1.21
  • 1.22



Subject: hard links not supported on Win32 FAT filesystem
new() hangs forever because Win32 FAT32 filesystems don't support hard links. (see "perldoc perlport') (a) this should be documented (b) it would be better to die when not supported, possibly even in the Makefile.PL: if ( $^O eq 'MSWin32' ) { require Win32; my $fstype = eval { Win32::FsType() }; die "OS unsupported: your filesystem doesn't appear to support hard links" unless $fstype eq 'NTFS'; } Thanks, David
Works more gracefully in version 1.21 under Windows.