From: Bernd Kuhls Date: Wed, 14 Aug 2019 21:20:45 +0000 (+0200) Subject: package/harfbuzz: fix build on m68k X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a6f0409791541168eae34475d5257e94a9cb211;p=buildroot.git package/harfbuzz: fix build on m68k Fixes: http://autobuild.buildroot.net/results/b54/b54cf80fb8f09c6d4837e987657254d902a90ac1/ Signed-off-by: Bernd Kuhls Signed-off-by: Thomas Petazzoni --- diff --git a/package/harfbuzz/0001-pool-Fix-alignment-assertion.patch b/package/harfbuzz/0001-pool-Fix-alignment-assertion.patch new file mode 100644 index 0000000000..4dd3e14a46 --- /dev/null +++ b/package/harfbuzz/0001-pool-Fix-alignment-assertion.patch @@ -0,0 +1,30 @@ +From aade9b70aabd8a97dd8a28cda2cf4d0694dd7350 Mon Sep 17 00:00:00 2001 +From: Behdad Esfahbod +Date: Tue, 13 Aug 2019 16:09:20 -0700 +Subject: [PATCH] [pool] Fix alignment assertion + +I *think* it should fix https://github.com/harfbuzz/harfbuzz/issues/1901 + +Ie. if on a system, alignof(void*) < sizeof(void*)... + +Downloaded from upstream commit +https://github.com/harfbuzz/harfbuzz/commit/aade9b70aabd8a97dd8a28cda2cf4d0694dd7350 + +Signed-off-by: Bernd Kuhls +--- + src/hb-pool.hh | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/hb-pool.hh b/src/hb-pool.hh +index ff0ee194c..2dd84968e 100644 +--- a/src/hb-pool.hh ++++ b/src/hb-pool.hh +@@ -77,7 +77,7 @@ struct hb_pool_t + + static_assert (ChunkLen > 1, ""); + static_assert (sizeof (T) >= sizeof (void *), ""); +- static_assert (alignof (T) % sizeof (void *) == 0, ""); ++ static_assert (alignof (T) % alignof (void *) == 0, ""); + + struct chunk_t + {