diff options
author | Marcel Moolenaar <marcel@FreeBSD.org> | 2004-06-26 19:41:09 +0000 |
---|---|---|
committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2004-06-26 19:41:09 +0000 |
commit | 64cef1cadfb66214fc72e73f6ac4ec19476cfe1f (patch) | |
tree | 6124ddfc1a0c0370aaca704ecb8c51f0390b896a /graphics | |
parent | 92000dedbc04f895cda502281c46d8cd4bcc9328 (diff) |
Notes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/lcms/files/patch-src::cmscgats.c | 11 | ||||
-rw-r--r-- | graphics/lcms/files/patch-src::cmsio1.c | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/graphics/lcms/files/patch-src::cmscgats.c b/graphics/lcms/files/patch-src::cmscgats.c new file mode 100644 index 000000000000..a5b955f8f3e0 --- /dev/null +++ b/graphics/lcms/files/patch-src::cmscgats.c @@ -0,0 +1,11 @@ +--- src/cmscgats.c.orig Sat Jun 26 12:31:08 2004 ++++ src/cmscgats.c Sat Jun 26 12:33:13 2004 +@@ -89,7 +89,7 @@ + // ------------------------------------------------------------- Implementation + + +-#define ALIGNLONG(x) (((x)+3) & ~(3)) // Aligns to DWORD boundary ++#define ALIGNLONG(x) (((x)+sizeof(long)-1) & ~(sizeof(long)-1)) // Aligns to DWORD boundary + + // #define STRICT_CGATS 1 + diff --git a/graphics/lcms/files/patch-src::cmsio1.c b/graphics/lcms/files/patch-src::cmsio1.c new file mode 100644 index 000000000000..defb4f946366 --- /dev/null +++ b/graphics/lcms/files/patch-src::cmsio1.c @@ -0,0 +1,11 @@ +--- src/cmsio1.c.orig Sat Jun 26 12:31:18 2004 ++++ src/cmsio1.c Sat Jun 26 12:33:04 2004 +@@ -72,7 +72,7 @@ + // ------------------- implementation ----------------------------------- + + +-#define ALIGNLONG(x) (((x)+3) & ~(3)) // Aligns to DWORD boundary ++#define ALIGNLONG(x) (((x)+sizeof(long)-1) & ~(sizeof(long)-1)) // Aligns to DWORD boundary + + static size_t UsedSpace; // Using this makes writting of profiles non-reentrant! + static int GlobalLanguageCode; // Language & country descriptors, for ICC 4.0 support |