From cebc0cbe363f68c168ebfb2ae5f6ed469c5dcd93 Mon Sep 17 00:00:00 2001 From: markd Date: Fri, 15 Mar 2002 11:12:57 +0000 Subject: Finish off the last patch by converting back the other two uint64_t's to u_int64_t's in the NetBSD case. --- graphics/lcms/patches/patch-ab | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'graphics/lcms/patches') diff --git a/graphics/lcms/patches/patch-ab b/graphics/lcms/patches/patch-ab index 62c612156f6..339317a9032 100644 --- a/graphics/lcms/patches/patch-ab +++ b/graphics/lcms/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.3 2002/03/15 09:20:06 agc Exp $ +$NetBSD: patch-ab,v 1.4 2002/03/15 11:12:57 markd Exp $ --- source/cmsmtrx.c Thu May 18 18:08:13 2000 +++ source/cmsmtrx.c Mon Oct 30 09:53:39 2000 @@ -17,7 +17,7 @@ $NetBSD: patch-ab,v 1.3 2002/03/15 09:20:06 agc Exp $ - __int64 l = (__int64) a * b + 0x8000i64; +#include +#if (defined(BSD) && BSD >= 199506) -+ u_int64_t l = (uint64_t) a * b + (uint64_t)0x8000; ++ u_int64_t l = (u_int64_t) a * b + (u_int64_t)0x8000; +#else + uint64_t l = (uint64_t) a * b + (uint64_t)0x8000; +#endif -- cgit v1.2.3