/usr/share/perl5/Config/Find/WinNT.pm is in libconfig-find-perl 0.31-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | package Config::Find::WinNT;
use strict;
use warnings;
use Config::Find::WinAny
our @ISA = qw(Config::Find::WinAny);
1;
__END__
=encoding latin1
=head1 NAME
Config::Find::WinNT - WinNT idiosyncrasies for Config::Find
=head1 SYNOPSIS
# don't use Config::Find::WinNT directly
use Config::Find;
=head1 ABSTRACT
Implements WinNT specific features for Config::Find
=head1 DESCRIPTION
Contains any idiosyncrasies found within WinNT, that do not apply to the
standard Win32 base.
=head1 SEE ALSO
L<Config::Find>, L<Config::Find::WinAny>, L<Config::Find::Any>
=head1 AUTHOR
Salvador FandiE<ntilde>o GarcE<iacute>a, E<lt>sfandino@yahoo.comE<gt>
=head1 CONTRIBUTORS
Barbie, E<lt>barbie@missbarbell.co.ukE<gt> (some bug fixes and documentation)
=head1 COPYRIGHT AND LICENSE
Copyright 2003-2015 by Salvador FandiE<ntilde>o GarcE<iacute>a (sfandino@yahoo.com)
Copyright 2015 by Barbie (barbie@missbarbell.co.uk)
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
|