Change 20113 by [EMAIL PROTECTED] on 2003/07/10 14:19:22
Missing symbol export.
Affected files ...
... //depot/maint-5.8/perl/embed.fnc#37 integrate
... //depot/maint-5.8/perl/embedvar.h#23 integrate
... //depot/maint-5.8/perl/intrpvar.h#19 integrate
... //depot/maint-5.8/perl/perlapi.h#21 integrate
Differences ...
==== //depot/maint-5.8/perl/embedvar.h#23 (text+w) ====
Index: perl/embedvar.h
--- perl/embedvar.h#22~19991~ Fri Jul 4 06:54:33 2003
+++ perl/embedvar.h Thu Jul 10 07:19:22 2003
@@ -549,6 +549,7 @@
#define PL_cryptseen (vTHX->Icryptseen)
#define PL_cshlen (vTHX->Icshlen)
#define PL_cshname (vTHX->Icshname)
+#define PL_csighandlerp (vTHX->Icsighandlerp)
#define PL_curcopdb (vTHX->Icurcopdb)
#define PL_curstname (vTHX->Icurstname)
#define PL_curthr (vTHX->Icurthr)
@@ -869,6 +870,7 @@
#define PL_Icryptseen PL_cryptseen
#define PL_Icshlen PL_cshlen
#define PL_Icshname PL_cshname
+#define PL_Icsighandlerp PL_csighandlerp
#define PL_Icurcopdb PL_curcopdb
#define PL_Icurstname PL_curstname
#define PL_Icurthr PL_curthr
==== //depot/maint-5.8/perl/intrpvar.h#19 (text) ====
Index: perl/intrpvar.h
--- perl/intrpvar.h#18~19855~ Wed Jun 25 22:36:41 2003
+++ perl/intrpvar.h Thu Jul 10 07:19:22 2003
@@ -558,6 +558,8 @@
PERLVARI(Ihash_seed, UV, 0) /* Hash initializer */
+PERLVAR(Icsighandlerp, Sighandler_t)
+
/* New variables must be added to the very end, before this comment,
* for binary compatibility (the offsets of the old members must not change).
* (Don't forget to add your variable also to perl_clone()!)
==== //depot/maint-5.8/perl/perlapi.h#21 (text+w) ====
Index: perl/perlapi.h
--- perl/perlapi.h#20~19991~ Fri Jul 4 06:54:33 2003
+++ perl/perlapi.h Thu Jul 10 07:19:22 2003
@@ -188,6 +188,8 @@
#define PL_cshlen (*Perl_Icshlen_ptr(aTHX))
#undef PL_cshname
#define PL_cshname (*Perl_Icshname_ptr(aTHX))
+#undef PL_csighandlerp
+#define PL_csighandlerp (*Perl_Icsighandlerp_ptr(aTHX))
#undef PL_curcopdb
#define PL_curcopdb (*Perl_Icurcopdb_ptr(aTHX))
#undef PL_curstname
End of Patch.