Change 20112 by [EMAIL PROTECTED] on 2003/07/10 14:17:59
Argh. At least AIX builds choke because of this.
Affected files ...
... //depot/perl/embed.fnc#95 edit
... //depot/perl/embedvar.h#174 edit
... //depot/perl/intrpvar.h#129 edit
... //depot/perl/perlapi.h#96 edit
Differences ...
==== //depot/perl/embedvar.h#174 (text+w) ====
Index: perl/embedvar.h
--- perl/embedvar.h#173~19979~ Fri Jul 4 01:33:32 2003
+++ perl/embedvar.h Thu Jul 10 07:17:59 2003
@@ -215,6 +215,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_custom_op_descs (vTHX->Icustom_op_descs)
@@ -518,6 +519,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_Icustom_op_descs PL_custom_op_descs
==== //depot/perl/intrpvar.h#129 (text) ====
Index: perl/intrpvar.h
--- perl/intrpvar.h#128~19854~ Wed Jun 25 22:32:02 2003
+++ perl/intrpvar.h Thu Jul 10 07:17:59 2003
@@ -525,6 +525,8 @@
PERLVARI(Ihash_seed, UV, 0) /* Hash initializer */
+PERLVAR(Icsighandlerp, Sighandler_t)
+
PERLVAR(IDBassertion, SV *)
PERLVARI(Icv_has_eval, I32, 0) /* PL_compcv includes an entereval or similar */
==== //depot/perl/perlapi.h#96 (text+w) ====
Index: perl/perlapi.h
--- perl/perlapi.h#95~19979~ Fri Jul 4 01:33:32 2003
+++ perl/perlapi.h Thu Jul 10 07:17:59 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.