Change 29425 by [EMAIL PROTECTED] on 2006/11/30 10:13:40
Don't try to export fd_refcnt symbols when building without USE_PERLIO
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.pl 2006-11-30 02:13:40.000000000 -0800
@@ -1113,8 +1113,15 @@
# Skip the PerlIO layer symbols - although
# nothing should have exported them anyway.
skip_symbols [EMAIL PROTECTED];
- 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 NOT add abstraction symbols from $perlio_sym
# abstraction is done as #define to stdio
End of Patch.