Add a patch from debian to make this build with perl 5.12.2.
Not all features work but it is enough for p5-Data-Visitor to work (its only consumer).
This commit is contained in:
parent
95ec969f17
commit
5e17a4b491
@ -1,11 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.3 2010/07/13 19:46:11 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.4 2010/09/24 15:14:49 millert Exp $
|
||||
|
||||
COMMENT = comprehensive set of aliasing operations
|
||||
SHARED_ONLY = Yes
|
||||
|
||||
MODULES = cpan
|
||||
DISTNAME = Data-Alias-1.07
|
||||
REVISION = 0
|
||||
REVISION = 1
|
||||
CATEGORIES = devel
|
||||
|
||||
MAINTAINER = Simon Bertrang <simon@openbsd.org>
|
||||
|
70
devel/p5-Data-Alias/patches/patch-Alias_xs
Normal file
70
devel/p5-Data-Alias/patches/patch-Alias_xs
Normal file
@ -0,0 +1,70 @@
|
||||
$OpenBSD: patch-Alias_xs,v 1.1 2010/09/24 15:14:49 millert Exp $
|
||||
--- Alias.xs.orig Mon Sep 10 16:24:01 2007
|
||||
+++ Alias.xs Fri Sep 17 10:37:14 2010
|
||||
@@ -75,6 +75,10 @@
|
||||
#define SvPVX_const SvPVX
|
||||
#endif
|
||||
|
||||
+#if (PERL_COMBI_VERSION >= 5011000)
|
||||
+#define SVt_RV SVt_IV
|
||||
+#endif
|
||||
+
|
||||
#ifndef SvREFCNT_inc_NN
|
||||
#define SvREFCNT_inc_NN SvREFCNT_inc
|
||||
#endif
|
||||
@@ -366,7 +370,7 @@ STATIC void da_localize_gvar(pTHX_ GP *gp, SV **sptr)
|
||||
SSPUSHPTR(gp);
|
||||
SSPUSHINT(SAVEt_DESTRUCTOR_X);
|
||||
++gp->gp_refcnt;
|
||||
- *sptr = Nullsv;
|
||||
+ *sptr = NULL;
|
||||
}
|
||||
|
||||
STATIC SV *da_refgen(pTHX_ SV *sv) {
|
||||
@@ -1248,7 +1252,7 @@ OP *DataAlias_pp_return(pTHX) {
|
||||
cxstack_ix--;
|
||||
POPSUB(cx, sv);
|
||||
} else {
|
||||
- sv = Nullsv;
|
||||
+ sv = NULL;
|
||||
}
|
||||
PL_curpm = newpm;
|
||||
LEAVESUB(sv);
|
||||
@@ -1433,7 +1437,7 @@ STATIC int da_transform(pTHX_ OP *op, int sib) {
|
||||
int hits = 0;
|
||||
|
||||
while (op) {
|
||||
- OP *kid = Nullop, *tmp;
|
||||
+ OP *kid = NULL, *tmp;
|
||||
int ksib = TRUE;
|
||||
OPCODE optype;
|
||||
|
||||
@@ -1447,7 +1451,9 @@ STATIC int da_transform(pTHX_ OP *op, int sib) {
|
||||
default:
|
||||
--hits;
|
||||
switch (optype) {
|
||||
+#if PERL_COMBI_VERSION < 5006000
|
||||
case OP_SETSTATE:
|
||||
+#endif
|
||||
case OP_NEXTSTATE:
|
||||
case OP_DBSTATE:
|
||||
PL_curcop = (COP *) op;
|
||||
@@ -1586,7 +1592,9 @@ STATIC int da_peep2(pTHX_ OP *o) {
|
||||
if (da_peep2(aTHX_ k))
|
||||
return 1;
|
||||
} else switch (o->op_type ? o->op_type : o->op_targ) {
|
||||
+#if PERL_COMBI_VERSION < 5006000
|
||||
case OP_SETSTATE:
|
||||
+#endif
|
||||
case OP_NEXTSTATE:
|
||||
case OP_DBSTATE:
|
||||
PL_curcop = (COP *) o;
|
||||
@@ -1764,7 +1772,7 @@ STATIC OP *da_ck_entersub(pTHX_ OP *o) {
|
||||
kUNOP->op_first = last;
|
||||
while (kid->op_sibling != last)
|
||||
kid = kid->op_sibling;
|
||||
- kid->op_sibling = Nullop;
|
||||
+ kid->op_sibling = NULL;
|
||||
cLISTOPx(cUNOPo->op_first)->op_last = kid;
|
||||
if (kid->op_type == OP_NULL && inside)
|
||||
kid->op_flags &= ~OPf_SPECIAL;
|
Loading…
x
Reference in New Issue
Block a user