[rygel] build: Option to not build gst-renderer



commit 3155e762baa19c2220be385975346766c2da950e
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Wed Oct 14 01:48:57 2009 +0300

    build: Option to not build gst-renderer

 configure.ac            |    6 ++++++
 src/plugins/Makefile.am |    2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 7f00f44..3ccfa6a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -195,6 +195,11 @@ AC_ARG_ENABLE(external-plugin,
 	[  --enable-external-plugin          build External plugin],,
         enable_external_plugin=yes)
 
+# Build GstRenderer plugin
+AC_ARG_ENABLE(gst-renderer-plugin,
+	[  --enable-gst-renderer_plugin          build Gstreamer Renderer plugin],,
+        enable_gst_renderer_plugin=yes)
+
 # Build Mediathek plugin
 AC_ARG_ENABLE(mediathek-plugin,
 	[  --enable-mediathek-plugin          build Mediathek plugin],,
@@ -216,6 +221,7 @@ AM_CONDITIONAL([BUILD_TRACKER_PLUGIN],
 AM_CONDITIONAL([BUILD_MEDIATHEK_PLUGIN], [test "x$enable_mediathek_plugin" = "xyes"])
 AM_CONDITIONAL([BUILD_MEDIA_EXPORT_PLUGIN], [test "x$enable_media_export_plugin" = "xyes"])
 AM_CONDITIONAL([BUILD_EXTERNAL_PLUGIN], [test "x$enable_external_plugin" = "xyes"])
+AM_CONDITIONAL([BUILD_GST_RENDERER_PLUGIN], [test "x$enable_gst_renderer_plugin" = "xyes"])
 AM_CONDITIONAL([BUILD_GST_LAUNCH_PLUGIN], [test "x$enable_gst_launch_plugin" = "xyes"])
 
 # Gettext
diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am
index 4472416..f0528e8 100644
--- a/src/plugins/Makefile.am
+++ b/src/plugins/Makefile.am
@@ -22,7 +22,7 @@ if BUILD_GST_LAUNCH_PLUGIN
 GST_LAUNCH_PLUGIN = gst-launch
 endif
 
-if BUILD_UI
+if BUILD_GST_RENDERER_PLUGIN
 GST_RENDERER = gst-renderer
 endif
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]