diff options
Diffstat (limited to 'graphics/lcms/files/patch-ab')
-rw-r--r-- | graphics/lcms/files/patch-ab | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/graphics/lcms/files/patch-ab b/graphics/lcms/files/patch-ab new file mode 100644 index 000000000000..4db3b692b82e --- /dev/null +++ b/graphics/lcms/files/patch-ab @@ -0,0 +1,15 @@ +--- source/cmsmtrx.c Thu May 18 18:08:13 2000 ++++ source/cmsmtrx.c Mon Oct 30 09:53:39 2000 +@@ -33,2 +33,3 @@ + #include "lcms.h" ++#include <sys/types.h> + +@@ -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; + return (Fixed32) (l >> 16); +@@ -711,2 +712,2 @@ + VEC3scaleAndCut(&r -> v[2], &v -> v[2], d); +-} ++} |