diff options
author | Ted Gould <ted@gould.cx> | 2011-01-27 16:47:49 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-01-27 16:47:49 -0600 |
commit | ce47d3868094c01e28fb75adecf4cd9de03832b7 (patch) | |
tree | 8bbecced83ccd6d259d2190094298bb40a28071c /configure.ac | |
parent | b7eb711886ddb2f46b0c685a577a7b0f6c455ba6 (diff) | |
parent | 28f84ee512a35e2b04b211b7c1705a6eef4368ab (diff) | |
download | ayatana-indicator-datetime-ce47d3868094c01e28fb75adecf4cd9de03832b7.tar.gz ayatana-indicator-datetime-ce47d3868094c01e28fb75adecf4cd9de03832b7.tar.bz2 ayatana-indicator-datetime-ce47d3868094c01e28fb75adecf4cd9de03832b7.zip |
* New upstream release.
* Change to canonical.com for naming
* Fixing a type callback
* Switching to GDbus and dbusmenu-0.4
* Supporting a wider range of custom strings for time and support
seconds in the custom time strings.
* Fixing to take time settings from LC_TIME
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index dc0448c..9118db8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,11 +1,11 @@ -AC_INIT(indicator-datetime, 0.1.90, ted@canonical.com) +AC_INIT(indicator-datetime, 0.1.91, ted@canonical.com) AC_COPYRIGHT([Copyright 2009,2010 Canonical]) AC_PREREQ(2.53) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(indicator-datetime, 0.1.90) +AM_INIT_AUTOMAKE(indicator-datetime, 0.1.91) AM_MAINTAINER_MODE @@ -53,7 +53,7 @@ AC_ARG_WITH([gtk], INDICATOR_REQUIRED_VERSION=0.3.0 DBUSMENUGLIB_REQUIRED_VERSION=0.1.1 -DBUSMENUGTK_REQUIRED_VERSION=0.1.1 +DBUSMENUGTK_REQUIRED_VERSION=0.3.94 GIO_REQUIRED_VERSION=2.25.11 # Note: the GIO check below also ensures the proper glib with gsettings support is present INDICATOR_DISPLAY_OBJECTS=0.1.10 @@ -62,21 +62,21 @@ OOBS_REQUIRED_VERSION=2.31.0 AS_IF([test "x$with_gtk" = x3], [PKG_CHECK_MODULES(INDICATOR, indicator3 >= $INDICATOR_REQUIRED_VERSION - dbusmenu-glib >= $DBUSMENUGLIB_REQUIRED_VERSION - dbusmenu-gtk3 >= $DBUSMENUGTK_REQUIRED_VERSION + dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION + dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION libido3-0.1 >= $INDICATOR_DISPLAY_OBJECTS) ], [test "x$with_gtk" = x2], [PKG_CHECK_MODULES(INDICATOR, indicator >= $INDICATOR_REQUIRED_VERSION - dbusmenu-glib >= $DBUSMENUGLIB_REQUIRED_VERSION - dbusmenu-gtk >= $DBUSMENUGTK_REQUIRED_VERSION + dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION + dbusmenu-gtk-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION libido-0.1 >= $INDICATOR_DISPLAY_OBJECTS) ], [AC_MSG_FAILURE([Value for --with-gtk was neither 2 nor 3])] ) PKG_CHECK_MODULES(SERVICE, indicator >= $INDICATOR_REQUIRED_VERSION - dbusmenu-glib >= $DBUSMENUGLIB_REQUIRED_VERSION + dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION libido-0.1 >= $INDICATOR_DISPLAY_OBJECTS gio-2.0 >= $GIO_REQUIRED_VERSION geoclue >= $GEOCLUE_REQUIRED_VERSION |