summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-12-09 06:34:22 +0000
committerAndreas Oberritter <obi@opendreambox.org>2010-12-09 22:33:02 +0100
commit6fccd9030079aa69ad910c0a398903946cae3f91 (patch)
tree3b6d2cd6557f8b3aa72e79a527501d37dab83bad
parent18d59f5fad41e4ea05b5d5a8c1588a0bdbdbf815 (diff)
downloadopenembedded-6fccd9030079aa69ad910c0a398903946cae3f91.tar.gz
gst-plugins-bad: update EXTRA_OECONF (mjpegtools, sdl)
* Fix build with mjepegtools installed, by disabling mpeg2enc and mplex. The configure script of gst-plugins-bad wants to use AC_TRY_RUN for both of them, which doesn't work when cross-compiling. * Remove --enable-sdl, because it is the default. Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
-rw-r--r--recipes/gstreamer/gst-plugins-bad_0.10.20.bb11
1 files changed, 8 insertions, 3 deletions
diff --git a/recipes/gstreamer/gst-plugins-bad_0.10.20.bb b/recipes/gstreamer/gst-plugins-bad_0.10.20.bb
index 74e395bc49..17f20ebebe 100644
--- a/recipes/gstreamer/gst-plugins-bad_0.10.20.bb
+++ b/recipes/gstreamer/gst-plugins-bad_0.10.20.bb
@@ -5,7 +5,12 @@ SRC_URI[archive.sha256sum] = "1031dff866df976a957f34039addbab4c0753406299a275f4c
DEPENDS += "orc-native orc libcdaudio gst-plugins-base openssl directfb libmodplug librsvg"
-PR = "${INC_PR}.1"
+PR = "${INC_PR}.2"
-# We don't have vdpau headers in OE and it creates crosscompile badness
-EXTRA_OECONF_append = " --disable-vdpau --enable-sdl"
+# We don't have vdpau headers in OE and it creates crosscompile badness.
+# Also, mpeg2enc and mplex from mjpegtools don't build, because of AC_TRY_RUN.
+EXTRA_OECONF += " \
+ --disable-mpeg2enc \
+ --disable-mplex \
+ --disable-vdpau \
+"