summaryrefslogtreecommitdiff
path: root/textproc/p5-Text-BibTeX/patches
diff options
context:
space:
mode:
authormarkd <markd>2008-04-24 21:20:46 +0000
committermarkd <markd>2008-04-24 21:20:46 +0000
commit0102a207fabcea3d76bb74910c39db82a29d0337 (patch)
tree09eeed93b6ce82cbe1aa2dd13c62402ec09c1e44 /textproc/p5-Text-BibTeX/patches
parent777414ed345d645f2c11035af529a16fa06fed3e (diff)
downloadpkgsrc-0102a207fabcea3d76bb74910c39db82a29d0337.tar.gz
Update to version 0.37
Release 0.37 - 21 Setember, 2006 -------------------------------- * added support for 'conference' key (alias for inproceedings) Release 0.36 - 24 July, 2005 ---------------------------- * fixed url where btparse should be downloaded from. (stupid bug) Release 0.35 - 23 July, 2005 ---------------------------- * changed from 0.33 to 0.35 to maintain relation with btparse. * some tests now use Test::More (more tests will change soon) * the way the module initializes changed. Now the module can be included to check its version.
Diffstat (limited to 'textproc/p5-Text-BibTeX/patches')
-rw-r--r--textproc/p5-Text-BibTeX/patches/patch-aa31
-rw-r--r--textproc/p5-Text-BibTeX/patches/patch-ab22
2 files changed, 0 insertions, 53 deletions
diff --git a/textproc/p5-Text-BibTeX/patches/patch-aa b/textproc/p5-Text-BibTeX/patches/patch-aa
deleted file mode 100644
index d0cfaad36bf..00000000000
--- a/textproc/p5-Text-BibTeX/patches/patch-aa
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2001/02/27 23:39:55 jtb Exp $
-
---- BibTeX.xs~ Wed Oct 6 14:56:46 1999
-+++ BibTeX.xs Fri Sep 15 23:49:59 2000
-@@ -29,6 +29,8 @@
- #include "perl.h"
- #include "XSUB.h"
-
-+#define na PL_na
-+
- #define BT_DEBUG 0
-
- #include "btparse.h"
-@@ -49,7 +51,7 @@
- if (constant(name, &i))
- ST(0) = sv_2mortal(newSViv(i));
- else
-- ST(0) = &sv_undef;
-+ ST(0) = &PL_sv_undef;
-
-
- MODULE = Text::BibTeX PACKAGE = Text::BibTeX PREFIX = bt_
-@@ -96,7 +98,7 @@
- for (i = 0; i < names->num_items; i++)
- {
- if (names->items[i] == NULL)
-- sv_name = &sv_undef;
-+ sv_name = &PL_sv_undef;
- else
- sv_name = sv_2mortal (newSVpv (names->items[i], 0));
-
diff --git a/textproc/p5-Text-BibTeX/patches/patch-ab b/textproc/p5-Text-BibTeX/patches/patch-ab
deleted file mode 100644
index fa4511798e7..00000000000
--- a/textproc/p5-Text-BibTeX/patches/patch-ab
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2001/02/27 23:39:55 jtb Exp $
-
---- btxs_support.c~ Thu Mar 23 14:09:25 2000
-+++ btxs_support.c Fri Sep 15 23:41:44 2000
-@@ -160,7 +160,7 @@
-
- DBG_ACTION (2, printf (" field=%s, value=\"%s\"\n",
- field_name, text));
-- sv_field_value = text ? newSVpv (text, 0) : &sv_undef;
-+ sv_field_value = text ? newSVpv (text, 0) : &PL_sv_undef;
- }
-
- return sv_field_value;
-@@ -297,7 +297,7 @@
- else
- {
- value = bt_get_text (top);
-- sv_value = value ? newSVpv (value, 0) : &sv_undef;
-+ sv_value = value ? newSVpv (value, 0) : &PL_sv_undef;
- }
- hv_store (entry, "value", 5, sv_value, 0);
-