diff options
author | stas <stas@FreeBSD.org> | 2006-12-30 04:18:35 +0800 |
---|---|---|
committer | stas <stas@FreeBSD.org> | 2006-12-30 04:18:35 +0800 |
commit | 67de2e3b6517dfea10c4439a5df7fb9dc9eeffd3 (patch) | |
tree | b9873b2c455d058c43ab01e5c396320d0241f6db /graphics/lcms/files | |
parent | acb2ba2437d400ac403c90c3e773729affecd858 (diff) | |
download | freebsd-ports-gnome-67de2e3b6517dfea10c4439a5df7fb9dc9eeffd3.tar.gz freebsd-ports-gnome-67de2e3b6517dfea10c4439a5df7fb9dc9eeffd3.tar.zst freebsd-ports-gnome-67de2e3b6517dfea10c4439a5df7fb9dc9eeffd3.zip |
- Update to 1.16
- Add missed manpage entries [1]
PR: ports/107173
Submitted by: Radim Kolar SF.NET <hsn@sendmail.cz> [1]
Diffstat (limited to 'graphics/lcms/files')
-rw-r--r-- | graphics/lcms/files/patch-32bit | 15 | ||||
-rw-r--r-- | graphics/lcms/files/patch-config | 26 |
2 files changed, 0 insertions, 41 deletions
diff --git a/graphics/lcms/files/patch-32bit b/graphics/lcms/files/patch-32bit deleted file mode 100644 index d46710470240..000000000000 --- a/graphics/lcms/files/patch-32bit +++ /dev/null @@ -1,15 +0,0 @@ -This patch fixes assumptions made in different parts of the code -regarding the sizeof long and int. The original code appears to use them -interchangeably, even though it expects them to be 32 bit wide. ---- src/cmsmtrx.c Tue Feb 13 12:08:06 2001 -+++ src/cmsmtrx.c Wed Sep 5 10:28:02 2001 -@@ -705,6 +705,6 @@ - void VEC3scaleAndCut(LPWVEC3 r, LPVEC3 v, double d) - { -- r -> n[VX] = (int) floor(v -> n[VX] * d + .5); -- r -> n[VY] = (int) floor(v -> n[VY] * d + .5); -- r -> n[VZ] = (int) floor(v -> n[VZ] * d + .5); -+ r -> n[VX] = (icInt32Number) floor(v -> n[VX] * d + .5); -+ r -> n[VY] = (icInt32Number) floor(v -> n[VY] * d + .5); -+ r -> n[VZ] = (icInt32Number) floor(v -> n[VZ] * d + .5); - } diff --git a/graphics/lcms/files/patch-config b/graphics/lcms/files/patch-config deleted file mode 100644 index e68979f93620..000000000000 --- a/graphics/lcms/files/patch-config +++ /dev/null @@ -1,26 +0,0 @@ ---- include/lcms.h.orig Sat Nov 26 17:23:47 2005 -+++ include/lcms.h Mon Aug 7 21:28:13 2006 -@@ -47,7 +47,13 @@ - - // Uncomment this one if you are using big endian machines (only meaningful - // when NON_WINDOWS is used) --// #define USE_BIG_ENDIAN 1 -+ -+#include <sys/endian.h> -+#if BYTE_ORDER == BIG_ENDIAN -+# define USE_BIG_ENDIAN 1 -+#elif BYTE_ORDER != LITTLE_ENDIAN -+# error "Unexpected BYTE_ORDER on this architecture" -+#endif - - // Uncomment this one if your compiler/machine does support the - // "long long" type This will speedup fixed point math. (USE_C only) -@@ -134,7 +140,7 @@ - #if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) - # include <sys/types.h> - # define USE_INT64 1 --# define LCMSSLONGLONG int_64_t -+# define LCMSSLONGLONG int64_t - # define LCMSULONGLONG u_int64_t - #endif - |