diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-01-18 17:04:12 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-01-18 17:04:12 +0100 |
commit | 0099ed2bf03e9686cae43e1ec426804269c02aba (patch) | |
tree | a41a23feb6e80b3d540fa632e0bbc3bddd94b26c | |
parent | 1653a281b99d12a4bf69cebb73394edab9485b01 (diff) |
gstreamer: fix unaligned detection for x86-64
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | CHANGES | 6 | ||||
-rw-r--r-- | package/multimedia/gstreamer/gstreamer-0.10.25-fix-unaligned-detectiob-for-x86-64.patch | 36 |
2 files changed, 39 insertions, 3 deletions
@@ -5,9 +5,9 @@ New packages: libcdaudio, libdvdnav, libdvdread, hostapd, tcpreplay Updated/fixed packages: autoconf, bind, binutils, bootutils, busybox, - directfb, e2fsprogs, gst-plugins-bad, hal, iw, jpeg, libfuse, libpcap, - libungif, lighttpd, mesa, mpg123, mtd-utils, neon, pcre, qt, rpm, - sshfs, tremor, u-boot, usbutils, xfsprogs + directfb, e2fsprogs, gstreamer, gst-plugins-bad, hal, iw, jpeg, + libfuse, libpcap, libungif, lighttpd, mesa, mpg123, mtd-utils, neon, + pcre, qt, rpm, sshfs, tremor, u-boot, usbutils, xfsprogs Issues resolved (http://bugs.uclibc.org): diff --git a/package/multimedia/gstreamer/gstreamer-0.10.25-fix-unaligned-detectiob-for-x86-64.patch b/package/multimedia/gstreamer/gstreamer-0.10.25-fix-unaligned-detectiob-for-x86-64.patch new file mode 100644 index 000000000..1635fe72d --- /dev/null +++ b/package/multimedia/gstreamer/gstreamer-0.10.25-fix-unaligned-detectiob-for-x86-64.patch @@ -0,0 +1,36 @@ +[PATCH] gst-arch.m4: fix unaligned detection for x86-64 when cross compiling + +Submitted upstream at https://bugzilla.gnome.org/show_bug.cgi?id=607317 + +Commit 4221e9dc (amd64/x86_64 allows unaligned memory access too) added +x86-64 to the unaligned access whitelist, but missed the trailing +wildcards, so the test never succeeds (host is something like +x86_64-unknown-linux-gnu). + +When building natively, this isn't a big deal as the AC_TRY_RUN test +correctly detects it, but that doesn't work when cross compiling so +the build dies with: + +configure: error: cannot run test program while cross compiling +See `config.log' for more details. + +Fix it by adding the trailing wildcards. + +Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> +--- + configure | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +Index: gstreamer-0.10.25/configure +=================================================================== +--- gstreamer-0.10.25.orig/configure ++++ gstreamer-0.10.25/configure +@@ -15655,7 +15655,7 @@ $as_echo_n "checking if unaligned memory + $as_echo_n "(blacklisted) " >&6 + 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) " >&6 + as_cv_unaligned_access=yes + ;; |