summaryrefslogtreecommitdiff
path: root/makedef.pl
diff options
context:
space:
mode:
Diffstat (limited to 'makedef.pl')
-rw-r--r--makedef.pl6
1 files changed, 1 insertions, 5 deletions
diff --git a/makedef.pl b/makedef.pl
index b648a65581..1a44d1bd58 100644
--- a/makedef.pl
+++ b/makedef.pl
@@ -965,9 +965,6 @@ if ($ARGS{PLATFORM} =~ /^win(?:32|ce)$/) {
win32_getchar
win32_putchar
));
- if ($ARGS{CCTYPE} eq "BORLAND") {
- try_symbols('_matherr');
- }
}
elsif ($ARGS{PLATFORM} eq 'vms') {
try_symbols(qw(
@@ -1305,7 +1302,7 @@ if ($ARGS{PLATFORM} =~ /^win(?:32|ce)$/) {
print "LIBRARY $dll\n";
# The DESCRIPTION module definition file statement is not supported
# by VC7 onwards.
- if ($ARGS{CCTYPE} =~ /^(?:MSVC60|GCC|BORLAND)$/) {
+ if ($ARGS{CCTYPE} =~ /^(?:MSVC60|GCC)$/) {
print "DESCRIPTION 'Perl interpreter'\n";
}
print "EXPORTS\n";
@@ -1349,7 +1346,6 @@ elsif ($ARGS{PLATFORM} eq 'netware') {
foreach my $symbol (sort keys %export) {
if ($ARGS{PLATFORM} =~ /^win(?:32|ce)$/) {
- $symbol = "_$symbol" if $ARGS{CCTYPE} eq 'BORLAND';
print "\t$symbol\n";
}
elsif ($ARGS{PLATFORM} eq 'os2') {