diff options
| author | 2013-04-05 18:46:12 +0200 | |
|---|---|---|
| committer | 2013-04-05 18:46:12 +0200 | |
| commit | 78238523bc5aff1d699a202e82dea1f02e780fb8 (patch) | |
| tree | 9994a24fff5d025734abce5afa005125e7b92f58 /configure.ac | |
| parent | 1b26aa5876df307b051012ac56fe0bb7530e11b7 (diff) | |
| download | ideviceinstaller-78238523bc5aff1d699a202e82dea1f02e780fb8.tar.gz ideviceinstaller-78238523bc5aff1d699a202e82dea1f02e780fb8.tar.bz2 | |
Add compatibility for libimobiledevice API >= 1.1.5
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 5d5a59e..11f24b4 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -16,18 +16,22 @@ AC_PROG_LIBTOOL | |||
| 16 | 16 | ||
| 17 | # Checks for libraries. | 17 | # Checks for libraries. |
| 18 | PKG_CHECK_MODULES(libimobiledevice, libimobiledevice-1.0 >= 0.9.7) | 18 | PKG_CHECK_MODULES(libimobiledevice, libimobiledevice-1.0 >= 0.9.7) |
| 19 | PKG_CHECK_MODULES(libimobiledevice10, libimobiledevice-1.0 >= 1.0.0, libimobiledevice_1_0=yes, libimobiledevice_1_0=no) | 19 | PKG_CHECK_MODULES(libimobiledevice100, libimobiledevice-1.0 >= 1.0.0, libimobiledevice_1_0=yes, libimobiledevice_1_0=no) |
| 20 | if test x"$libimobiledevice_1_0" = xyes; then | 20 | if test x"$libimobiledevice_1_0" = xyes; then |
| 21 | AC_DEFINE([HAVE_LIBIMOBILEDEVICE_1_0], 1, [Define if libimobiledevice is using 1.0.0 API]) | 21 | AC_DEFINE([HAVE_LIBIMOBILEDEVICE_1_0], 1, [Define if libimobiledevice is using 1.0.0 API]) |
| 22 | fi | 22 | fi |
| 23 | PKG_CHECK_MODULES(libimobiledevice11, libimobiledevice-1.0 >= 1.1.0, libimobiledevice_1_1=yes, libimobiledevice_1_1=no) | 23 | PKG_CHECK_MODULES(libimobiledevice110, libimobiledevice-1.0 >= 1.1.0, libimobiledevice_1_1=yes, libimobiledevice_1_1=no) |
| 24 | if test x"$libimobiledevice_1_1" = xyes; then | 24 | if test x"$libimobiledevice_1_1" = xyes; then |
| 25 | AC_DEFINE([HAVE_LIBIMOBILEDEVICE_1_1], 1, [Define if libimobiledevice is using 1.1.0 API]) | 25 | AC_DEFINE([HAVE_LIBIMOBILEDEVICE_1_1], 1, [Define if libimobiledevice is using 1.1.0 API]) |
| 26 | fi | 26 | fi |
| 27 | PKG_CHECK_MODULES(libimobiledevice12, libimobiledevice-1.0 >= 1.1.2, libimobiledevice_1_2=yes, libimobiledevice_1_2=no) | 27 | PKG_CHECK_MODULES(libimobiledevice112, libimobiledevice-1.0 >= 1.1.2, libimobiledevice_1_2=yes, libimobiledevice_1_2=no) |
| 28 | if test x"$libimobiledevice_1_2" = xno; then | 28 | if test x"$libimobiledevice_1_2" = xno; then |
| 29 | PKG_CHECK_MODULES(libglib2, glib-2.0 >= 2.14.1) | 29 | PKG_CHECK_MODULES(libglib2, glib-2.0 >= 2.14.1) |
| 30 | fi | 30 | fi |
| 31 | PKG_CHECK_MODULES(libimobiledevice115, libimobiledevice-1.0 >= 1.1.5, libimobiledevice_1_1_5=yes, libimobiledevice_1_1_5=no) | ||
| 32 | if test x"$libimobiledevice_1_1_5" = xyes; then | ||
| 33 | AC_DEFINE([HAVE_LIBIMOBILEDEVICE_1_1_5], 1, [Define if libimobiledevice is using 1.1.5 API]) | ||
| 34 | fi | ||
| 31 | PKG_CHECK_MODULES(libplist, libplist >= 0.15) | 35 | PKG_CHECK_MODULES(libplist, libplist >= 0.15) |
| 32 | PKG_CHECK_MODULES(libzip, libzip >= 0.8) | 36 | PKG_CHECK_MODULES(libzip, libzip >= 0.8) |
| 33 | 37 | ||
