diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2009-09-24 18:11:10 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2009-09-24 18:11:10 -0400 |
commit | 8bbcf87cf6cd876eacec968438d1622e3b362225 (patch) | |
tree | d955b77d089152549107434f38df5dd12abddefb /configure.ac | |
parent | 86c162bb5ae1eca498296d7890789130b9eea2a4 (diff) | |
parent | 2bddafc048379759d720f250739c59fcad7f6249 (diff) | |
download | ayatana-indicator-session-8bbcf87cf6cd876eacec968438d1622e3b362225.tar.gz ayatana-indicator-session-8bbcf87cf6cd876eacec968438d1622e3b362225.tar.bz2 ayatana-indicator-session-8bbcf87cf6cd876eacec968438d1622e3b362225.zip |
* Upstream release 0.1.5 (LP: #436223)
* PolicyKit-1 support (LP: #418643)
* GDM User list support (LP: #422052)
* MissionControl5 support (LP: #427643)
* Better locking of the screensaver (LP: #428115)
* debian/control: Adding in a libempathy-dev build dependency
as it's now required by upstream.
* Removing patches 01_polkit-1.patch and 99_autoreconf.patch
as they were merged upstream.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 2c06cb0..0ce9fbc 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_INIT(src/indicator-session.c) AC_PREREQ(2.53) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(indicator-session, 0.1.4) +AM_INIT_AUTOMAKE(indicator-session, 0.1.5) AM_MAINTAINER_MODE @@ -28,6 +28,7 @@ m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) GTK_REQUIRED_VERSION=2.12 INDICATOR_REQUIRED_VERSION=0.2.0 DBUSMENUGTK_REQUIRED_VERSION=0.1.1 +POLKIT_REQUIRED_VERSION=0.92 PKG_CHECK_MODULES(APPLET, gtk+-2.0 >= $GTK_REQUIRED_VERSION indicator >= $INDICATOR_REQUIRED_VERSION @@ -36,8 +37,10 @@ AC_SUBST(APPLET_CFLAGS) AC_SUBST(APPLET_LIBS) DBUSMENUGLIB_REQUIRED_VERSION=0.1.1 +LIBEMPATHY_REQUIRED_VERSION=2.27.0 -PKG_CHECK_MODULES(STATUSSERVICE, dbusmenu-glib >= $DBUSMENUGLIB_REQUIRED_VERSION) +PKG_CHECK_MODULES(STATUSSERVICE, dbusmenu-glib >= $DBUSMENUGLIB_REQUIRED_VERSION + libempathy >= $LIBEMPATHY_REQUIRED_VERSION) AC_SUBST(STATUSERVICE_CFLAGS) AC_SUBST(STATUSERVICE_LIBS) @@ -53,7 +56,8 @@ AC_SUBST(SESSIONERVICE_CFLAGS) AC_SUBST(SESSIONERVICE_LIBS) PKG_CHECK_MODULES(GTKLOGOUTHELPER, gtk+-2.0 >= $GTK_REQUIRED_VERSION - polkit-gnome) + polkit-gobject-1 >= $POLKIT_REQUIRED_VERSION) + AC_SUBST(GTKLOGOUTHELPER_CFLAGS) AC_SUBST(GTKLOGOUTHELPER_LIBS) |