diff options
author | Javier Jardón <javier.jardon@codethink.co.uk> | 2011-06-28 16:03:17 +0100 |
---|---|---|
committer | Javier Jardón <javier.jardon@codethink.co.uk> | 2011-06-28 16:03:17 +0100 |
commit | ce435ff834bafc56e36306965b08e3a0627ad03d (patch) | |
tree | 3501971c80b9a119016f43f2387bf223721febee | |
parent | a7497869e9014f6c7e13d7c1f2bb929b738fef38 (diff) | |
download | ayatana-indicator-power-ce435ff834bafc56e36306965b08e3a0627ad03d.tar.gz ayatana-indicator-power-ce435ff834bafc56e36306965b08e3a0627ad03d.tar.bz2 ayatana-indicator-power-ce435ff834bafc56e36306965b08e3a0627ad03d.zip |
Remove libido dependency
We do not need this for now
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | src/indicator-power.c | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 0d58a89..3cf8008 100644 --- a/configure.ac +++ b/configure.ac @@ -45,13 +45,11 @@ AC_ARG_WITH([gtk], AS_IF([test "x$with_gtk" = x3], [PKG_CHECK_MODULES([INDICATOR],[ gtk+-3.0 >= $GTK3_REQUIRED_VERSION - indicator3 >= $INDICATOR_REQUIRED_VERSION - libido3-0.1 >= $INDICATOR_DISPLAY_OBJECTS])], + indicator3 >= $INDICATOR_REQUIRED_VERSION])], [test "x$with_gtk" = x2], [PKG_CHECK_MODULES([INDICATOR],[ gtk+-2.0 >= $GTK_REQUIRED_VERSION - indicator >= $INDICATOR_REQUIRED_VERSION - libido-0.1 >= $INDICATOR_DISPLAY_OBJECTS])], + indicator >= $INDICATOR_REQUIRED_VERSION])], [AC_MSG_FAILURE([Value for --with-gtk was neither 2 nor 3])] ) AC_SUBST(INDICATOR_CFLAGS) diff --git a/src/indicator-power.c b/src/indicator-power.c index 8685d80..c490ab1 100644 --- a/src/indicator-power.c +++ b/src/indicator-power.c @@ -34,7 +34,6 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include <libindicator/indicator-object.h> #include <libindicator/indicator-service-manager.h> #include <libindicator/indicator-image-helper.h> -#include <libido/libido.h> #include "dbus-shared-names.h" @@ -77,7 +76,6 @@ struct _IndicatorPowerPrivate GCancellable *service_proxy_cancel; GDBusProxy *service_proxy; - IdoCalendarMenuItem *ido_entry; }; /* Prototypes */ |