summaryrefslogtreecommitdiff
path: root/graphics/lcms/patches
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2002-03-15 11:12:57 +0000
committermarkd <markd@pkgsrc.org>2002-03-15 11:12:57 +0000
commitcebc0cbe363f68c168ebfb2ae5f6ed469c5dcd93 (patch)
treec192dd79107f9537aff09a727e5e443f26e95ac1 /graphics/lcms/patches
parent85e59f51230c5759bd0d27d4adea345603f044a6 (diff)
downloadpkgsrc-cebc0cbe363f68c168ebfb2ae5f6ed469c5dcd93.tar.gz
Finish off the last patch by converting back the other two uint64_t's
to u_int64_t's in the NetBSD case.
Diffstat (limited to 'graphics/lcms/patches')
-rw-r--r--graphics/lcms/patches/patch-ab4
1 files changed, 2 insertions, 2 deletions
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 <sys/param.h>
+#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