source: trunk/third/perl/win32/makeperldef.pl @ 10724

Revision 10724, 397 bytes checked in by ghudson, 27 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r10723, which included commits to RCS files with non-trunk default branches.
Line 
1my $CCTYPE = "";
2print "EXPORTS\n";
3foreach (@ARGV) {
4        if (/CCTYPE=(.*)$/) {
5                $CCTYPE = $1;
6                next;
7        }
8        emit_symbol("boot_$_");
9}
10
11sub emit_symbol {
12        my $symbol = shift;
13        if ($CCTYPE eq "BORLAND") {
14                # workaround Borland quirk by export both the straight
15                # name and a name with leading underscore
16                print "\t$symbol=_$symbol\n";
17                print "\t_$symbol\n";
18        }
19        else {
20                print "\t$symbol\n";
21        }
22}
23
Note: See TracBrowser for help on using the repository browser.