From 1d9a26d7d7bd2edb1a79ad446d6d5b4239cec55e Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Fri, 18 Mar 2011 14:32:43 +0100 Subject: [PATCH] Disable example, xrandr-indicator, auto-move-windows, user-theme by default. example: not really useful for the general public. xrandr-indicator: requires some features in gjs and gobject-introspection that are not merged yet (bugs 634253 and 643620). auto-move-windows and user-theme: these are very useful, but require GSettings, so can only be installed in the same prefix as GLib, or otherwise one needs to set GSETTINGS_SCHEMA_DIR in .profile) --- configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index d769d5f8..8997f77f 100644 --- a/configure.ac +++ b/configure.ac @@ -23,10 +23,12 @@ ADDITIONAL_PACKAGES= dnl keep this in sync with extensions/Makefile.am ALL_EXTENSIONS="example alternate-tab xrandr-indicator windowsNavigator auto-move-windows dock user-theme alternative-status-menu" +DEFAULT_EXTENSIONS="alternate-tab windowsNavigator dock alternative-status-menu" AC_ARG_ENABLE([extensions], - [AS_HELP_STRING([--enable-extensions],[Space separated list of extensions to enable. Default is that all extensions are built.])], + [AS_HELP_STRING([--enable-extensions],[Space separated list of extensions to enable. + The default is to build all extensions that can be installed in the home directory and have no external depedencies.])], [], - [enable_extensions=$ALL_EXTENSIONS] + [enable_extensions=$DEFAULT_EXTENSIONS] ) ENABLED_EXTENSIONS= for e in $enable_extensions; do