RE: 5.6.0 BUG: Lexical warnings aren't lexical
[p5sagit/p5-mst-13.2.git] / makedef.pl
1 #
2 # Create the export list for perl.
3 #
4 # Needed by WIN32 and OS/2 for creating perl.dll,
5 # and by AIX for creating libperl.a when -Dusershrplib is in effect,
6 # and by MacOS Classic.
7 #
8 # reads global.sym, pp.sym, perlvars.h, intrpvar.h, thrdvar.h, config.h
9 # On OS/2 reads miniperl.map as well
10
11 my $PLATFORM;
12 my $CCTYPE;
13
14 my %bincompat5005 =
15       (
16        Perl_call_atexit         =>      "perl_atexit",
17        Perl_eval_sv             =>      "perl_eval_sv",
18        Perl_eval_pv             =>      "perl_eval_pv",
19        Perl_call_argv           =>      "perl_call_argv",
20        Perl_call_method         =>      "perl_call_method",
21        Perl_call_pv             =>      "perl_call_pv",
22        Perl_call_sv             =>      "perl_call_sv",
23        Perl_get_av              =>      "perl_get_av",
24        Perl_get_cv              =>      "perl_get_cv",
25        Perl_get_hv              =>      "perl_get_hv",
26        Perl_get_sv              =>      "perl_get_sv",
27        Perl_init_i18nl10n       =>      "perl_init_i18nl10n",
28        Perl_init_i18nl14n       =>      "perl_init_i18nl14n",
29        Perl_new_collate         =>      "perl_new_collate",
30        Perl_new_ctype           =>      "perl_new_ctype",
31        Perl_new_numeric         =>      "perl_new_numeric",
32        Perl_require_pv          =>      "perl_require_pv",
33        Perl_safesyscalloc       =>      "Perl_safecalloc",
34        Perl_safesysfree         =>      "Perl_safefree",
35        Perl_safesysmalloc       =>      "Perl_safemalloc",
36        Perl_safesysrealloc      =>      "Perl_saferealloc",
37        Perl_set_numeric_local   =>      "perl_set_numeric_local",
38        Perl_set_numeric_standard  =>    "perl_set_numeric_standard",
39        Perl_malloc              =>      "malloc",
40        Perl_mfree               =>      "free",
41        Perl_realloc             =>      "realloc",
42        Perl_calloc              =>      "calloc",
43       );
44
45 my $bincompat5005 = join("|", keys %bincompat5005);
46
47 while (@ARGV) {
48     my $flag = shift;
49     $define{$1} = 1 if ($flag =~ /^-D(\w+)$/);
50     $define{$1} = $2 if ($flag =~ /^-D(\w+)=(.+)$/);
51     $CCTYPE   = $1 if ($flag =~ /^CCTYPE=(\w+)$/);
52     $PLATFORM = $1 if ($flag =~ /^PLATFORM=(\w+)$/);
53 }
54
55 my @PLATFORM = qw(aix win32 os2 MacOS);
56 my %PLATFORM;
57 @PLATFORM{@PLATFORM} = ();
58
59 defined $PLATFORM || die "PLATFORM undefined, must be one of: @PLATFORM\n";
60 exists $PLATFORM{$PLATFORM} || die "PLATFORM must be one of: @PLATFORM\n";
61
62 my $config_sh   = "config.sh";
63 my $config_h    = "config.h";
64 my $thrdvar_h   = "thrdvar.h";
65 my $intrpvar_h  = "intrpvar.h";
66 my $perlvars_h  = "perlvars.h";
67 my $global_sym  = "global.sym";
68 my $pp_sym      = "pp.sym";
69 my $globvar_sym = "globvar.sym";
70 my $perlio_sym  = "perlio.sym";
71
72 if ($PLATFORM eq 'aix') {
73     # Nothing for now.
74 }
75 elsif ($PLATFORM eq 'win32') {
76     $CCTYPE = "MSVC" unless defined $CCTYPE;
77     foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
78                 $pp_sym, $globvar_sym, $perlio_sym) {
79         s!^!..\\!;
80     }
81 }
82 elsif ($PLATFORM eq 'MacOS') {
83     foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
84                 $pp_sym, $globvar_sym, $perlio_sym) {
85         s!^!::!;
86     }
87 }
88
89 unless ($PLATFORM eq 'win32' || $PLATFORM eq 'MacOS') {
90     open(CFG,$config_sh) || die "Cannot open $config_sh: $!\n";
91     while (<CFG>) {
92         if (/^(?:ccflags|optimize)='(.+)'$/) {
93             $_ = $1;
94             $define{$1} = 1 while /-D(\w+)/g;
95         }
96         if ($PLATFORM eq 'os2') {
97             $CONFIG_ARGS = $1 if /^(?:config_args)='(.+)'$/;
98             $ARCHNAME =    $1 if /^(?:archname)='(.+)'$/;
99         }
100     }
101     close(CFG);
102 }
103
104 open(CFG,$config_h) || die "Cannot open $config_h: $!\n";
105 while (<CFG>) {
106     $define{$1} = 1 if /^\s*#\s*define\s+(MYMALLOC)\b/;
107     $define{$1} = 1 if /^\s*#\s*define\s+(MULTIPLICITY)\b/;
108     $define{$1} = 1 if /^\s*#\s*define\s+(PERL_\w+)\b/;
109     $define{$1} = 1 if /^\s*#\s*define\s+(USE_\w+)\b/;
110 }
111 close(CFG);
112
113 # perl.h logic duplication begins
114
115 if ($define{USE_ITHREADS}) {
116     if (!$define{MULTIPLICITY} && !$define{PERL_OBJECT}) {
117         $define{MULTIPLICITY} = 1;
118     }
119 }
120
121 $define{PERL_IMPLICIT_CONTEXT} ||=
122     $define{USE_ITHREADS} ||
123     $define{USE_5005THREADS}  ||
124     $define{MULTIPLICITY} ;
125
126 if ($define{PERL_CAPI}) {
127     delete $define{PERL_OBJECT};
128     $define{MULTIPLICITY} = 1;
129     $define{PERL_IMPLICIT_CONTEXT} = 1;
130     $define{PERL_IMPLICIT_SYS}     = 1;
131 }
132
133 if ($define{PERL_OBJECT}) {
134     $define{PERL_IMPLICIT_CONTEXT} = 1;
135     $define{PERL_IMPLICIT_SYS}     = 1;
136 }
137
138 # perl.h logic duplication ends
139
140 if ($PLATFORM eq 'win32') {
141     warn join(' ',keys %define)."\n";
142     print "LIBRARY Perl57\n";
143     print "DESCRIPTION 'Perl interpreter'\n";
144     print "EXPORTS\n";
145     if ($define{PERL_IMPLICIT_SYS}) {
146         output_symbol("perl_get_host_info");
147         output_symbol("perl_alloc_override");
148     }
149 }
150 elsif ($PLATFORM eq 'os2') {
151     ($v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
152     $v .= '-thread' if $ARCHNAME =~ /-thread/;
153     ($dll = $define{PERL_DLL}) =~ s/\.dll$//i;
154     print <<"---EOP---";
155 LIBRARY '$dll' INITINSTANCE TERMINSTANCE
156 DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter'
157 STACKSIZE 32768
158 CODE LOADONCALL
159 DATA LOADONCALL NONSHARED MULTIPLE
160 EXPORTS
161 ---EOP---
162 }
163 elsif ($PLATFORM eq 'aix') {
164     print "#!\n";
165 }
166
167 my %skip;
168 my %export;
169
170 sub skip_symbols {
171     my $list = shift;
172     foreach my $symbol (@$list) {
173         $skip{$symbol} = 1;
174     }
175 }
176
177 sub emit_symbols {
178     my $list = shift;
179     foreach my $symbol (@$list) {
180         my $skipsym = $symbol;
181         # XXX hack
182         if ($define{PERL_OBJECT} || $define{MULTIPLICITY}) {
183             $skipsym =~ s/^Perl_[GIT](\w+)_ptr$/PL_$1/;
184         }
185         emit_symbol($symbol) unless exists $skip{$skipsym};
186     }
187 }
188
189 if ($PLATFORM eq 'win32') {
190     skip_symbols [qw(
191                      PL_statusvalue_vms
192                      PL_archpat_auto
193                      PL_cryptseen
194                      PL_DBcv
195                      PL_generation
196                      PL_lastgotoprobe
197                      PL_linestart
198                      PL_modcount
199                      PL_pending_ident
200                      PL_sortcxix
201                      PL_sublex_info
202                      PL_timesbuf
203                      main
204                      Perl_ErrorNo
205                      Perl_GetVars
206                      Perl_do_exec3
207                      Perl_do_ipcctl
208                      Perl_do_ipcget
209                      Perl_do_msgrcv
210                      Perl_do_msgsnd
211                      Perl_do_semop
212                      Perl_do_shmio
213                      Perl_dump_fds
214                      Perl_init_thread_intern
215                      Perl_my_bzero
216                      Perl_my_htonl
217                      Perl_my_ntohl
218                      Perl_my_swap
219                      Perl_my_chsize
220                      Perl_same_dirent
221                      Perl_setenv_getix
222                      Perl_unlnk
223                      Perl_watch
224                      Perl_safexcalloc
225                      Perl_safexmalloc
226                      Perl_safexfree
227                      Perl_safexrealloc
228                      Perl_my_memcmp
229                      Perl_my_memset
230                      PL_cshlen
231                      PL_cshname
232                      PL_opsave
233                      Perl_do_exec
234                      Perl_getenv_len
235                      Perl_my_pclose
236                      Perl_my_popen
237                      )];
238 }
239 elsif ($PLATFORM eq 'aix') {
240     skip_symbols([qw(
241                      Perl_dump_fds
242                      Perl_ErrorNo
243                      Perl_GetVars
244                      Perl_my_bcopy
245                      Perl_my_bzero
246                      Perl_my_chsize
247                      Perl_my_htonl
248                      Perl_my_memcmp
249                      Perl_my_memset
250                      Perl_my_ntohl
251                      Perl_my_swap
252                      Perl_safexcalloc
253                      Perl_safexfree
254                      Perl_safexmalloc
255                      Perl_safexrealloc
256                      Perl_same_dirent
257                      Perl_unlnk
258                      Perl_sys_intern_clear
259                      Perl_sys_intern_dup
260                      Perl_sys_intern_init
261                      PL_cryptseen
262                      PL_opsave
263                      PL_statusvalue_vms
264                      PL_sys_intern
265                      )]);
266 }
267 elsif ($PLATFORM eq 'os2') {
268     emit_symbols([qw(
269                     ctermid
270                     get_sysinfo
271                     Perl_OS2_init
272                     OS2_Perl_data
273                     dlopen
274                     dlsym
275                     dlerror
276                     dlclose
277                     my_tmpfile
278                     my_tmpnam
279                     my_flock
280                     my_rmdir
281                     my_mkdir
282                     malloc_mutex
283                     threads_mutex
284                     nthreads
285                     nthreads_cond
286                     os2_cond_wait
287                     os2_stat
288                     pthread_join
289                     pthread_create
290                     pthread_detach
291                     XS_Cwd_change_drive
292                     XS_Cwd_current_drive
293                     XS_Cwd_extLibpath
294                     XS_Cwd_extLibpath_set
295                     XS_Cwd_sys_abspath
296                     XS_Cwd_sys_chdir
297                     XS_Cwd_sys_cwd
298                     XS_Cwd_sys_is_absolute
299                     XS_Cwd_sys_is_relative
300                     XS_Cwd_sys_is_rooted
301                     XS_DynaLoader_mod2fname
302                     XS_File__Copy_syscopy
303                     Perl_Register_MQ
304                     Perl_Deregister_MQ
305                     Perl_Serve_Messages
306                     Perl_Process_Messages
307                     init_PMWIN_entries
308                     PMWIN_entries
309                     Perl_hab_GET
310                     )]);
311 }
312 elsif ($PLATFORM eq 'MacOS') {
313     skip_symbols [qw(
314                     Perl_GetVars
315                     PL_cryptseen
316                     PL_cshlen
317                     PL_cshname
318                     PL_statusvalue_vms
319                     PL_sys_intern
320                     PL_opsave
321                     PL_timesbuf
322                     Perl_dump_fds
323                     Perl_my_bcopy
324                     Perl_my_bzero
325                     Perl_my_chsize
326                     Perl_my_htonl
327                     Perl_my_memcmp
328                     Perl_my_memset
329                     Perl_my_ntohl
330                     Perl_my_swap
331                     Perl_safexcalloc
332                     Perl_safexfree
333                     Perl_safexmalloc
334                     Perl_safexrealloc
335                     Perl_unlnk
336                     Perl_sys_intern_clear
337                     Perl_sys_intern_init
338                     )];
339 }
340
341
342 unless ($define{'DEBUGGING'}) {
343     skip_symbols [qw(
344                     Perl_deb_growlevel
345                     Perl_debop
346                     Perl_debprofdump
347                     Perl_debstack
348                     Perl_debstackptrs
349                     Perl_runops_debug
350                     Perl_sv_peek
351                     PL_block_type
352                     PL_watchaddr
353                     PL_watchok
354                     )];
355 }
356
357 if ($define{'PERL_IMPLICIT_SYS'}) {
358     skip_symbols [qw(
359                     Perl_getenv_len
360                     Perl_my_popen
361                     Perl_my_pclose
362                     )];
363 }
364 else {
365     skip_symbols [qw(
366                     PL_Mem
367                     PL_MemShared
368                     PL_MemParse
369                     PL_Env
370                     PL_StdIO
371                     PL_LIO
372                     PL_Dir
373                     PL_Sock
374                     PL_Proc
375                     )];
376 }
377
378 unless ($define{'PERL_FLEXIBLE_EXCEPTIONS'}) {
379     skip_symbols [qw(
380                     PL_protect
381                     Perl_default_protect
382                     Perl_vdefault_protect
383                     )];
384 }
385
386 if ($define{'MYMALLOC'}) {
387     emit_symbols [qw(
388                     Perl_dump_mstats
389                     Perl_get_mstats
390                     Perl_malloc
391                     Perl_mfree
392                     Perl_realloc
393                     Perl_calloc
394                     Perl_strdup
395                     Perl_putenv
396                     )];
397     if ($define{'USE_5005THREADS'} || $define{'USE_ITHREADS'}) {
398         emit_symbols [qw(
399                         PL_malloc_mutex
400                         )];
401     }
402     else {
403         skip_symbols [qw(
404                         PL_malloc_mutex
405                         )];
406     }
407 }
408 else {
409     skip_symbols [qw(
410                     PL_malloc_mutex
411                     Perl_dump_mstats
412                     Perl_get_mstats
413                     Perl_malloc
414                     Perl_mfree
415                     Perl_realloc
416                     Perl_calloc
417                     Perl_malloced_size
418                     )];
419 }
420
421 unless ($define{'USE_5005THREADS'} || $define{'USE_ITHREADS'}) {
422     skip_symbols [qw(
423                     PL_thr_key
424                     )];
425 }
426
427 unless ($define{'USE_5005THREADS'}) {
428     skip_symbols [qw(
429                     PL_sv_mutex
430                     PL_strtab_mutex
431                     PL_svref_mutex
432                     PL_cred_mutex
433                     PL_eval_mutex
434                     PL_fdpid_mutex
435                     PL_sv_lock_mutex
436                     PL_eval_cond
437                     PL_eval_owner
438                     PL_threads_mutex
439                     PL_nthreads
440                     PL_nthreads_cond
441                     PL_threadnum
442                     PL_threadsv_names
443                     PL_thrsv
444                     PL_vtbl_mutex
445                     Perl_condpair_magic
446                     Perl_new_struct_thread
447                     Perl_per_thread_magicals
448                     Perl_thread_create
449                     Perl_find_threadsv
450                     Perl_unlock_condpair
451                     Perl_magic_mutexfree
452                     Perl_sv_lock
453                     )];
454 }
455
456 unless ($define{'USE_ITHREADS'}) {
457     skip_symbols [qw(
458                     PL_ptr_table
459                     PL_op_mutex
460                     Perl_dirp_dup
461                     Perl_cx_dup
462                     Perl_si_dup
463                     Perl_any_dup
464                     Perl_ss_dup
465                     Perl_fp_dup
466                     Perl_gp_dup
467                     Perl_he_dup
468                     Perl_mg_dup
469                     Perl_re_dup
470                     Perl_sv_dup
471                     Perl_sys_intern_dup
472                     Perl_ptr_table_clear
473                     Perl_ptr_table_fetch
474                     Perl_ptr_table_free
475                     Perl_ptr_table_new
476                     Perl_ptr_table_clear
477                     Perl_ptr_table_free
478                     Perl_ptr_table_split
479                     Perl_ptr_table_store
480                     perl_clone
481                     perl_clone_using
482                     )];
483 }
484
485 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
486     skip_symbols [qw(
487                     Perl_croak_nocontext
488                     Perl_die_nocontext
489                     Perl_deb_nocontext
490                     Perl_form_nocontext
491                     Perl_load_module_nocontext
492                     Perl_mess_nocontext
493                     Perl_warn_nocontext
494                     Perl_warner_nocontext
495                     Perl_newSVpvf_nocontext
496                     Perl_sv_catpvf_nocontext
497                     Perl_sv_setpvf_nocontext
498                     Perl_sv_catpvf_mg_nocontext
499                     Perl_sv_setpvf_mg_nocontext
500                     )];
501 }
502
503 unless ($define{'PERL_IMPLICIT_SYS'}) {
504     skip_symbols [qw(
505                     perl_alloc_using
506                     perl_clone_using
507                     )];
508 }
509
510 unless ($define{'FAKE_THREADS'}) {
511     skip_symbols [qw(PL_curthr)];
512 }
513
514 sub readvar {
515     my $file = shift;
516     my $proc = shift || sub { "PL_$_[2]" };
517     open(VARS,$file) || die "Cannot open $file: $!\n";
518     my @syms;
519     while (<VARS>) {
520         # All symbols have a Perl_ prefix because that's what embed.h
521         # sticks in front of them.
522         push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?C?)\(([IGT])(\w+)/);
523     }
524     close(VARS);
525     return \@syms;
526 }
527
528 if ($define{'USE_5005THREADS'}) {
529     my $thrd = readvar($thrdvar_h);
530     skip_symbols $thrd;
531 }
532
533 if ($define{'PERL_GLOBAL_STRUCT'}) {
534     my $global = readvar($perlvars_h);
535     skip_symbols $global;
536     emit_symbol('Perl_GetVars');
537     emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
538 }
539
540 # functions from *.sym files
541
542 my @syms = ($global_sym, $globvar_sym); # $pp_sym is not part of the API
543
544 my @layer_syms = qw(
545                          PerlIOBase_clearerr
546                          PerlIOBase_close
547                          PerlIOBase_eof
548                          PerlIOBase_error
549                          PerlIOBase_fileno
550                          PerlIOBase_setlinebuf
551                          PerlIOBase_pushed
552                          PerlIOBase_read
553                          PerlIOBuf_bufsiz
554                          PerlIOBuf_fill
555                          PerlIOBuf_flush
556                          PerlIOBuf_get_cnt
557                          PerlIOBuf_get_ptr
558                          PerlIOBuf_open
559                          PerlIOBuf_pushed
560                          PerlIOBuf_read
561                          PerlIOBuf_seek
562                          PerlIOBuf_set_ptrcnt
563                          PerlIOBuf_tell
564                          PerlIOBuf_unread
565                          PerlIOBuf_write
566                          PerlIO_define_layer
567                          PerlIO_arg_fetch
568                          PerlIO_pending
569                          PerlIO_allocate
570                          PerlIO_push
571                          PerlIO_unread
572 );
573
574 if ($define{'USE_PERLIO'}) {
575     push @syms, $perlio_sym;
576     if ($define{'USE_SFIO'}) {
577         skip_symbols \@layer_syms;
578         # SFIO defines most of the PerlIO routines as macros
579         skip_symbols [qw(
580                          PerlIO_canset_cnt
581                          PerlIO_clearerr
582                          PerlIO_close
583                          PerlIO_eof
584                          PerlIO_error
585                          PerlIO_exportFILE
586                          PerlIO_fast_gets
587                          PerlIO_fdopen
588                          PerlIO_fileno
589                          PerlIO_findFILE
590                          PerlIO_flush
591                          PerlIO_get_base
592                          PerlIO_get_bufsiz
593                          PerlIO_get_cnt
594                          PerlIO_get_ptr
595                          PerlIO_getc
596                          PerlIO_getname
597                          PerlIO_has_base
598                          PerlIO_has_cntptr
599                          PerlIO_importFILE
600                          PerlIO_open
601                          PerlIO_printf
602                          PerlIO_putc
603                          PerlIO_puts
604                          PerlIO_read
605                          PerlIO_releaseFILE
606                          PerlIO_reopen
607                          PerlIO_rewind
608                          PerlIO_seek
609                          PerlIO_set_cnt
610                          PerlIO_set_ptrcnt
611                          PerlIO_setlinebuf
612                          PerlIO_sprintf
613                          PerlIO_stderr
614                          PerlIO_stdin
615                          PerlIO_stdout
616                          PerlIO_stdoutf
617                          PerlIO_tell
618                          PerlIO_ungetc
619                          PerlIO_vprintf
620                          PerlIO_write
621                          )];
622     }
623 } else {
624         # Skip the PerlIO New Generation symbols.
625         skip_symbols \@layer_syms;
626 }
627
628 for my $syms (@syms) {
629     open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
630     while (<GLOBAL>) {
631         next if (!/^[A-Za-z]/);
632         # Functions have a Perl_ prefix
633         # Variables have a PL_ prefix
634         chomp($_);
635         my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
636         $symbol .= $_;
637         emit_symbol($symbol) unless exists $skip{$symbol};
638     }
639     close(GLOBAL);
640 }
641
642 # variables
643
644 if ($define{'PERL_OBJECT'} || $define{'MULTIPLICITY'}) {
645     for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
646         my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
647         emit_symbols $glob;
648     }
649     # XXX AIX seems to want the perlvars.h symbols, for some reason
650     if ($PLATFORM eq 'aix') {
651         my $glob = readvar($perlvars_h);
652         emit_symbols $glob;
653     }
654 }
655 else {
656     unless ($define{'PERL_GLOBAL_STRUCT'}) {
657         my $glob = readvar($perlvars_h);
658         emit_symbols $glob;
659     }
660     unless ($define{'MULTIPLICITY'}) {
661         my $glob = readvar($intrpvar_h);
662         emit_symbols $glob;
663     }
664     unless ($define{'MULTIPLICITY'} || $define{'USE_5005THREADS'}) {
665         my $glob = readvar($thrdvar_h);
666         emit_symbols $glob;
667     }
668 }
669
670 sub try_symbol {
671     my $symbol = shift;
672
673     return if $symbol !~ /^[A-Za-z]/;
674     return if $symbol =~ /^\#/;
675     $symbol =~s/\r//g;
676     chomp($symbol);
677     return if exists $skip{$symbol};
678     emit_symbol($symbol);
679 }
680
681 while (<DATA>) {
682     try_symbol($_);
683 }
684
685 if ($PLATFORM eq 'win32') {
686     foreach my $symbol (qw(
687                             setuid
688                             setgid
689                             boot_DynaLoader
690                             Perl_init_os_extras
691                             Perl_thread_create
692                             Perl_win32_init
693                             RunPerl
694                             win32_errno
695                             win32_environ
696                             win32_abort
697                             win32_fstat
698                             win32_stat
699                             win32_pipe
700                             win32_popen
701                             win32_pclose
702                             win32_rename
703                             win32_setmode
704                             win32_lseek
705                             win32_tell
706                             win32_dup
707                             win32_dup2
708                             win32_open
709                             win32_close
710                             win32_eof
711                             win32_read
712                             win32_write
713                             win32_spawnvp
714                             win32_mkdir
715                             win32_rmdir
716                             win32_chdir
717                             win32_flock
718                             win32_execv
719                             win32_execvp
720                             win32_htons
721                             win32_ntohs
722                             win32_htonl
723                             win32_ntohl
724                             win32_inet_addr
725                             win32_inet_ntoa
726                             win32_socket
727                             win32_bind
728                             win32_listen
729                             win32_accept
730                             win32_connect
731                             win32_send
732                             win32_sendto
733                             win32_recv
734                             win32_recvfrom
735                             win32_shutdown
736                             win32_closesocket
737                             win32_ioctlsocket
738                             win32_setsockopt
739                             win32_getsockopt
740                             win32_getpeername
741                             win32_getsockname
742                             win32_gethostname
743                             win32_gethostbyname
744                             win32_gethostbyaddr
745                             win32_getprotobyname
746                             win32_getprotobynumber
747                             win32_getservbyname
748                             win32_getservbyport
749                             win32_select
750                             win32_endhostent
751                             win32_endnetent
752                             win32_endprotoent
753                             win32_endservent
754                             win32_getnetent
755                             win32_getnetbyname
756                             win32_getnetbyaddr
757                             win32_getprotoent
758                             win32_getservent
759                             win32_sethostent
760                             win32_setnetent
761                             win32_setprotoent
762                             win32_setservent
763                             win32_getenv
764                             win32_putenv
765                             win32_perror
766                             win32_malloc
767                             win32_calloc
768                             win32_realloc
769                             win32_free
770                             win32_sleep
771                             win32_times
772                             win32_access
773                             win32_alarm
774                             win32_chmod
775                             win32_open_osfhandle
776                             win32_get_osfhandle
777                             win32_ioctl
778                             win32_link
779                             win32_unlink
780                             win32_utime
781                             win32_uname
782                             win32_wait
783                             win32_waitpid
784                             win32_kill
785                             win32_str_os_error
786                             win32_opendir
787                             win32_readdir
788                             win32_telldir
789                             win32_seekdir
790                             win32_rewinddir
791                             win32_closedir
792                             win32_longpath
793                             win32_os_id
794                             win32_getpid
795                             win32_crypt
796                             win32_dynaload
797
798                             win32_stdin
799                             win32_stdout
800                             win32_stderr
801                             win32_ferror
802                             win32_feof
803                             win32_strerror
804                             win32_fprintf
805                             win32_printf
806                             win32_vfprintf
807                             win32_vprintf
808                             win32_fread
809                             win32_fwrite
810                             win32_fopen
811                             win32_fdopen
812                             win32_freopen
813                             win32_fclose
814                             win32_fputs
815                             win32_fputc
816                             win32_ungetc
817                             win32_getc
818                             win32_fileno
819                             win32_clearerr
820                             win32_fflush
821                             win32_ftell
822                             win32_fseek
823                             win32_fgetpos
824                             win32_fsetpos
825                             win32_rewind
826                             win32_tmpfile
827                             win32_setbuf
828                             win32_setvbuf
829                             win32_flushall
830                             win32_fcloseall
831                             win32_fgets
832                             win32_gets
833                             win32_fgetc
834                             win32_putc
835                             win32_puts
836                             win32_getchar
837                             win32_putchar
838                            ))
839     {
840         try_symbol($symbol);
841     }
842 }
843 elsif ($PLATFORM eq 'os2') {
844     open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
845     /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
846     close MAP or die 'Cannot close miniperl.map';
847
848     @missing = grep { !exists $mapped{$_} and !exists $bincompat5005{$_} }
849                     keys %export;
850     delete $export{$_} foreach @missing;
851 }
852 elsif ($PLATFORM eq 'MacOS') {
853     open MACSYMS, 'macperl.sym' or die 'Cannot read macperl.sym';
854
855     while (<MACSYMS>) {
856         try_symbol($_);
857     }
858
859     close MACSYMS;
860 }
861
862 # Now all symbols should be defined because
863 # next we are going to output them.
864
865 foreach my $symbol (sort keys %export) {
866     output_symbol($symbol);
867 }
868
869 sub emit_symbol {
870     my $symbol = shift;
871     chomp($symbol);
872     $export{$symbol} = 1;
873 }
874
875 sub output_symbol {
876     my $symbol = shift;
877     $symbol = $bincompat5005{$symbol}
878         if $define{PERL_BINCOMPAT_5005} and $symbol =~ /^($bincompat5005)$/;
879     if ($PLATFORM eq 'win32') {
880         $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
881         print "\t$symbol\n";
882 # XXX: binary compatibility between compilers is an exercise
883 # in frustration :-(
884 #        if ($CCTYPE eq "BORLAND") {
885 #           # workaround Borland quirk by exporting both the straight
886 #           # name and a name with leading underscore.  Note the
887 #           # alias *must* come after the symbol itself, if both
888 #           # are to be exported. (Linker bug?)
889 #           print "\t_$symbol\n";
890 #           print "\t$symbol = _$symbol\n";
891 #       }
892 #       elsif ($CCTYPE eq 'GCC') {
893 #           # Symbols have leading _ whole process is $%@"% slow
894 #           # so skip aliases for now
895 #           nprint "\t$symbol\n";
896 #       }
897 #       else {
898 #           # for binary coexistence, export both the symbol and
899 #           # alias with leading underscore
900 #           print "\t$symbol\n";
901 #           print "\t_$symbol = $symbol\n";
902 #       }
903     }
904     elsif ($PLATFORM eq 'os2') {
905         print qq(    "$symbol"\n);
906     }
907     elsif ($PLATFORM eq 'aix' || $PLATFORM eq 'MacOS') {
908         print "$symbol\n";
909     }
910 }
911
912 1;
913 __DATA__
914 # extra globals not included above.
915 perl_alloc
916 perl_alloc_using
917 perl_clone
918 perl_clone_using
919 perl_construct
920 perl_destruct
921 perl_free
922 perl_parse
923 perl_run
924 PerlIO_define_layer
925 PerlIOBuf_set_ptrcnt
926 PerlIOBuf_get_cnt
927 PerlIOBuf_get_ptr
928 PerlIOBuf_bufsiz
929 PerlIOBase_clearerr
930 PerlIOBase_setlinebuf
931 PerlIOBase_pushed
932 PerlIOBase_read
933 PerlIOBase_error
934 PerlIOBase_eof
935 PerlIOBuf_tell
936 PerlIOBuf_seek
937 PerlIOBuf_write
938 PerlIOBuf_unread
939 PerlIOBuf_read
940 PerlIOBuf_open
941 PerlIOBase_fileno
942 PerlIOBuf_pushed
943 PerlIOBuf_fill
944 PerlIOBuf_flush
945 PerlIOBase_close
946 PerlIO_define_layer
947 PerlIO_pending
948 PerlIO_unread
949 PerlIO_push
950 PerlIO_allocate
951 PerlIO_arg_fetch
952 PerlIO_apply_layers
953 perlsio_binmode
954 PerlIO_binmode
955 PerlIO_init
956 PerlIO_tmpfile
957 PerlIO_setpos
958 PerlIO_getpos
959 PerlIO_vsprintf
960 PerlIO_sprintf