summaryrefslogtreecommitdiff
path: root/textproc/libxml2
diff options
context:
space:
mode:
authorjoerg <joerg>2012-01-23 08:10:56 +0000
committerjoerg <joerg>2012-01-23 08:10:56 +0000
commit82e231af741e45efb88f44920ab493605e9f44a2 (patch)
tree924150b7bb07ec2b706acd29a43a230bf9c59842 /textproc/libxml2
parent82ff49ed9df39b6ede0eef18e4b9c5df85f17ab7 (diff)
downloadpkgsrc-82e231af741e45efb88f44920ab493605e9f44a2.tar.gz
Don't use non-ASCII character literals.
Diffstat (limited to 'textproc/libxml2')
-rw-r--r--textproc/libxml2/distinfo3
-rw-r--r--textproc/libxml2/patches/patch-testapi.c13
2 files changed, 15 insertions, 1 deletions
diff --git a/textproc/libxml2/distinfo b/textproc/libxml2/distinfo
index 9e1227d902f..4c06dea2c51 100644
--- a/textproc/libxml2/distinfo
+++ b/textproc/libxml2/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.86 2012/01/17 14:43:43 drochner Exp $
+$NetBSD: distinfo,v 1.87 2012/01/23 08:10:56 joerg Exp $
SHA1 (libxml2-2.7.8.tar.gz) = 859dd535edbb851cc15b64740ee06551a7a17d40
RMD160 (libxml2-2.7.8.tar.gz) = 30709622cfe3e2175e73d6701b7e19a25ab5ac47
@@ -13,4 +13,5 @@ SHA1 (patch-aj) = 24eb4a08ea4c40be6d75a72cd0bb5280514f73d4
SHA1 (patch-ak) = 5e0e9807d7ae0bc93a5583a61bb88a49ec1751e8
SHA1 (patch-al) = 45f984fef5cf5d04c46e940867707897396a9c9f
SHA1 (patch-include_libxml_xpath.h) = 3fc74551a7843668cf9ffee19b1f20ccb674e153
+SHA1 (patch-testapi.c) = 63a0a34c8ca98d9214c4d3391e97d9a9ca4569f8
SHA1 (patch-xpointer.c) = fa720fd515bab3f99bb11bf56320b3ad8e5fb211
diff --git a/textproc/libxml2/patches/patch-testapi.c b/textproc/libxml2/patches/patch-testapi.c
new file mode 100644
index 00000000000..15e7c1ffa74
--- /dev/null
+++ b/textproc/libxml2/patches/patch-testapi.c
@@ -0,0 +1,13 @@
+$NetBSD: patch-testapi.c,v 1.1 2012/01/23 08:10:56 joerg Exp $
+
+--- testapi.c.orig 2012-01-20 23:15:01.000000000 +0000
++++ testapi.c
+@@ -291,7 +291,7 @@ static void des_long(int no ATTRIBUTE_UN
+ static xmlChar gen_xmlChar(int no, int nr ATTRIBUTE_UNUSED) {
+ if (no == 0) return('a');
+ if (no == 1) return(' ');
+- if (no == 2) return((xmlChar) 'ø');
++ if (no == 2) return((xmlChar)0xf8);
+ return(0);
+ }
+