summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorkristerw <kristerw>2003-10-26 23:23:47 +0000
committerkristerw <kristerw>2003-10-26 23:23:47 +0000
commit409939de34b1513909b4f754b0cce8cb8273960c (patch)
treec99aadfc50beb0c5108894227452d5098f5e7743 /misc
parent6afd59761968459df4e0b764bc2da2e3e191fdda (diff)
downloadpkgsrc-409939de34b1513909b4f754b0cce8cb8273960c.tar.gz
Make the pkg compile for arches where char is unsigned.
Diffstat (limited to 'misc')
-rw-r--r--misc/udfclient/distinfo4
-rw-r--r--misc/udfclient/patches/patch-aa14
-rw-r--r--misc/udfclient/patches/patch-ab14
3 files changed, 31 insertions, 1 deletions
diff --git a/misc/udfclient/distinfo b/misc/udfclient/distinfo
index 05f8aca2a40..f0c38635c9b 100644
--- a/misc/udfclient/distinfo
+++ b/misc/udfclient/distinfo
@@ -1,4 +1,6 @@
-$NetBSD: distinfo,v 1.2 2003/10/14 21:14:46 reinoud Exp $
+$NetBSD: distinfo,v 1.3 2003/10/26 23:23:47 kristerw Exp $
SHA1 (UDFclient.ro1-p1.tgz) = e00827defc37115e716ab8928422511fc430625c
Size (UDFclient.ro1-p1.tgz) = 74914 bytes
+SHA1 (patch-aa) = 390ac9ff7ddd1a391729bf10272a762d7a4ff84b
+SHA1 (patch-ab) = 78a6d8b9b02656fb94d6fec56ba8b009e1c30b80
diff --git a/misc/udfclient/patches/patch-aa b/misc/udfclient/patches/patch-aa
new file mode 100644
index 00000000000..c1234b0225d
--- /dev/null
+++ b/misc/udfclient/patches/patch-aa
@@ -0,0 +1,14 @@
+$NetBSD: patch-aa,v 1.1 2003/10/26 23:23:47 kristerw Exp $
+
+--- udfclient.c.orig Mon Oct 27 00:09:21 2003
++++ udfclient.c Mon Oct 27 00:09:45 2003
+@@ -609,7 +609,8 @@
+
+ int main(int argc, char *argv[]) {
+ struct udf_discinfo *disc, *next_disc;
+- char *progname, *range, flag;
++ int flag;
++ char *progname, *range;
+
+ progname = argv[0];
+ if (argc == 1) {
diff --git a/misc/udfclient/patches/patch-ab b/misc/udfclient/patches/patch-ab
new file mode 100644
index 00000000000..eacbbd3fbff
--- /dev/null
+++ b/misc/udfclient/patches/patch-ab
@@ -0,0 +1,14 @@
+$NetBSD: patch-ab,v 1.1 2003/10/26 23:23:47 kristerw Exp $
+
+--- udfdump.c.orig Mon Oct 27 00:06:46 2003
++++ udfdump.c Mon Oct 27 00:07:20 2003
+@@ -118,7 +118,8 @@
+
+ int main(int argc, char *argv[]) {
+ struct udf_discinfo *disc, *next_disc;
+- char flag, *progname, *range;
++ char *progname, *range;
++ int flag;
+ int min_session_number, max_session_number;
+
+ progname = argv[0];