diff options
author | Benedikt Meurer <benny@xfce.org> | 2006-02-13 21:19:42 +0000 |
---|---|---|
committer | Benedikt Meurer <benny@xfce.org> | 2006-02-13 21:19:42 +0000 |
commit | 4d05c3bdbd8320620b3bee0e0b97cbda7e30c925 (patch) | |
tree | c8715bbb7c80787a6cd6e403cc21d1634ff6f419 /configure.in.in | |
parent | 929f112805cc4cfa125fae8d1632498ede5bbccc (diff) | |
download | thunar-4d05c3bdbd8320620b3bee0e0b97cbda7e30c925.tar.gz |
2006-02-13 Benedikt Meurer <benny@xfce.org>
* thunar/thunar-dbus-service.c: Print a warning to stderr, instead of
using g_warning() if unable to connect to the session bus.
* configure.in.in, thunar-vfs/thunar-vfs-volume-hal.c: Update to use
HAL 0.5.x API.
(Old svn revision: 19860)
Diffstat (limited to 'configure.in.in')
-rw-r--r-- | configure.in.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in.in b/configure.in.in index 3111fd80..c2d464ca 100644 --- a/configure.in.in +++ b/configure.in.in @@ -237,14 +237,13 @@ AC_SUBST([LIBFAM_LIBS]) dnl ************************************ dnl *** Check for the system flavour *** dnl ************************************ -AC_MSG_CHECKING([for system flavour]) case "$target_os" in *bsd*) FLAVOUR="bsd" ;; *linux*) # on Linux, we try to use HAL first, and fallback to generic - XDT_CHECK_PACKAGE([HAL], [hal-storage], [0.4], + XDT_CHECK_PACKAGE([HAL], [hal-storage], [0.5.0], [ # we also need D-BUS GLib bindings, but 0.23 will do XDT_CHECK_PACKAGE([HAL_DBUS], [dbus-glib-1], [0.23], @@ -263,6 +262,7 @@ case "$target_os" in FLAVOUR="sysv" ;; esac +AC_MSG_CHECKING([for system flavour]) AC_MSG_RESULT([$FLAVOUR]) dnl ********************************************************** |