summaryrefslogtreecommitdiff
path: root/win32/FindExt.pm
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2001-07-09 02:11:04 +0000
committerGurusamy Sarathy <gsar@cpan.org>2001-07-09 02:11:04 +0000
commit86c8d741faf9ef8a6ed15637c3666fb66e2495d4 (patch)
tree1401b18a7f8c8cf3e0eabd1b5854cbcc08f11b9f /win32/FindExt.pm
parent40b7a5f5e789eb31046d021a15e48b502ad8e1e9 (diff)
downloadperl-86c8d741faf9ef8a6ed15637c3666fb66e2495d4.tar.gz
I18N::Langinfo is not available on windows
p4raw-id: //depot/perl@11227
Diffstat (limited to 'win32/FindExt.pm')
-rw-r--r--win32/FindExt.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/FindExt.pm b/win32/FindExt.pm
index efe0faf5b9..831250313d 100644
--- a/win32/FindExt.pm
+++ b/win32/FindExt.pm
@@ -4,7 +4,8 @@ use File::Find;
use File::Basename;
use Cwd;
-my $no = join('|',qw(DynaLoader GDBM_File ODBM_File NDBM_File DB_File Syslog Sysv));
+my $no = join('|',qw(DynaLoader GDBM_File ODBM_File NDBM_File DB_File
+ Syslog SysV Langinfo));
$no = qr/^(?:$no)$/i;
my %ext;