summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-12 18:00:03 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-15 23:27:45 +0100
commit874d81a5ebb6395b0d65d0082471287e522d0c47 (patch)
treea8d1feae29ec10c9bb2f7ef6e3b555e1a5745e3f /meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb
parent4152ac00e765c18217340741292daf4a3fc0007a (diff)
downloadpoky-874d81a5ebb6395b0d65d0082471287e522d0c47.tar.gz
gstreamer/lame: Better gcc 4.9 fix
gstreamer/lame does runtime detection to enable/disable things like SSE code. Unfortunately it is broken and will try and use this even with i586 compiler flags. This change forces it back to the approach with gcc 4.8 by disabling the problematic headers. Its suboptimal but less so that the proposed previous forced enabling of SSE on x86 everywhere. (From OE-Core rev: e273301efa0037a13c3a60b4414140364d9c9873) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb')
-rw-r--r--meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb
index 83b856b110..4a8a9947a7 100644
--- a/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb
@@ -33,3 +33,5 @@ do_configure_prepend() {
33} 33}
34 34
35FILES_${PN} += "${datadir}/${BPN}" 35FILES_${PN} += "${datadir}/${BPN}"
36
37CACHED_CONFIGUREVARS_append_i586 = " ac_cv_header_emmintrin_h=no ac_cv_header_xmmintrin_h=no"