Require at least gio 2.26 for the dbus support.

Change-Id: I6276d55081098f567104f61fde896d1b66591522
Reviewed-on: https://gerrit.libreoffice.org/3904
Reviewed-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
Tested-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
This commit is contained in:
Mark Wielaard
2013-05-14 13:15:53 +02:00
committed by Bosdonnat Cedric
parent e5b2edfb93
commit 34cf34d651

View File

@@ -9484,10 +9484,12 @@ if test "$test_gtk" = "yes"; then
if test "$ENABLE_GNOMEVFS" = "TRUE"; then if test "$ENABLE_GNOMEVFS" = "TRUE"; then
AC_MSG_ERROR([please use --enable-gio only together with --disable-gnome-vfs.]) AC_MSG_ERROR([please use --enable-gio only together with --disable-gnome-vfs.])
fi fi
ENABLE_GIO="TRUE" dnl Need at least 2.26 for the dbus support.
AC_MSG_RESULT([yes]) PKG_CHECK_MODULES([GIO], [gio-2.0 >= 2.26],
PKG_CHECK_MODULES( GIO, gio-2.0 ) [ENABLE_GIO="TRUE"], [ENABLE_GIO=""])
AC_DEFINE(ENABLE_GIO) if test "$ENABLE_GIO" = "TRUE"; then
AC_DEFINE(ENABLE_GIO)
fi
else else
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
fi fi