summaryrefslogtreecommitdiff
path: root/win32/makeperldef.pl
diff options
context:
space:
mode:
Diffstat (limited to 'win32/makeperldef.pl')
-rw-r--r--win32/makeperldef.pl23
1 files changed, 0 insertions, 23 deletions
diff --git a/win32/makeperldef.pl b/win32/makeperldef.pl
deleted file mode 100644
index 620d2ebab3..0000000000
--- a/win32/makeperldef.pl
+++ /dev/null
@@ -1,23 +0,0 @@
-my $CCTYPE = "";
-print "EXPORTS\n";
-foreach (@ARGV) {
- if (/CCTYPE=(.*)$/) {
- $CCTYPE = $1;
- next;
- }
- emit_symbol("boot_$_");
-}
-
-sub emit_symbol {
- my $symbol = shift;
- if ($CCTYPE eq "BORLAND") {
- # workaround Borland quirk by export both the straight
- # name and a name with leading underscore
- print "\t$symbol=_$symbol\n";
- print "\t_$symbol\n";
- }
- else {
- print "\t$symbol\n";
- }
-}
-