source: trunk/essentials/dev-lang/perl/win32/FindExt.pm@ 3215

Last change on this file since 3215 was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 2.3 KB
Line 
1package FindExt;
2
3our $VERSION = '1.01';
4
5use strict;
6use warnings;
7
8my $no = join('|',qw(GDBM_File ODBM_File NDBM_File DB_File
9 Syslog SysV Langinfo));
10$no = qr/^(?:$no)$/i;
11
12my %ext;
13my $ext;
14my %static;
15
16sub getcwd {
17 $ENV{'PWD'} = Win32::GetCwd();
18 $ENV{'PWD'} =~ s:\\:/:g ;