blob: 2ecdc81e4609ad1c146b1ccc95c24f0716ac1fd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
This file is part of MXE. See LICENSE.md for licensing information.
From 50e29104baadb7bd536cd75dce964743ff04518c Mon Sep 17 00:00:00 2001
From: Timothy Gu <timothygu99@gmail.com>
Date: Sat, 10 May 2014 17:48:40 -0700
Subject: [PATCH] Add -msse2 for audioresample
Needed with gcc 4.9. This will break non-x86 compilation -- I know.
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
---
gst/audioresample/Makefile.in | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gst/audioresample/Makefile.in b/gst/audioresample/Makefile.in
index 607115d..ae0056d 100644
--- a/gst/audioresample/Makefile.in
+++ b/gst/audioresample/Makefile.in
@@ -538,7 +538,8 @@ libgstaudioresample_la_CFLAGS = \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_BASE_CFLAGS) \
$(GST_CFLAGS) \
- $(ORC_CFLAGS)
+ $(ORC_CFLAGS) \
+ -msse2
libgstaudioresample_la_LIBADD = \
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_API_VERSION@.la \
--
1.9.1
|