diff options
author | Loïc Minier | 2013-09-02 01:06:37 +0200 |
---|---|---|
committer | Loïc Minier | 2013-09-02 01:06:37 +0200 |
commit | 04d2c84beb3f85048d4d40a0b3526debb333f7e7 (patch) | |
tree | f995530735b0d08951a1b72ca3f9416d0a827af7 | |
parent | 9ac32aa3cb2ed5242c0fe3c58ef5f571bf2b95d7 (diff) | |
download | ifuse-04d2c84beb3f85048d4d40a0b3526debb333f7e7.tar.gz ifuse-04d2c84beb3f85048d4d40a0b3526debb333f7e7.tar.bz2 |
Fix name of PKG_CHECK_MODULES test for limd 1.1.5
The result of the second PKG_CHECK_MODULES(libimobiledevice11, ...) was
read out of cache and succeeded on systems with libimobiledevice-1.0 >=
1.1.0 but << 1.5.0. Giving it another unused name fixes this.
Signed-off-by: Loïc Minier <lool@dooz.org>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ca518ff..bccf0b2 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ PKG_CHECK_MODULES(libimobiledevice11, libimobiledevice-1.0 >= 1.1.0, libimobiled 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(libimobiledevice11, libimobiledevice-1.0 >= 1.1.5, libimobiledevice_1_1_5=yes, libimobiledevice_1_1_5=no) +PKG_CHECK_MODULES(libimobiledevice15, 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 |