summaryrefslogtreecommitdiff
path: root/win32/FindExt.pm
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-03-08 10:59:53 -0700
committerKarl Williamson <khw@cpan.org>2018-03-12 10:17:14 -0600
commit6201c2203671c3e78f25fa02205bd962d5bd92b1 (patch)
tree02357dbfcbe38f5d7542e8651af0727a1fc05b22 /win32/FindExt.pm
parent4e6826bf86819426cea8be0677b2a3282834ced5 (diff)
downloadperl-6201c2203671c3e78f25fa02205bd962d5bd92b1.tar.gz
Actually make I18N::Langinfo avail on all platforms
I thought I had done this earlier, but testing on Windows demonstrated that I hadn't. While at it, move the details in the docs for Perl_langinfo to the module's pod. This doesn't follow the paradigm for putting the Configure stuff in all the related configure files, but I saw no point to doing so. If you are reading this because I was wrong, feel free to ticket it or fix it.
Diffstat (limited to 'win32/FindExt.pm')
-rw-r--r--win32/FindExt.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/win32/FindExt.pm b/win32/FindExt.pm
index 5f45a73484..4d4682171c 100644
--- a/win32/FindExt.pm
+++ b/win32/FindExt.pm
@@ -6,7 +6,7 @@ use strict;
use warnings;
my $no = join('|',qw(Amiga.* GDBM_File ODBM_File NDBM_File DB_File
- VMS.* Sys-Syslog IPC-SysV I18N-Langinfo));
+ VMS.* Sys-Syslog IPC-SysV));
$no = qr/^(?:$no)$/i;
sub apply_config {
@@ -18,7 +18,6 @@ sub apply_config {
# duplicates logic from Configure (mostly)
push @no, "DB_File" unless $config->{i_db};
push @no, "GDBM_File" unless $config->{i_gdbm};
- push @no, "I18N-Langinfo" unless $config->{i_langinfo} && $config->{d_nl_langinfo};
push @no, "IPC-SysV" unless $config->{d_msg} || $config->{d_sem} || $config->{d_shm};
push @no, "NDBM_File" unless $config->{d_ndbm};
push @no, "ODBM_File"