From 378eeda70cc27194f0f718b4c65b8ba147259910 Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Sat, 10 Sep 2011 17:21:58 +0100 Subject: The Borland Chainsaw Massacre Remove support for the Borland C++ compiler on Win32, as agreed here: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2011-09/msg00034.html --- ext/IPC-Open3/t/IPC-Open2.t | 6 +++--- ext/IPC-Open3/t/IPC-Open3.t | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'ext/IPC-Open3') diff --git a/ext/IPC-Open3/t/IPC-Open2.t b/ext/IPC-Open3/t/IPC-Open2.t index fecb209663..e0be5dbf52 100644 --- a/ext/IPC-Open3/t/IPC-Open2.t +++ b/ext/IPC-Open3/t/IPC-Open2.t @@ -4,10 +4,10 @@ use Config; BEGIN { require Test::More; if (!$Config{'d_fork'} - # open2/3 supported on win32 (but not Borland due to CRT bugs) - && (($^O ne 'MSWin32' && $^O ne 'NetWare') || $Config{'cc'} =~ /^bcc/i)) + # open2/3 supported on win32 + && $^O ne 'MSWin32' && $^O ne 'NetWare') { - Test::More->import(skip_all => 'open2/3 not available with MSWin32+Netware+cc=bcc'); + Test::More->import(skip_all => 'open2/3 not available with MSWin32+Netware'); exit 0; } # make warnings fatal diff --git a/ext/IPC-Open3/t/IPC-Open3.t b/ext/IPC-Open3/t/IPC-Open3.t index 0ecb841b13..7b85b825e2 100644 --- a/ext/IPC-Open3/t/IPC-Open3.t +++ b/ext/IPC-Open3/t/IPC-Open3.t @@ -3,8 +3,8 @@ BEGIN { require Config; import Config; if (!$Config{'d_fork'} - # open2/3 supported on win32 (but not Borland due to CRT bugs) - && (($^O ne 'MSWin32' && $^O ne 'NetWare') || $Config{'cc'} =~ /^bcc/i)) + # open2/3 supported on win32 + && $^O ne 'MSWin32' && $^O ne 'NetWare') { print "1..0\n"; exit 0; -- cgit v1.2.1