diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-05-21 21:11:12 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-05-21 21:11:12 +0000 |
commit | f6c6487a7fbe3f34af46c7923fc905a118aaf302 (patch) | |
tree | fd03f0eb669aef01236fb66043a8257ea10a1fd6 /t/pragma | |
parent | 57ff9a15b1566945fcd54bfbac75501e3ca969c2 (diff) | |
download | perl-f6c6487a7fbe3f34af46c7923fc905a118aaf302.tar.gz |
[win32] more mingw32 tweaks
p4raw-id: //depot/win32/perl@1024
Diffstat (limited to 't/pragma')
-rwxr-xr-x | t/pragma/locale.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/pragma/locale.t b/t/pragma/locale.t index bd5267d720..00baa6645e 100755 --- a/t/pragma/locale.t +++ b/t/pragma/locale.t @@ -20,7 +20,8 @@ eval { }; # Visual C's CRT goes silly on strings of the form "en_US.ISO8859-1" -$have_setlocale = 0 if $^O eq 'MSWin32' && $Config{cc} =~ /^cl/i; +# and mingw32 uses said silly CRT +$have_setlocale = 0 if $^O eq 'MSWin32' && $Config{cc} =~ /^(cl|gcc)/i; print "1..", ($have_setlocale ? 102 : 98), "\n"; |