Forgot from #15241.
[p5sagit/p5-mst-13.2.git] / win32 / FindExt.pm
index efe0faf..8f1952f 100644 (file)
@@ -1,10 +1,17 @@
 package FindExt;
+
+our $VERSION = '1.00';
+
+# We (probably) have not got a Config.pm yet 
+BEGIN { $INC{'Config.pm'} = __FILE__ };
+
 use strict;
 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;