diff options
-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 */ |