summaryrefslogtreecommitdiff
path: root/t/io
diff options
context:
space:
mode:
authorGerrit P. Haase <gp@familiehaase.de>2003-05-31 16:12:07 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-06-01 07:37:50 +0000
commit538204d5c084ddeba9f54debc89d135829749520 (patch)
tree5142697394cb12459610b623e1e58bf13d5db1b0 /t/io
parentb862623f640d051afa35dfa66f03e9a997880b50 (diff)
downloadperl-538204d5c084ddeba9f54debc89d135829749520.tar.gz
Two Cygwin patches from Gerrit.
Subject: [PATCH] perl.h, README.cygwin: Cygwin O_TEXT <> O_BINARY issue From: "Gerrit P. Haase" <gp@familiehaase.de> Date: Sat, 31 May 2003 14:12:07 +0200 Message-ID: <179860591535.20030531141207@familiehaase.de> Subject: [PATCH] t/io/layers.t, Cygwin != DOSISH Date: Sat, 31 May 2003 13:57:49 +0200 Message-ID: <11859733881.20030531135749@familiehaase.de> p4raw-id: //depot/perl@19654
Diffstat (limited to 't/io')
-rw-r--r--t/io/layers.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/layers.t b/t/io/layers.t
index 193a517512..31bb13b0d1 100644
--- a/t/io/layers.t
+++ b/t/io/layers.t
@@ -29,7 +29,7 @@ plan tests => 43;
use Config;
-my $DOSISH = $^O =~ /^(?:MSWin32|cygwin|os2|dos|NetWare|mint)$/ ? 1 : 0;
+my $DOSISH = $^O =~ /^(?:MSWin32|os2|dos|NetWare|mint)$/ ? 1 : 0;
$DOSISH = 1 if !$DOSISH and $^O =~ /^uwin/;
my $NONSTDIO = exists $ENV{PERLIO} && $ENV{PERLIO} ne 'stdio' ? 1 : 0;
my $FASTSTDIO = $Config{d_faststdio} && $Config{usefaststdio} ? 1 : 0;