aboutsummaryrefslogtreecommitdiffstats
path: root/main/ghostscript/fix-alignment.patch
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2017-04-13 13:46:31 +0300
committerTimo Teräs <timo.teras@iki.fi>2017-04-13 13:46:31 +0300
commit6784f21b55402e44a5da70ef16912bb19a28bd62 (patch)
tree5ddf4454354c0e66a5c9000367016faa7ff63e23 /main/ghostscript/fix-alignment.patch
parent4ed8454ab96fd6b16fb6d65ccfde564e0dcb4eca (diff)
downloadaports-6784f21b55402e44a5da70ef16912bb19a28bd62.tar.bz2
aports-6784f21b55402e44a5da70ef16912bb19a28bd62.tar.xz
main/ghostscript: fix sse variable alignment
fixes #7138
Diffstat (limited to 'main/ghostscript/fix-alignment.patch')
-rw-r--r--main/ghostscript/fix-alignment.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/main/ghostscript/fix-alignment.patch b/main/ghostscript/fix-alignment.patch
new file mode 100644
index 0000000000..2608a0a083
--- /dev/null
+++ b/main/ghostscript/fix-alignment.patch
@@ -0,0 +1,11 @@
+--- ghostscript-9.21/base/gxht_thresh.c.orig 2017-04-13 13:39:39.850641972 +0300
++++ ghostscript-9.21/base/gxht_thresh.c 2017-04-13 13:39:50.380785619 +0300
+@@ -38,7 +38,7 @@
+ /* #define PACIFY_VALGRIND */
+
+ #ifndef __WIN32__
+-#define __align16 __attribute__((align(16)))
++#define __align16 __attribute__((aligned(16)))
+ #else
+ #define __align16 __declspec(align(16))
+ #endif