summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/liboil/liboil-0.3.17
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2011-03-31 20:49:08 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-04 13:27:58 +0100
commit097a8a50ff0628a2b991757c8862fbd260772ed8 (patch)
tree73f3b881e641e74006a0e4182317bf1256607eba /meta/recipes-support/liboil/liboil-0.3.17
parenta0d441ec7c43fe1b4490c1c9b03a0cf5811109fd (diff)
downloadopenembedded-core-097a8a50ff0628a2b991757c8862fbd260772ed8.tar.gz
liboil_0.3.17.bb: Enable x86_64 unaligned memory access
Patch imported from OE Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-support/liboil/liboil-0.3.17')
-rw-r--r--meta/recipes-support/liboil/liboil-0.3.17/fix-unaligned-whitelist.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-support/liboil/liboil-0.3.17/fix-unaligned-whitelist.patch b/meta/recipes-support/liboil/liboil-0.3.17/fix-unaligned-whitelist.patch
new file mode 100644
index 0000000000..79d53b6e5d
--- /dev/null
+++ b/meta/recipes-support/liboil/liboil-0.3.17/fix-unaligned-whitelist.patch
@@ -0,0 +1,17 @@
+Upstream: https://bugs.freedesktop.org/show_bug.cgi?id=31358
+
+configure: fix whitelisting of x86_64 unaligned memory access
+
+Fix typo in whitelist so cross-compile works for x86_64.
+
+--- liboil-0.3.17/m4/as-unaligned-access.m4.orig 2009-02-26 14:40:08.000000000 -0500
++++ liboil-0.3.17/m4/as-unaligned-access.m4 2010-11-03 12:19:55.000000000 -0400
+@@ -9,7 +9,7 @@
+ _AS_ECHO_N([(blacklisted) ])
+ as_cv_unaligned_access=no
+ ;;
+- i?86*|x86_64|amd64|powerpc*|m68k*|cris*)
++ i?86*|x86_64*|amd64*|powerpc*|m68k*|cris*)
+ _AS_ECHO_N([(whitelisted) ])
+ as_cv_unaligned_access=yes
+ ;;