[vinagre] Disable applet by default
- From: David King <davidk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vinagre] Disable applet by default
- Date: Sun, 6 Mar 2011 09:18:31 +0000 (UTC)
commit 116280c1ccd6e008af29bca1daf6bcafc4da0c25
Author: David King <amigadave amigadave com>
Date: Sun Mar 6 10:14:43 2011 +0100
Disable applet by default
Add a warning to configure that applet support is currently broken, and
make the configure argument default to disabling the applet. As a side
effect, fixes bug 642707.
configure.ac | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 8fd7d3e..4e6961a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -203,12 +203,16 @@ fi
AM_CONDITIONAL(TELEPATHY, test "x$have_telepathy" = "xyes")
# Enable/disable gnome-panel applet
+# TODO: Applet needs porting to GTK+ 3 and libpanelapplet-4.0, and is currently
+# broken. Do not enable applet support unless you are a developer who wants to
+# hack on it.
AC_ARG_ENABLE(applet,
- AS_HELP_STRING([--disable-applet], [Do not build the panel applet @<:@default=enabled@:>@]),
+ AS_HELP_STRING([--enable-applet], [Build the panel applet @<:@default=disabled@:>@]),
enable_applet=$enableval,
- enable_applet=yes)
+ enable_applet=no)
if test "x$enable_applet" = "xyes";then
+ AC_MSG_WARN([Applet support is currently broken!])
PKG_CHECK_MODULES(APPLET, libpanelapplet-2.0 >= $PANEL_REQUIRED_VERSION)
AC_SUBST(APPLET_CFLAGS)
AC_SUBST(APPLET_LIBS)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]