rygel r462 - in trunk: . src/plugins
- From: zeeshanak svn gnome org
- To: svn-commits-list gnome org
- Subject: rygel r462 - in trunk: . src/plugins
- Date: Mon, 19 Jan 2009 15:56:26 +0000 (UTC)
Author: zeeshanak
Date: Mon Jan 19 15:56:26 2009
New Revision: 462
URL: http://svn.gnome.org/viewvc/rygel?rev=462&view=rev
Log:
configure options for disabling dvb and tracker plugins.
Modified:
trunk/configure.ac
trunk/src/plugins/Makefile.am
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Mon Jan 19 15:56:26 2009
@@ -105,10 +105,23 @@
[ --enable-test-plugin build test plugin],,
enable_test_plugin=no)
+# Build Tracker plugin
+AC_ARG_ENABLE(tracker-plugin,
+ [ --enable-tracker-plugin build tracker plugin],,
+ enable_tracker_plugin=yes)
+
+# Build DVB plugin
+AC_ARG_ENABLE(dvb-plugin,
+ [ --enable-dvb-plugin build DVB plugin],,
+ enable_dvb_plugin=yes)
+
AC_SUBST(abs_top_builddir)
AM_CONDITIONAL([UNINSTALLED], [test "x$enable_uninstalled" = "xyes"])
AM_CONDITIONAL([BUILD_TEST_PLUGIN], [test "x$enable_test_plugin" = "xyes"])
+AM_CONDITIONAL([BUILD_TRACKER_PLUGIN],
+ [test "x$enable_tracker_plugin" = "xyes"])
+AM_CONDITIONAL([BUILD_DVB_PLUGIN], [test "x$enable_dvb_plugin" = "xyes"])
# Gettext
GETTEXT_PACKAGE=rygel
Modified: trunk/src/plugins/Makefile.am
==============================================================================
--- trunk/src/plugins/Makefile.am (original)
+++ trunk/src/plugins/Makefile.am Mon Jan 19 15:56:26 2009
@@ -1,7 +1,15 @@
if BUILD_TEST_PLUGIN
-SUBDIRS = tracker dvb test
-else
-SUBDIRS = tracker dvb
+TEST_PLUGIN = test
endif
+if BUILD_TRACKER_PLUGIN
+TRACKER_PLUGIN = tracker
+endif
+
+if BUILD_DVB_PLUGIN
+DVB_PLUGIN = dvb
+endif
+
+SUBDIRS = $(TEST_PLUGIN) $(TRACKER_PLUGIN) $(DVB_PLUGIN)
+
MAINTAINERCLEANFILES = Makefile.in
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]