From e273301efa0037a13c3a60b4414140364d9c9873 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 12 May 2014 18:00:03 +0100 Subject: 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. Signed-off-by: Richard Purdie --- meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc') diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc index eb132775c6..972ff18160 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc @@ -37,3 +37,4 @@ EXTRA_OECONF += " \ FILES_${PN} += "${datadir}/gst-plugins-base" +CACHED_CONFIGUREVARS_append_i586 = " ac_cv_header_emmintrin_h=no ac_cv_header_xmmintrin_h=no" -- cgit 1.2.3-korg