Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
windows:mingw:win32
mingw32-gst-0_10-plugins-base
0001-audioresample-Fix-build-on-x86-if-emmintri...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0001-audioresample-Fix-build-on-x86-if-emmintrin.h-is-ava.patch of Package mingw32-gst-0_10-plugins-base
From daa194b71ea6f9e8ee522ab02e8c56150b7e62b3 Mon Sep 17 00:00:00 2001 From: Antoine Jacoutot <ajacoutot@gnome.org> Date: Mon, 20 Jan 2014 15:44:09 +0100 Subject: [PATCH] audioresample: Fix build on x86 if emmintrin.h is available but can't be used On i386, EMMINTRIN is defined but not usable without SSE so check for __SSE__ and __SSE2__ as well. https://bugzilla.gnome.org/show_bug.cgi?id=670690 --- gst/audioresample/resample.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/audioresample/resample.c b/gst/audioresample/resample.c index 98d006c..481fa01 100644 --- a/gst/audioresample/resample.c +++ b/gst/audioresample/resample.c @@ -77,13 +77,13 @@ #define EXPORT G_GNUC_INTERNAL #ifdef _USE_SSE -#ifndef HAVE_XMMINTRIN_H +#if !defined(__SSE__) || !defined(HAVE_XMMINTRIN_H) #undef _USE_SSE #endif #endif #ifdef _USE_SSE2 -#ifndef HAVE_EMMINTRIN_H +#if !defined(__SSE2__) || !defined(HAVE_XMMINTRIN_H) #undef _USE_SSE2 #endif #endif -- 2.1.3
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor