summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorUwe Klotz <uwe_klotz@web.de>2017-11-26 23:49:53 +0100
committerUwe Klotz <uklotz@mixxx.org>2018-03-11 20:16:59 +0100
commita26b8c7aaf7de4ab30da5ef3e26a132e295b9a33 (patch)
tree41d799f712fc5db41c51f2178ed5f912c5b1c556 /lib
parent73001bf863b411df3645029d0f09c9980db598fc (diff)
Fix Windows build with a simple patch
__SSE2__ is set instead of __SSE2_MATH__
Diffstat (limited to 'lib')
-rw-r--r--lib/libebur128/ebur128/ebur128.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libebur128/ebur128/ebur128.c b/lib/libebur128/ebur128/ebur128.c
index 2e987102cb..9c2b439d24 100644
--- a/lib/libebur128/ebur128/ebur128.c
+++ b/lib/libebur128/ebur128/ebur128.c
@@ -528,7 +528,7 @@ static void ebur128_check_true_peak(ebur128_state* st, size_t frames) {
}
}
-#ifdef __SSE2_MATH__
+#if defined(__SSE2_MATH__) || defined(__SSE2__)
#include <xmmintrin.h>
#define TURN_ON_FTZ \
unsigned int mxcsr = _mm_getcsr(); \