Change 29425 by steveh@mugwump on 2006/11/30 10:13:40
Don't try to export fd_refcnt symbols when building without USE_PERLI
to keep the Win32 linker happy
Affected files
//depot/perl/makedef.pl#207 edit
Differences
//depot/perl/makedef.pl#207 (text)
Index: perl/makedef.pl
perl/makedef.pl#206~29076~2006-10-21 15:40:28.000000000 -0700
perl/makedef.pl2006-11-30 02:13:40.000000000 -0800
@@ -1113,8 +1113,15 @@
# Skip the PerlI layer symbols - although
# nothing should have exported them anyway.
skip_symbols \@layer_syms;
-skip_symbols [qw(perlsio_binmode)];
- skip_symbols [qw(PL_def_layerlist PL_known_layers PL_perlio)];
+skip_symbols [qw(
+perlsio_binmode
+PL_def_layerlist
+PL_known_layers
+PL_perlio
+PL_perlio_debug_fd
+PL_perlio_fd_refcnt
+PL_perlio_fd_refcnt_size
+)];
# Also do NT add abstraction symbols from $perlio_sym
# abstraction is done as #define to stdio
End of Patch.