update Changes, patchlevel etc.
[p5sagit/p5-mst-13.2.git] / makedef.pl
CommitLineData
549a6b10 1#
2# Create the export list for perl.
3#
3cfae81b 4# Needed by WIN32 and OS/2 for creating perl.dll
5# and by AIX for creating libperl.a when -Dusershrplib is in effect.
549a6b10 6#
22c35a8c 7# reads global.sym, pp.sym, perlvars.h, intrpvar.h, thrdvar.h, config.h
3cfae81b 8# On OS/2 reads miniperl.map as well
0a753a76 9
549a6b10 10my $PLATFORM;
11my $CCTYPE;
910dfcc8 12
4cb71bb6 13my %bincompat5005 =
14 (Perl_call_argv => "perl_call_argv",
15 Perl_call_method => "perl_call_method",
16 Perl_call_pv => "perl_call_pv",
17 Perl_call_sv => "perl_call_sv",
18 Perl_get_av => "perl_get_av",
19 Perl_get_cv => "perl_get_cv",
20 Perl_get_hv => "perl_get_hv",
21 Perl_get_sv => "perl_get_sv",
22 Perl_init_i18nl10n => "perl_init_i18nl10n",
23 Perl_init_i18nl14n => "perl_init_i18nl14n",
24 Perl_new_collate => "perl_new_collate",
25 Perl_new_ctype => "perl_new_ctype",
26 Perl_new_numeric => "perl_new_numeric",
27 Perl_require_pv => "perl_require_pv",
28 Perl_safesyscalloc => "Perl_safecalloc",
29 Perl_safesysfree => "Perl_safefree",
30 Perl_safesysmalloc => "Perl_safemalloc",
31 Perl_safesysrealloc => "Perl_saferealloc",
32 Perl_set_numeric_local => "perl_set_numeric_local",
33 Perl_set_numeric_standard => "perl_set_numeric_standard");
34
35my $bincompat5005 = join("|", keys %bincompat5005);
36
910dfcc8 37while (@ARGV)
d55594ae 38 {
39 my $flag = shift;
40 $define{$1} = 1 if ($flag =~ /^-D(\w+)$/);
3cfae81b 41 $define{$1} = $2 if ($flag =~ /^-D(\w+)=(.+)$/);
549a6b10 42 $CCTYPE = $1 if ($flag =~ /^CCTYPE=(\w+)$/);
43 $PLATFORM = $1 if ($flag =~ /^PLATFORM=(\w+)$/);
d55594ae 44 }
45
3cfae81b 46my @PLATFORM = qw(aix win32 os2);
549a6b10 47my %PLATFORM;
48@PLATFORM{@PLATFORM} = ();
49
50defined $PLATFORM || die "PLATFORM undefined, must be one of: @PLATFORM\n";
51exists $PLATFORM{$PLATFORM} || die "PLATFORM must be one of: @PLATFORM\n";
52
53my $config_sh = "config.sh";
54my $config_h = "config.h";
55my $thrdvar_h = "thrdvar.h";
56my $intrpvar_h = "intrpvar.h";
57my $perlvars_h = "perlvars.h";
58my $global_sym = "global.sym";
59my $pp_sym = "pp.sym";
60my $globvar_sym = "globvar.sym";
61my $perlio_sym = "perlio.sym";
62
63if ($PLATFORM eq 'aix') {
64 # Nothing for now.
65} elsif ($PLATFORM eq 'win32') {
66 $CCTYPE = "MSVC" unless defined $CCTYPE;
67 foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym, $pp_sym, $globvar_sym) {
68 s!^!..\\!;
69 }
70}
71
72unless ($PLATFORM eq 'win32') {
73 open(CFG,$config_sh) || die "Cannot open $config_sh: $!\n";
74 while (<CFG>)
75 {
76 if (/^(?:ccflags|optimize)='(.+)'$/) {
77 $_ = $1;
78 $define{$1} = 1 while /-D(\w+)/g;
79 }
3cfae81b 80 if ($PLATFORM eq 'os2') {
81 $CONFIG_ARGS = $1 if /^(?:config_args)='(.+)'$/;
82 $ARCHNAME = $1 if /^(?:archname)='(.+)'$/;
83 }
549a6b10 84 }
85 close(CFG);
86}
87
88open(CFG,$config_h) || die "Cannot open $config_h: $!\n";
bbc8f9de 89while (<CFG>)
90 {
91 $define{$1} = 1 if /^\s*#\s*define\s+(MYMALLOC)\b/;
924b3ec4 92 $define{$1} = 1 if /^\s*#\s*define\s+(USE_THREADS)\b/;
549a6b10 93 $define{$1} = 1 if /^\s*#\s*define\s+(USE_PERLIO)\b/;
b86a2fa7 94 $define{$1} = 1 if /^\s*#\s*define\s+(MULTIPLICITY)\b/;
4cb71bb6 95 $define{$1} = 1 if /^\s*#\s*define\s+(PERL_BINCOMPAT_5005)\b/;
bbc8f9de 96 }
97close(CFG);
98
549a6b10 99if ($PLATFORM eq 'win32') {
100 warn join(' ',keys %define)."\n";
101 if ($define{PERL_OBJECT}) {
3075ddba 102 print "LIBRARY Perl56\n";
549a6b10 103 print "DESCRIPTION 'Perl interpreter'\n";
104 print "EXPORTS\n";
51371543 105# output_symbol("perl_alloc");
549a6b10 106 output_symbol("perl_get_host_info");
107 output_symbol("perl_alloc_using");
51371543 108# output_symbol("perl_construct");
109# output_symbol("perl_destruct");
110# output_symbol("perl_free");
111# output_symbol("perl_parse");
112# output_symbol("perl_run");
113# output_symbol("RunPerl");
51371543 114# exit(0);
51371543 115 }
116 else {
549a6b10 117 if ($CCTYPE ne 'GCC') {
118 print "LIBRARY Perl\n";
119 print "DESCRIPTION 'Perl interpreter, export autogenerated'\n";
120 }
121 else {
122 $define{'PERL_GLOBAL_STRUCT'} = 1;
123 $define{'MULTIPLICITY'} = 1;
124 }
125 print "EXPORTS\n";
126 }
3cfae81b 127} elsif ($PLATFORM eq 'os2') {
128 ($v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
129 $v .= '-thread' if $ARCHNAME =~ /-thread/;
130 #$sum = 0;
131 #for (split //, $v) {
132 # $sum = ($sum * 33) + ord;
133 # $sum &= 0xffffff;
134 #}
135 #$sum += $sum >> 5;
136 #$sum &= 0xffff;
137 #$sum = printf '%X', $sum;
138 ($dll = $define{PERL_DLL}) =~ s/\.dll$//i;
139 # print STDERR "'$dll' <= '$define{PERL_DLL}'\n";
140 print <<"---EOP---";
141LIBRARY '$dll' INITINSTANCE TERMINSTANCE
142DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter, configured as $CONFIG_ARGS'
143STACKSIZE 32768
144CODE LOADONCALL
145DATA LOADONCALL NONSHARED MULTIPLE
146EXPORTS
147---EOP---
549a6b10 148} elsif ($PLATFORM eq 'aix') {
149 print "#!\n";
ac4c12e7 150}
bbc8f9de 151
22239a37 152my %skip;
153my %export;
154
51371543 155sub skip_symbols {
156 my $list = shift;
157 foreach my $symbol (@$list) {
158 $skip{$symbol} = 1;
159 }
22239a37 160}
161
51371543 162sub emit_symbols {
163 my $list = shift;
164 foreach my $symbol (@$list) {
165 my $skipsym = $symbol;
166 # XXX hack
167 if ($define{PERL_OBJECT}) {
168 $skipsym =~ s/^Perl_[GIT](\w+)_ptr$/PL_$1/;
169 }
170 emit_symbol($symbol) unless exists $skip{$skipsym};
171 }
22239a37 172}
173
549a6b10 174if ($PLATFORM eq 'win32') {
22239a37 175skip_symbols [qw(
db15561c 176PL_statusvalue_vms
177PL_archpat_auto
178PL_cryptseen
179PL_DBcv
180PL_generation
db15561c 181PL_lastgotoprobe
182PL_linestart
183PL_modcount
184PL_pending_ident
185PL_sortcxix
186PL_sublex_info
187PL_timesbuf
4f63d024 188main
189Perl_ErrorNo
190Perl_GetVars
a6c40364 191Perl_do_exec3
0a753a76 192Perl_do_ipcctl
193Perl_do_ipcget
194Perl_do_msgrcv
195Perl_do_msgsnd
196Perl_do_semop
197Perl_do_shmio
0a753a76 198Perl_dump_fds
d55594ae 199Perl_init_thread_intern
0a753a76 200Perl_my_bzero
201Perl_my_htonl
202Perl_my_ntohl
203Perl_my_swap
204Perl_my_chsize
0a753a76 205Perl_same_dirent
68dc0745 206Perl_setenv_getix
0a753a76 207Perl_unlnk
0a753a76 208Perl_watch
0a753a76 209Perl_safexcalloc
210Perl_safexmalloc
211Perl_safexfree
212Perl_safexrealloc
68dc0745 213Perl_my_memcmp
8b10511d 214Perl_my_memset
db15561c 215PL_cshlen
216PL_cshname
217PL_opsave
22239a37 218)];
549a6b10 219} elsif ($PLATFORM eq 'aix') {
220 skip_symbols([qw(
221Perl_dump_fds
222Perl_ErrorNo
223Perl_GetVars
224Perl_my_bcopy
225Perl_my_bzero
226Perl_my_chsize
227Perl_my_htonl
228Perl_my_memcmp
229Perl_my_memset
230Perl_my_ntohl
231Perl_my_swap
232Perl_safexcalloc
233Perl_safexfree
234Perl_safexmalloc
235Perl_safexrealloc
236Perl_same_dirent
237Perl_unlnk
238PL_cryptseen
239PL_opsave
240PL_statusvalue_vms
241PL_sys_intern
242)]);
243}
0a753a76 244
3cfae81b 245if ($PLATFORM eq 'os2') {
246 emit_symbols([qw(
247ctermid
248get_sysinfo
249Perl_OS2_init
250OS2_Perl_data
251dlopen
252dlsym
253dlerror
254my_tmpfile
255my_tmpnam
256my_flock
257malloc_mutex
258threads_mutex
259nthreads
260nthreads_cond
261os2_cond_wait
262pthread_join
263pthread_create
264pthread_detach
265XS_Cwd_change_drive
266XS_Cwd_current_drive
267XS_Cwd_extLibpath
268XS_Cwd_extLibpath_set
269XS_Cwd_sys_abspath
270XS_Cwd_sys_chdir
271XS_Cwd_sys_cwd
272XS_Cwd_sys_is_absolute
273XS_Cwd_sys_is_relative
274XS_Cwd_sys_is_rooted
275XS_DynaLoader_mod2fname
276XS_File__Copy_syscopy
277Perl_Register_MQ
278Perl_Deregister_MQ
279Perl_Serve_Messages
280Perl_Process_Messages
281init_PMWIN_entries
282PMWIN_entries
283Perl_hab_GET
284)]);
285}
286
51371543 287if ($define{'PERL_OBJECT'}) {
288 skip_symbols [qw(
289 Perl_getenv_len
290 Perl_my_popen
291 Perl_my_pclose
292 )];
293}
294else {
295 skip_symbols [qw(
296 PL_Dir
297 PL_Env
298 PL_LIO
299 PL_Mem
300 PL_Proc
301 PL_Sock
302 PL_StdIO
303 )];
304}
c69f112c 305
bbc8f9de 306if ($define{'MYMALLOC'})
307 {
22239a37 308 emit_symbols [qw(
9423c6fc 309 Perl_dump_mstats
22239a37 310 Perl_malloc
f2517201 311 Perl_mfree
22239a37 312 Perl_realloc
313 Perl_calloc)];
bbc8f9de 314 }
32fcaa0b 315else
316 {
317 skip_symbols [qw(
df31f264 318 Perl_dump_mstats
4f63d024 319 Perl_malloc
320 Perl_mfree
321 Perl_realloc
322 Perl_calloc
32fcaa0b 323 Perl_malloced_size)];
324 }
bbc8f9de 325
d55594ae 326unless ($define{'USE_THREADS'})
327 {
22239a37 328 skip_symbols [qw(
db15561c 329PL_thr_key
330PL_sv_mutex
46124e9e 331PL_strtab_mutex
db15561c 332PL_svref_mutex
333PL_malloc_mutex
5ff3f7a4 334PL_cred_mutex
db15561c 335PL_eval_mutex
336PL_eval_cond
337PL_eval_owner
338PL_threads_mutex
339PL_nthreads
340PL_nthreads_cond
341PL_threadnum
342PL_threadsv_names
343PL_thrsv
22c35a8c 344PL_vtbl_mutex
eb480a0b 345Perl_getTHR
346Perl_setTHR
d55594ae 347Perl_condpair_magic
32f822de 348Perl_new_struct_thread
32f822de 349Perl_per_thread_magicals
d4cce5f1 350Perl_thread_create
351Perl_find_threadsv
d55594ae 352Perl_unlock_condpair
d55594ae 353Perl_magic_mutexfree
95906810 354)];
910dfcc8 355 }
c5be433b 356unless ($define{'USE_THREADS'} or $define{'PERL_IMPLICIT_CONTEXT'}
357 or $define{'PERL_OBJECT'})
358{
4f63d024 359 skip_symbols [qw(
360 Perl_croak_nocontext
361 Perl_die_nocontext
c5be433b 362 Perl_deb_nocontext
4f63d024 363 Perl_form_nocontext
9c1db463 364 Perl_mess_nocontext
4f63d024 365 Perl_warn_nocontext
c5be433b 366 Perl_warner_nocontext
4f63d024 367 Perl_newSVpvf_nocontext
368 Perl_sv_catpvf_nocontext
369 Perl_sv_setpvf_nocontext
370 Perl_sv_catpvf_mg_nocontext
371 Perl_sv_setpvf_mg_nocontext
372 )];
373 }
d4cce5f1 374
910dfcc8 375unless ($define{'FAKE_THREADS'})
376 {
db15561c 377 skip_symbols [qw(PL_curthr)];
d55594ae 378 }
379
22239a37 380sub readvar
381{
382 my $file = shift;
51371543 383 my $proc = shift || sub { "PL_$_[2]" };
549a6b10 384 open(VARS,$file) || die "Cannot open $file: $!\n";
22239a37 385 my @syms;
386 while (<VARS>)
387 {
388 # All symbols have a Perl_ prefix because that's what embed.h
389 # sticks in front of them.
51371543 390 push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?C?)\(([IGT])(\w+)/);
22239a37 391 }
392 close(VARS);
393 return \@syms;
394}
395
d4cce5f1 396if ($define{'USE_THREADS'} || $define{'MULTIPLICITY'})
d55594ae 397 {
549a6b10 398 my $thrd = readvar($thrdvar_h);
22239a37 399 skip_symbols $thrd;
d55594ae 400 }
401
d4cce5f1 402if ($define{'MULTIPLICITY'})
d55594ae 403 {
549a6b10 404 my $interp = readvar($intrpvar_h);
22239a37 405 skip_symbols $interp;
406 }
407
408if ($define{'PERL_GLOBAL_STRUCT'})
409 {
549a6b10 410 my $global = readvar($perlvars_h);
22239a37 411 skip_symbols $global;
852c2e52 412 emit_symbols [qw(Perl_GetVars)];
db15561c 413 emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
d4cce5f1 414 }
d55594ae 415
36c15d3f 416unless ($define{'DEBUGGING'})
417 {
22239a37 418 skip_symbols [qw(
fea7140c 419 Perl_deb
420 Perl_deb_growlevel
421 Perl_debop
422 Perl_debprofdump
423 Perl_debstack
424 Perl_debstackptrs
22239a37 425 Perl_runops_debug
426 Perl_sv_peek
3836fe67 427 PL_block_type
22c35a8c 428 PL_watchaddr
429 PL_watchok)];
36c15d3f 430 }
431
549a6b10 432if ($PLATFORM eq 'win32' && $define{'HAVE_DES_FCRYPT'})
26618a56 433 {
434 emit_symbols [qw(win32_crypt)];
435 }
436
22c35a8c 437# functions from *.sym files
438
549a6b10 439my @syms = ($global_sym, $pp_sym, $globvar_sym);
440
441if ($define{'USE_PERLIO'})
22239a37 442 {
549a6b10 443 push @syms, $perlio_sym;
444 }
445
446for my $syms (@syms)
447 {
448 open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
22c35a8c 449 while (<GLOBAL>)
450 {
451 next if (!/^[A-Za-z]/);
452 # Functions have a Perl_ prefix
453 # Variables have a PL_ prefix
454 chomp($_);
4f63d024 455 my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
22c35a8c 456 $symbol .= $_;
457 emit_symbol($symbol) unless exists $skip{$symbol};
458 }
459 close(GLOBAL);
22239a37 460 }
0a753a76 461
22c35a8c 462# variables
0a753a76 463
51371543 464if ($define{'PERL_OBJECT'}) {
43cd9f80 465 for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
51371543 466 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
467 emit_symbols $glob;
468 }
469}
470else {
471 unless ($define{'PERL_GLOBAL_STRUCT'}) {
549a6b10 472 my $glob = readvar($perlvars_h);
51371543 473 emit_symbols $glob;
474 }
475 unless ($define{'MULTIPLICITY'}) {
549a6b10 476 my $glob = readvar($intrpvar_h);
51371543 477 emit_symbols $glob;
478 }
479
480 unless ($define{'MULTIPLICITY'} || $define{'USE_THREADS'}) {
549a6b10 481 my $glob = readvar($thrdvar_h);
51371543 482 emit_symbols $glob;
483 }
484}
0a753a76 485
549a6b10 486sub try_symbol {
487 my $symbol = shift;
22239a37 488
549a6b10 489 return if $symbol !~ /^[A-Za-z]/;
490 return if $symbol =~ /^\#/;
491 $symbol =~s/\r//g;
492 chomp($symbol);
43cd9f80 493 return if exists $skip{$symbol};
549a6b10 494 emit_symbol($symbol);
3e3baf6d 495}
0a753a76 496
549a6b10 497while (<DATA>) {
498 try_symbol($_);
ac4c12e7 499}
500
549a6b10 501if ($PLATFORM eq 'win32') {
502 foreach my $symbol (qw(
d28b3ca3 503boot_DynaLoader
549a6b10 504Perl_getTHR
505Perl_init_os_extras
506Perl_setTHR
d55594ae 507Perl_thread_create
549a6b10 508Perl_win32_init
509RunPerl
43cd9f80 510GetPerlInterpreter
511SetPerlInterpreter
68dc0745 512win32_errno
96e4d5b1 513win32_environ
68dc0745 514win32_stdin
515win32_stdout
96e4d5b1 516win32_stderr
68dc0745 517win32_ferror
518win32_feof
519win32_strerror
520win32_fprintf
521win32_printf
522win32_vfprintf
96e4d5b1 523win32_vprintf
68dc0745 524win32_fread
525win32_fwrite
526win32_fopen
527win32_fdopen
528win32_freopen
529win32_fclose
530win32_fputs
531win32_fputc
532win32_ungetc
533win32_getc
534win32_fileno
535win32_clearerr
536win32_fflush
537win32_ftell
538win32_fseek
539win32_fgetpos
540win32_fsetpos
541win32_rewind
542win32_tmpfile
543win32_abort
544win32_fstat
96e4d5b1 545win32_stat
68dc0745 546win32_pipe
547win32_popen
548win32_pclose
e24c7c18 549win32_rename
68dc0745 550win32_setmode
96e4d5b1 551win32_lseek
552win32_tell
68dc0745 553win32_dup
554win32_dup2
96e4d5b1 555win32_open
556win32_close
557win32_eof
68dc0745 558win32_read
559win32_write
3e3baf6d 560win32_spawnvp
5aabfad6 561win32_mkdir
562win32_rmdir
563win32_chdir
c90c0ff4 564win32_flock
eb62e965 565win32_execv
6890e559 566win32_execvp
54310121 567win32_htons
568win32_ntohs
569win32_htonl
570win32_ntohl
571win32_inet_addr
572win32_inet_ntoa
573win32_socket
574win32_bind
575win32_listen
576win32_accept
577win32_connect
578win32_send
579win32_sendto
580win32_recv
581win32_recvfrom
582win32_shutdown
3a25acb4 583win32_closesocket
54310121 584win32_ioctlsocket
585win32_setsockopt
586win32_getsockopt
587win32_getpeername
588win32_getsockname
589win32_gethostname
590win32_gethostbyname
591win32_gethostbyaddr
592win32_getprotobyname
593win32_getprotobynumber
594win32_getservbyname
595win32_getservbyport
596win32_select
597win32_endhostent
598win32_endnetent
599win32_endprotoent
600win32_endservent
601win32_getnetent
602win32_getnetbyname
603win32_getnetbyaddr
604win32_getprotoent
605win32_getservent
606win32_sethostent
607win32_setnetent
608win32_setprotoent
609win32_setservent
ad2e33dc 610win32_getenv
ac5c734f 611win32_putenv
84902520 612win32_perror
613win32_setbuf
614win32_setvbuf
615win32_flushall
616win32_fcloseall
617win32_fgets
618win32_gets
619win32_fgetc
620win32_putc
621win32_puts
622win32_getchar
623win32_putchar
624win32_malloc
625win32_calloc
626win32_realloc
627win32_free
f3986ebb 628win32_sleep
629win32_times
630win32_alarm
65e48ea9 631win32_open_osfhandle
632win32_get_osfhandle
f998180f 633win32_ioctl
ad0751ec 634win32_utime
b2af26b1 635win32_uname
22fae026 636win32_wait
f55ee38a 637win32_waitpid
638win32_kill
22fae026 639win32_str_os_error
ce2e26e5 640win32_opendir
641win32_readdir
642win32_telldir
643win32_seekdir
644win32_rewinddir
645win32_closedir
8ac9c18d 646win32_longpath
0cb96387 647win32_os_id
549a6b10 648 )) {
649 try_symbol($symbol);
650 }
651}
3cfae81b 652elsif ($PLATFORM eq 'os2') {
653 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
654 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
655 close MAP or die 'Cannot close miniperl.map';
656
657 @missing = grep { !exists $mapped{$_} } keys %export;
658 delete $export{$_} foreach @missing;
659}
22239a37 660
549a6b10 661# Now all symbols should be defined because
662# next we are going to output them.
663
664foreach my $symbol (sort keys %export)
665 {
666 output_symbol($symbol);
667 }
668
669sub emit_symbol {
670 my $symbol = shift;
671 chomp($symbol);
672 $export{$symbol} = 1;
673}
674
675sub output_symbol {
676 my $symbol = shift;
4cb71bb6 677 $symbol = $bincompat5005{$symbol}
678 if $define{PERL_BINCOMPAT_5005} and $symbol =~ /^($bincompat5005)$/;
549a6b10 679 if ($PLATFORM eq 'win32') {
549a6b10 680 $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
520c758a 681 print "\t$symbol\n";
549a6b10 682# XXX: binary compatibility between compilers is an exercise
683# in frustration :-(
684# if ($CCTYPE eq "BORLAND") {
685# # workaround Borland quirk by exporting both the straight
686# # name and a name with leading underscore. Note the
687# # alias *must* come after the symbol itself, if both
688# # are to be exported. (Linker bug?)
689# print "\t_$symbol\n";
690# print "\t$symbol = _$symbol\n";
691# }
692# elsif ($CCTYPE eq 'GCC') {
693# # Symbols have leading _ whole process is $%@"% slow
694# # so skip aliases for now
695# nprint "\t$symbol\n";
696# }
697# else {
698# # for binary coexistence, export both the symbol and
699# # alias with leading underscore
700# print "\t$symbol\n";
701# print "\t_$symbol = $symbol\n";
702# }
3cfae81b 703 } elsif ($PLATFORM eq 'os2') {
704 print qq( "$symbol"\n);
549a6b10 705 } elsif ($PLATFORM eq 'aix') {
706 print "$symbol\n";
707 }
708}
709
7101;
711__DATA__
712# extra globals not included above.
713perl_alloc
714perl_construct
715perl_destruct
716perl_free
717perl_parse
718perl_run