summaryrefslogtreecommitdiff
path: root/graphics/lcms
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2002-03-15 03:58:44 +0000
committermarkd <markd@pkgsrc.org>2002-03-15 03:58:44 +0000
commitfa99ac84562c05d19c7d6df7b0451c93f4fcae0f (patch)
tree9599da96eacdfd9597eff967296eeecf7ca36137 /graphics/lcms
parent3d2d9d6ff6b66e252f052558ce4f9b5293935a01 (diff)
downloadpkgsrc-fa99ac84562c05d19c7d6df7b0451c93f4fcae0f.tar.gz
u_int64_t -> uint64_t so that it also works on Solaris.
Also drop the patch that is putting a newline on the end of the file as Solaris's patch doesn't like it and the compiler doesn't care.
Diffstat (limited to 'graphics/lcms')
-rw-r--r--graphics/lcms/distinfo4
-rw-r--r--graphics/lcms/patches/patch-ab8
2 files changed, 4 insertions, 8 deletions
diff --git a/graphics/lcms/distinfo b/graphics/lcms/distinfo
index edc3f2da147..b9097131a25 100644
--- a/graphics/lcms/distinfo
+++ b/graphics/lcms/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2001/04/21 09:54:17 wiz Exp $
+$NetBSD: distinfo,v 1.3 2002/03/15 03:58:44 markd Exp $
SHA1 (lcms-1.06.tar.gz) = 3c9e99eb50598a0346c07fb1cacbf6cc4841001b
Size (lcms-1.06.tar.gz) = 644116 bytes
SHA1 (patch-aa) = 52102849563445b39eb8e504e9c6001af84bdbd5
-SHA1 (patch-ab) = a65a875450ef58d392442eeb2e6a22aeeae17146
+SHA1 (patch-ab) = bbc0b74a1813293361d0ad38fa9e1c270f94ca81
diff --git a/graphics/lcms/patches/patch-ab b/graphics/lcms/patches/patch-ab
index e1bb159a6a1..a39bf799387 100644
--- a/graphics/lcms/patches/patch-ab
+++ b/graphics/lcms/patches/patch-ab
@@ -1,4 +1,4 @@
-$NetBSD: patch-ab,v 1.1.1.1 2001/03/07 08:22:52 skrll Exp $
+$NetBSD: patch-ab,v 1.2 2002/03/15 03:58:45 markd Exp $
--- source/cmsmtrx.c Thu May 18 18:08:13 2000
+++ source/cmsmtrx.c Mon Oct 30 09:53:39 2000
@@ -9,9 +9,5 @@ $NetBSD: patch-ab,v 1.1.1.1 2001/03/07 08:22:52 skrll Exp $
@@ -250,3 +251,3 @@
#ifdef USE_INT64
- __int64 l = (__int64) a * b + 0x8000i64;
-+ u_int64_t l = (u_int64_t) a * b + (u_int64_t)0x8000;
++ uint64_t l = (uint64_t) a * b + (uint64_t)0x8000;
return (Fixed32) (l >> 16);
-@@ -711,2 +712,2 @@
- VEC3scaleAndCut(&r -> v[2], &v -> v[2], d);
--}
-+}