* [Buildroot] [PATCH 1/2] gst-plugins-base: disable parallel build @ 2011-09-30 14:48 Sven Neumann 2011-09-30 14:48 ` [Buildroot] [PATCH 2/2] gst-plugins-bad: add more config options Sven Neumann 2011-09-30 21:47 ` [Buildroot] [PATCH 1/2] gst-plugins-base: disable parallel build Peter Korsgaard 0 siblings, 2 replies; 4+ messages in thread From: Sven Neumann @ 2011-09-30 14:48 UTC (permalink / raw) To: buildroot Parallel builds sometimes break when audio/testchannels is compiled before the gstinterfaces library. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> --- .../gst-plugins-base/gst-plugins-base.mk | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/package/multimedia/gst-plugins-base/gst-plugins-base.mk b/package/multimedia/gst-plugins-base/gst-plugins-base.mk index 3b21c27..78144d9 100644 --- a/package/multimedia/gst-plugins-base/gst-plugins-base.mk +++ b/package/multimedia/gst-plugins-base/gst-plugins-base.mk @@ -8,6 +8,8 @@ GST_PLUGINS_BASE_SOURCE = gst-plugins-base-$(GST_PLUGINS_BASE_VERSION).tar.bz2 GST_PLUGINS_BASE_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-base GST_PLUGINS_BASE_INSTALL_STAGING = YES +GST_PLUGINS_BASE_MAKE = $(MAKE1) + # freetype is only used by examples, but if it is not found # and the host has a freetype-config script, then the host # include dirs are added to the search path causing trouble -- 1.7.4.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] gst-plugins-bad: add more config options 2011-09-30 14:48 [Buildroot] [PATCH 1/2] gst-plugins-base: disable parallel build Sven Neumann @ 2011-09-30 14:48 ` Sven Neumann 2011-09-30 21:48 ` Peter Korsgaard 2011-09-30 21:47 ` [Buildroot] [PATCH 1/2] gst-plugins-base: disable parallel build Peter Korsgaard 1 sibling, 1 reply; 4+ messages in thread From: Sven Neumann @ 2011-09-30 14:48 UTC (permalink / raw) To: buildroot The recent update added some new plugins. This commit makes them selectable in buildroot. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> --- package/multimedia/gst-plugins-bad/Config.in | 10 ++++++++++ .../multimedia/gst-plugins-bad/gst-plugins-bad.mk | 19 +++++++++++++++++++ 2 files changed, 29 insertions(+), 0 deletions(-) diff --git a/package/multimedia/gst-plugins-bad/Config.in b/package/multimedia/gst-plugins-bad/Config.in index cfd9b70..a8d01bc 100644 --- a/package/multimedia/gst-plugins-bad/Config.in +++ b/package/multimedia/gst-plugins-bad/Config.in @@ -54,6 +54,9 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DCCP config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DEBUGUTILS bool "debugutils" +config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DECKLINK + bool "decklink" + config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF bool "dtmf" @@ -117,6 +120,9 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LEGACYRESAMPLE config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB bool "librfb" +config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LINSYS + bool "linsys" + config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER bool "liveadder" @@ -247,6 +253,10 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FBDEV bool "fbdev" +config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBMMS + bool "libmms" + select BR2_PACKAGE_LIBMMS + config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NEON bool "neon" select BR2_PACKAGE_NEON diff --git a/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk b/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk index 4cd2771..bebff40 100644 --- a/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk +++ b/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk @@ -100,6 +100,12 @@ else GST_PLUGINS_BAD_CONF_OPT += --disable-debugutils endif +ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DECKLINK),y) +GST_PLUGINS_BAD_CONF_OPT += --enable-decklink +else +GST_PLUGINS_BAD_CONF_OPT += --disable-decklink +endif + ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF),y) GST_PLUGINS_BAD_CONF_OPT += --enable-dtmf else @@ -232,6 +238,12 @@ else GST_PLUGINS_BAD_CONF_OPT += --disable-librfb endif +ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LINSYS),y) +GST_PLUGINS_BAD_CONF_OPT += --enable-linsys +else +GST_PLUGINS_BAD_CONF_OPT += --disable-linsys +endif + ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER),y) GST_PLUGINS_BAD_CONF_OPT += --enable-liveadder else @@ -484,6 +496,13 @@ else GST_PLUGINS_BAD_CONF_OPT += --disable-fbdev endif +ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBMMS),y) +GST_PLUGINS_BAD_CONF_OPT += --enable-libmms +GST_PLUGINS_BAD_DEPENDENCIES += libmms +else +GST_PLUGINS_BAD_CONF_OPT += --disable-libmms +endif + ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NEON),y) GST_PLUGINS_BAD_CONF_OPT += --enable-neon GST_PLUGINS_BAD_DEPENDENCIES += neon -- 1.7.4.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] gst-plugins-bad: add more config options 2011-09-30 14:48 ` [Buildroot] [PATCH 2/2] gst-plugins-bad: add more config options Sven Neumann @ 2011-09-30 21:48 ` Peter Korsgaard 0 siblings, 0 replies; 4+ messages in thread From: Peter Korsgaard @ 2011-09-30 21:48 UTC (permalink / raw) To: buildroot >>>>> "Sven" == Sven Neumann <s.neumann@raumfeld.com> writes: Sven> The recent update added some new plugins. This commit makes Sven> them selectable in buildroot. Committed, thanks. -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/2] gst-plugins-base: disable parallel build 2011-09-30 14:48 [Buildroot] [PATCH 1/2] gst-plugins-base: disable parallel build Sven Neumann 2011-09-30 14:48 ` [Buildroot] [PATCH 2/2] gst-plugins-bad: add more config options Sven Neumann @ 2011-09-30 21:47 ` Peter Korsgaard 1 sibling, 0 replies; 4+ messages in thread From: Peter Korsgaard @ 2011-09-30 21:47 UTC (permalink / raw) To: buildroot >>>>> "Sven" == Sven Neumann <s.neumann@raumfeld.com> writes: Sven> Parallel builds sometimes break when audio/testchannels is Sven> compiled before the gstinterfaces library. Committed, thanks. -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-09-30 21:48 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-09-30 14:48 [Buildroot] [PATCH 1/2] gst-plugins-base: disable parallel build Sven Neumann 2011-09-30 14:48 ` [Buildroot] [PATCH 2/2] gst-plugins-bad: add more config options Sven Neumann 2011-09-30 21:48 ` Peter Korsgaard 2011-09-30 21:47 ` [Buildroot] [PATCH 1/2] gst-plugins-base: disable parallel build Peter Korsgaard
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox