package/harfbuzz: fix build on m68k
authorBernd Kuhls <bernd.kuhls@t-online.de>
Wed, 14 Aug 2019 21:20:45 +0000 (23:20 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Thu, 15 Aug 2019 13:00:50 +0000 (15:00 +0200)
Fixes:
http://autobuild.buildroot.net/results/b54/b54cf80fb8f09c6d4837e987657254d902a90ac1/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/harfbuzz/0001-pool-Fix-alignment-assertion.patch [new file with mode: 0644]

diff --git a/package/harfbuzz/0001-pool-Fix-alignment-assertion.patch b/package/harfbuzz/0001-pool-Fix-alignment-assertion.patch
new file mode 100644 (file)
index 0000000..4dd3e14
--- /dev/null
@@ -0,0 +1,30 @@
+From aade9b70aabd8a97dd8a28cda2cf4d0694dd7350 Mon Sep 17 00:00:00 2001
+From: Behdad Esfahbod <behdad@behdad.org>
+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 <bernd.kuhls@t-online.de>
+---
+ 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
+   {