diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index bd061fc..a95bc69 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,8 +1,8 @@ | |||
1 | # -*- Autoconf -*- | 1 | # -*- Autoconf -*- |
2 | # Process this file with autoconf to produce a configure script. | 2 | # Process this file with autoconf to produce a configure script. |
3 | 3 | ||
4 | AC_PREREQ(2.64) | 4 | AC_PREREQ([2.68]) |
5 | AC_INIT([libimobiledevice], [1.3.1], [https://github.com/libimobiledevice/libimobiledevice/issues],, [https://libimobiledevice.org]) | 5 | AC_INIT([libimobiledevice], [1.3.1], [https://github.com/libimobiledevice/libimobiledevice/issues], [], [https://libimobiledevice.org]) |
6 | AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip check-news]) | 6 | AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip check-news]) |
7 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) | 7 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) |
8 | AC_CONFIG_SRCDIR([src/]) | 8 | AC_CONFIG_SRCDIR([src/]) |
@@ -29,14 +29,13 @@ AC_SUBST(LIBPLIST_VERSION) | |||
29 | AC_PROG_CC | 29 | AC_PROG_CC |
30 | AC_PROG_CXX | 30 | AC_PROG_CXX |
31 | AM_PROG_CC_C_O | 31 | AM_PROG_CC_C_O |
32 | AC_PROG_LIBTOOL | 32 | LT_INIT |
33 | 33 | ||
34 | # Checks for libraries. | 34 | # Checks for libraries. |
35 | PKG_CHECK_MODULES(libusbmuxd, libusbmuxd-2.0 >= $LIBUSBMUXD_VERSION) | 35 | PKG_CHECK_MODULES(libusbmuxd, libusbmuxd-2.0 >= $LIBUSBMUXD_VERSION) |
36 | PKG_CHECK_MODULES(libplist, libplist-2.0 >= $LIBPLIST_VERSION) | 36 | PKG_CHECK_MODULES(libplist, libplist-2.0 >= $LIBPLIST_VERSION) |
37 | 37 | ||
38 | # Checks for header files. | 38 | # Checks for header files. |
39 | AC_HEADER_STDC | ||
40 | AC_CHECK_HEADERS([stdint.h stdlib.h string.h gcrypt.h]) | 39 | AC_CHECK_HEADERS([stdint.h stdlib.h string.h gcrypt.h]) |
41 | 40 | ||
42 | # Checks for typedefs, structures, and compiler characteristics. | 41 | # Checks for typedefs, structures, and compiler characteristics. |
@@ -241,7 +240,7 @@ AC_SYS_LARGEFILE | |||
241 | 240 | ||
242 | m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) | 241 | m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) |
243 | 242 | ||
244 | AC_OUTPUT([ | 243 | AC_CONFIG_FILES([ |
245 | Makefile | 244 | Makefile |
246 | common/Makefile | 245 | common/Makefile |
247 | src/Makefile | 246 | src/Makefile |
@@ -252,6 +251,7 @@ cython/Makefile | |||
252 | docs/Makefile | 251 | docs/Makefile |
253 | doxygen.cfg | 252 | doxygen.cfg |
254 | ]) | 253 | ]) |
254 | AC_OUTPUT | ||
255 | 255 | ||
256 | echo " | 256 | echo " |
257 | Configuration for $PACKAGE $VERSION: | 257 | Configuration for $PACKAGE $VERSION: |