summaryrefslogtreecommitdiff
path: root/graphics/lcms/patches
diff options
context:
space:
mode:
authormarkd <markd>2002-03-15 03:58:44 +0000
committermarkd <markd>2002-03-15 03:58:44 +0000
commit35aa2d49793ff2790c2ba61f832c99b58ca461f9 (patch)
tree9599da96eacdfd9597eff967296eeecf7ca36137 /graphics/lcms/patches
parent6d452109b7be97adcf91c722aa278e8b88f88882 (diff)
downloadpkgsrc-35aa2d49793ff2790c2ba61f832c99b58ca461f9.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/patches')
-rw-r--r--graphics/lcms/patches/patch-ab8
1 files changed, 2 insertions, 6 deletions
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);
--}
-+}