diff options
author | markd <markd@pkgsrc.org> | 2002-03-15 03:58:44 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2002-03-15 03:58:44 +0000 |
commit | fa99ac84562c05d19c7d6df7b0451c93f4fcae0f (patch) | |
tree | 9599da96eacdfd9597eff967296eeecf7ca36137 /graphics/lcms/patches/patch-ab | |
parent | 3d2d9d6ff6b66e252f052558ce4f9b5293935a01 (diff) | |
download | pkgsrc-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/patches/patch-ab')
-rw-r--r-- | graphics/lcms/patches/patch-ab | 8 |
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); --} -+} |