diff options
author | kristerw <kristerw> | 2003-10-26 23:23:47 +0000 |
---|---|---|
committer | kristerw <kristerw> | 2003-10-26 23:23:47 +0000 |
commit | 89af5d670e3ce2459a3f96f1e6602f8ab228c673 (patch) | |
tree | c99aadfc50beb0c5108894227452d5098f5e7743 /misc | |
parent | 83f1c4cff7d450b325f669e3fb6348d49db0e34a (diff) | |
download | pkgsrc-89af5d670e3ce2459a3f96f1e6602f8ab228c673.tar.gz |
Make the pkg compile for arches where char is unsigned.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/udfclient/distinfo | 4 | ||||
-rw-r--r-- | misc/udfclient/patches/patch-aa | 14 | ||||
-rw-r--r-- | misc/udfclient/patches/patch-ab | 14 |
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]; |