From 2f4910a684505d9b7e4a65a472b40b0280bdd5c7 Mon Sep 17 00:00:00 2001 From: Loïc Minier Date: Mon, 2 Sep 2013 01:11:05 +0200 Subject: Use PKG_CHECK_EXISTS() and not PKG_CHECK_MODULES() PKG_CHECK_MODULES() defines a bunch of variables and might use cached information if the same name is used multiple times. Use the more correct PKG_CHECK_EXISTS(). Signed-off-by: Loïc Minier --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index bccf0b2..29e552e 100644 --- a/configure.ac +++ b/configure.ac @@ -13,11 +13,11 @@ AM_PROG_CC_C_O # Checks for libraries. PKG_CHECK_MODULES(libimobiledevice, libimobiledevice-1.0 >= 1.0.0) -PKG_CHECK_MODULES(libimobiledevice11, libimobiledevice-1.0 >= 1.1.0, libimobiledevice_1_1=yes, libimobiledevice_1_1=no) +PKG_CHECK_EXISTS(libimobiledevice-1.0 >= 1.1.0, libimobiledevice_1_1=yes, libimobiledevice_1_1=no) if test x"$libimobiledevice_1_1" = xyes; then AC_DEFINE([HAVE_LIBIMOBILEDEVICE_1_1], 1, [Define if libimobiledevice is using 1.1.0 API]) fi -PKG_CHECK_MODULES(libimobiledevice15, libimobiledevice-1.0 >= 1.1.5, libimobiledevice_1_1_5=yes, libimobiledevice_1_1_5=no) +PKG_CHECK_EXISTS(libimobiledevice-1.0 >= 1.1.5, libimobiledevice_1_1_5=yes, libimobiledevice_1_1_5=no) if test x"$libimobiledevice_1_1_5" = xyes; then AC_DEFINE([HAVE_LIBIMOBILEDEVICE_1_1_5], 1, [Define if libimobiledevice is using 1.1.5 API]) fi -- cgit v1.1-32-gdbae