diff options
author | Steve Hay <SteveHay@planit.com> | 2005-06-17 11:36:45 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-06-17 11:36:45 +0000 |
commit | 3a00b83ed94a188580921b4677320b4295bee93d (patch) | |
tree | 607ba76c867985a19441c8cde816c392581f2993 /makedef.pl | |
parent | f6342b4b53f678226f6ef9a63cf476fbf96744f4 (diff) | |
download | perl-3a00b83ed94a188580921b4677320b4295bee93d.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.pl | 3 |
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'; |