From: Sebastian Dröge Date: Mon, 20 Jan 2014 15:11:04 +0000 (+0100) Subject: audioresample: It's HAVE_EMMINTRIN_H, not HAVE_XMMINTRIN_H for SSE2 X-Git-Tag: 1.19.3~511^2~4751 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e3d101aa854cfee633a9689efeb75e5001baa5e;p=platform%2Fupstream%2Fgstreamer.git audioresample: It's HAVE_EMMINTRIN_H, not HAVE_XMMINTRIN_H for SSE2 --- diff --git a/gst/audioresample/resample.c b/gst/audioresample/resample.c index 481fa01..4410bdd 100644 --- a/gst/audioresample/resample.c +++ b/gst/audioresample/resample.c @@ -83,7 +83,7 @@ #endif #ifdef _USE_SSE2 -#if !defined(__SSE2__) || !defined(HAVE_XMMINTRIN_H) +#if !defined(__SSE2__) || !defined(HAVE_EMMINTRIN_H) #undef _USE_SSE2 #endif #endif