summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--strata/audio-bluetooth/webrtc-audio-processing.morph6
-rw-r--r--strata/multimedia-gstreamer-0.10/gstreamer-plugins-base-0.10.morph6
2 files changed, 8 insertions, 4 deletions
diff --git a/strata/audio-bluetooth/webrtc-audio-processing.morph b/strata/audio-bluetooth/webrtc-audio-processing.morph
index 4c10a489..10a99de4 100644
--- a/strata/audio-bluetooth/webrtc-audio-processing.morph
+++ b/strata/audio-bluetooth/webrtc-audio-processing.morph
@@ -2,6 +2,8 @@ name: webrtc-audio-processing
kind: chunk
build-system: autotools
pre-configure-commands:
+- NOCONFIGURE=1 ./autogen.sh
- |
- NOCONFIGURE=1 ./autogen.sh
- sed -i -e "s/-O2/& -msse2/" configure
+ case "$MORPH_ARCH" in
+ x86*) sed -i -e "s/-O2/& -msse2/" configure ;;
+ esac
diff --git a/strata/multimedia-gstreamer-0.10/gstreamer-plugins-base-0.10.morph b/strata/multimedia-gstreamer-0.10/gstreamer-plugins-base-0.10.morph
index f68642c6..494e5381 100644
--- a/strata/multimedia-gstreamer-0.10/gstreamer-plugins-base-0.10.morph
+++ b/strata/multimedia-gstreamer-0.10/gstreamer-plugins-base-0.10.morph
@@ -2,7 +2,9 @@ name: gstreamer-plugins-base-0.10
kind: chunk
build-system: autotools
configure-commands:
+- NOCONFIGURE=1 ./autogen.sh
- |
- NOCONFIGURE=1 ./autogen.sh
- sed -i -e "s/-O2/& -msse2/" configure
+ case "$MORPH_ARCH" in
+ x86*) sed -i -e "s/-O2/& -msse2/" configure ;;
+ esac
- ./configure --prefix="$PREFIX" --sysconfdir=/etc --localstatedir=/var --disable-gtk-doc