summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2011-03-09 11:55:06 +0100
committerRichard Hughes <richard@hughsie.com>2011-03-09 11:03:44 +0000
commitd1e5f6a4dafbb5b376f06775070146f9def54407 (patch)
treea9c41b080aa68bb83fe5af00b88a1fd292b4eb3d /configure.ac
parent8b9ee531330a0e4a4f81bbe046282bfd27675015 (diff)
downloadupower-d1e5f6a4dafbb5b376f06775070146f9def54407.tar.gz
Depend on stable GUdev API
The GUdev API was declared stable in udev release 147. Bump the version in the configure check and drop the G_UDEV_API_IS_SUBJECT_TO_CHANGE defines. Signed-off-by: Richard Hughes <richard@hughsie.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 1b420e1..6d71403 100644
--- a/configure.ac
+++ b/configure.ac
@@ -191,7 +191,7 @@ AC_SUBST(BACKEND, "$with_backend")
# only need GUdev on linux
have_idevice=no
if test x$with_backend = xlinux; then
- PKG_CHECK_MODULES(GUDEV, [gudev-1.0 >= 001])
+ PKG_CHECK_MODULES(GUDEV, [gudev-1.0 >= 147])
PKG_CHECK_MODULES(USB, [libusb-1.0 >= 1.0.0])
AC_ARG_WITH(idevice, AS_HELP_STRING([--without-idevice],[Build without libimobiledevice]),
with_idevice=$withval,with_idevice=yes)