diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2012-11-30 10:24:17 -0600 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2012-11-30 10:24:17 -0600 |
commit | 674a8ad46e13685121c00928765d4919a283c674 (patch) | |
tree | 51ab0969341c6404a11d668af73ff3e243986613 | |
parent | f3603f8b0cd6d706561542537a398b627f76c5b3 (diff) | |
download | ayatana-indicator-session-674a8ad46e13685121c00928765d4919a283c674.tar.gz ayatana-indicator-session-674a8ad46e13685121c00928765d4919a283c674.tar.bz2 ayatana-indicator-session-674a8ad46e13685121c00928765d4919a283c674.zip |
remove unused polkit dependency
-rw-r--r-- | configure.ac | 14 | ||||
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | debian/control | 1 |
3 files changed, 9 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac index 70bd7dd..aeff7d4 100644 --- a/configure.ac +++ b/configure.ac @@ -30,7 +30,6 @@ GLIB_REQUIRED_VERSION=2.33 GTK_REQUIRED_VERSION=3.0 INDICATOR_REQUIRED_VERSION=0.3.19 DBUSMENUGTK_REQUIRED_VERSION=0.5.90 -POLKIT_REQUIRED_VERSION=0.92 DBUSTEST_REQUIRED_VERSION=0.0.5 DBUSMENUGLIB_REQUIRED_VERSION=0.1.1 @@ -59,14 +58,15 @@ AC_SUBST(GUDEV_LIBS) ########################### AC_ARG_ENABLE([gtklogouthelper], - AS_HELP_STRING([--enable-gtklogouthelper], [enable GTK Logout Helper]),, - enable_gtklogouthelper=auto) + [AS_HELP_STRING([--enable-gtklogouthelper], [enable GTK Logout Helper])], + [], + [enable_gtklogouthelper=auto]) if test x"$enable_gtklogouthelper" != x"no" ; then - PKG_CHECK_MODULES(GTKLOGOUTHELPER, gtk+-3.0 >= $GTK_REQUIRED_VERSION - polkit-gobject-1 >= $POLKIT_REQUIRED_VERSION, - [have_gtklogouthelper=yes], - [have_gtklogouthelper=no]) + PKG_CHECK_MODULES([GTKLOGOUTHELPER], + [gtk+-3.0 >= $GTK_REQUIRED_VERSION], + [have_gtklogouthelper=yes], + [have_gtklogouthelper=no]) if test x${have_gtklogouthelper} = xyes; then AC_DEFINE(HAVE_GTKLOGOUTHELPER, 1, [Define to 1 to enable GTK Logout Helper]) fi diff --git a/debian/changelog b/debian/changelog index 35c07db..2db8968 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,7 +11,8 @@ indicator-session (12.10.5-0ubuntu1) UNRELEASED; urgency=low - Add libgtest-dev, libdbustest1-dev, dbus-test-runner to Build-Depends. - Adjust style to be consistent and use trailing commas in lists. - Update Vcs-Bzr and Vcs-Browser fields and add notice for uploaders. - - Remove libpackagekit-glib2-dev from Build-Depends + - Remove libpackagekit-glib2-dev and libpolkit-gobject-1-dev + from Build-Depends. - Remove package from Recommends * Automatic snapshot from revision 373 (bootstrap): - Check to make sure that create_display_proxy() succeeded before using the diff --git a/debian/control b/debian/control index 76c4a3f..d910c9c 100644 --- a/debian/control +++ b/debian/control @@ -16,7 +16,6 @@ Build-Depends: debhelper (>= 9), libindicator3-dev (>= 0.3.90), libdbusmenu-glib-dev (>= 0.5.90), libdbusmenu-gtk3-dev (>= 0.5.90), - libpolkit-gobject-1-dev, Standards-Version: 3.9.3 Homepage: https://launchpad.net/indicator-session # If you aren't a member of ~indicator-applet-developers but need to upload |