[gnome-builder] build: disable device manager/mingw by default
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder] build: disable device manager/mingw by default
- Date: Sun, 20 Sep 2015 05:31:13 +0000 (UTC)
commit bd60b9b289fd785c29f04abbaebbfc7e51255bd0
Author: Christian Hergert <christian hergert me>
Date: Sat Sep 19 22:31:02 2015 -0700
build: disable device manager/mingw by default
These aren't ready for prime time, so lets disable them by default for
3.18. You can enable them with the --enable-mingw-plugin and
--enable-device-manager-plugin configure arguments.
I would suggest that distribution packagers do not enable these for 3.18.
configure.ac | 8 ++++++--
plugins/device-manager/configure.ac | 2 +-
plugins/mingw/configure.ac | 2 +-
3 files changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 4937185..649cac3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -496,12 +496,10 @@ echo " Clang ................................ : ${enable_clang_plugin}"
echo " Command Bar .......................... : ${enable_command_bar_plugin}"
echo " Ctags ................................ : ${enable_ctags_plugin}"
echo " Devhelp .............................. : ${enable_devhelp_plugin}"
-echo " Device Manager ....................... : ${enable_device_manager_plugin}"
echo " GNOME Code Assistance ................ : ${enable_gnome_code_assistance_plugin}"
echo " Global File Search ................... : ${enable_file_search_plugin}"
echo " HTML Autocompletion .................. : ${enable_html_completion_plugin}"
echo " HTML and Markdown Preview ............ : ${enable_html_preview_plugin}"
-echo " MinGW ................................ : ${enable_mingw_plugin}"
echo " Python GObject Introspection ......... : ${enable_python_gi_imports_completion_plugin}"
echo " Python Jedi Autocompletion ........... : ${enable_jedi_plugin}"
echo " Python Language Pack ................. : ${enable_python_pack_plugin}"
@@ -510,3 +508,9 @@ echo " Symbol Tree .......................... : ${enable_symbol_tree_plugin}"
echo " Terminal ............................. : ${enable_terminal_plugin}"
echo " XML Language Pack .................... : ${enable_xml_pack_plugin}"
echo ""
+echo "Experimental Plugins"
+echo ""
+echo " Device Manager ....................... : ${enable_device_manager_plugin}"
+echo " MinGW ................................ : ${enable_mingw_plugin}"
+echo ""
+
diff --git a/plugins/device-manager/configure.ac b/plugins/device-manager/configure.ac
index 0b97d73..da3a023 100644
--- a/plugins/device-manager/configure.ac
+++ b/plugins/device-manager/configure.ac
@@ -3,7 +3,7 @@ AC_ARG_ENABLE([enable-device-manager-plugin],
[AS_HELP_STRING([--enable-device-manager-plugin=@<:@yes/no@:>@],
[Build with support for the device manager panel.])],
[],
- [enable_device_manager_plugin=yes])
+ [enable_device_manager_plugin=no])
# for if ENABLE_DEVICE_MANAGER_PLUGIN in Makefile.am
AM_CONDITIONAL(ENABLE_DEVICE_MANAGER_PLUGIN, test x$enable_device_manager_plugin != xno)
diff --git a/plugins/mingw/configure.ac b/plugins/mingw/configure.ac
index c486c41..45ebf2b 100644
--- a/plugins/mingw/configure.ac
+++ b/plugins/mingw/configure.ac
@@ -3,7 +3,7 @@ AC_ARG_ENABLE([enable-mingw-plugin],
[AS_HELP_STRING([--enable-mingw-plugin=@<:@yes/no@:>@],
[Build with support for the mingw compiler.])],
[],
- [enable_mingw_plugin=yes])
+ [enable_mingw_plugin=no])
# for if ENABLE_MINGW_PLUGIN in Makefile.am
AM_CONDITIONAL(ENABLE_MINGW_PLUGIN, test x$enable_mingw_plugin != xno)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]