summaryrefslogtreecommitdiff
path: root/makedef.pl
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2005-06-17 11:36:45 +0000
committerSteve Hay <SteveHay@planit.com>2005-06-17 11:36:45 +0000
commit684ced4390999f56c613d6756110b95b8810f877 (patch)
tree607ba76c867985a19441c8cde816c392581f2993 /makedef.pl
parent7396078b4495008184c7e933bb1a79bc6e64f445 (diff)
downloadperl-684ced4390999f56c613d6756110b95b8810f877.tar.gz
Silence STDERR grumblings from Borland's math library.
This fixes failures in ext/B/t/deparse.t and lib/warnings.t (and renders change 24870 obsolete, hence it is reverted here). p4raw-id: //depot/perl@24883
Diffstat (limited to 'makedef.pl')
-rw-r--r--makedef.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/makedef.pl b/makedef.pl
index 58636e7901..8070f0af7b 100644
--- a/makedef.pl
+++ b/makedef.pl
@@ -1234,6 +1234,9 @@ if ($PLATFORM =~ /^win(?:32|ce)$/) {
{
try_symbol($symbol);
}
+ if ($CCTYPE eq "BORLAND") {
+ try_symbol('_matherr');
+ }
}
elsif ($PLATFORM eq 'os2') {
open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';