summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Loïc Minier2013-09-02 01:11:05 +0200
committerGravatar Loïc Minier2013-09-02 01:11:05 +0200
commit2f4910a684505d9b7e4a65a472b40b0280bdd5c7 (patch)
treedebef6e96ad54901d86de313c80171beb2c39f10
parent04d2c84beb3f85048d4d40a0b3526debb333f7e7 (diff)
downloadifuse-2f4910a684505d9b7e4a65a472b40b0280bdd5c7.tar.gz
ifuse-2f4910a684505d9b7e4a65a472b40b0280bdd5c7.tar.bz2
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 <lool@dooz.org>
-rw-r--r--configure.ac4
1 files 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