diff options
author | Christoph Korn <korn@ubuntu> | 2009-09-02 16:17:44 +0200 |
---|---|---|
committer | Christoph Korn <korn@ubuntu> | 2009-09-02 16:17:44 +0200 |
commit | 1f0874253406566587d4e42a9ee2f4617a5c66d9 (patch) | |
tree | cd8a07328b4a7fcdf836e6596c311a0640e2cf2d /configure.ac | |
parent | 41f1b3206ab13b008aed6670dc42636049c9590d (diff) | |
download | ayatana-indicator-session-1f0874253406566587d4e42a9ee2f4617a5c66d9.tar.gz ayatana-indicator-session-1f0874253406566587d4e42a9ee2f4617a5c66d9.tar.bz2 ayatana-indicator-session-1f0874253406566587d4e42a9ee2f4617a5c66d9.zip |
These patches introduce a gconf key whether the logout/restart/shutdown confirmations
should be shown or not.
Also the menu items should be suffixed by '...' accordingly.
However this only works after a restart.
Bugs which get fixed are:
https://bugs.launchpad.net/indicator-session/+bug/422025
https://bugs.launchpad.net/ubuntu/+source/indicator-session/+bug/421693
https://bugs.launchpad.net/ubuntu/+source/indicator-session/+bug/419472
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 28b2c8b..5c5fbe1 100644 --- a/configure.ac +++ b/configure.ac @@ -8,6 +8,8 @@ AM_INIT_AUTOMAKE(indicator-session, 0.1) AM_MAINTAINER_MODE +IT_PROG_INTLTOOL([0.35.0]) + AC_ISC_POSIX AC_PROG_CC AM_PROG_CC_C_O @@ -56,6 +58,16 @@ PKG_CHECK_MODULES(GTKLOGOUTHELPER, gtk+-2.0 >= $GTK_REQUIRED_VERSION AC_SUBST(GTKLOGOUTHELPER_CFLAGS) AC_SUBST(GTKLOGOUTHELPER_LIBS) +AC_PATH_PROG(GCONFTOOL, gconftool-2) +dnl Specify the gconf configuration source, +dnl default to xml::$(sysconfdir)/gconf/gconf.xml.defaults + +AM_GCONF_SOURCE_2 + +PKG_CHECK_MODULES(GCONF, gconf-2.0 >= 2.0) +AC_SUBST(GCONF_CFLAGS) +AC_SUBST(GCONF_LIBS) + ########################### # Check to see if we're local ########################### @@ -115,6 +127,7 @@ data/icons/48x48/status/Makefile data/icons/scalable/Makefile data/icons/scalable/status/Makefile data/icons/scalable/actions/Makefile +po/Makefile.in ]) ########################### |