diff options
| author | 2008-12-13 12:21:03 +0100 | |
|---|---|---|
| committer | 2008-12-13 12:21:03 +0100 | |
| commit | 3fdd24aea06a9bf38d9d34fb8bccbb7023ed3100 (patch) | |
| tree | 1080d26eca01c885efb33f3f98821a981a25e8b4 /configure.ac | |
| parent | 3d8ba053deeacd74e621469d3d45d1db38ee411a (diff) | |
| download | libplist-3fdd24aea06a9bf38d9d34fb8bccbb7023ed3100.tar.gz libplist-3fdd24aea06a9bf38d9d34fb8bccbb7023ed3100.tar.bz2 | |
Fork libiphone and remove anything non plist specific.
Update library and make related files acordingly .
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/configure.ac b/configure.ac index 286b1d8..a665182 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -2,8 +2,8 @@ | |||
| 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.61) | 4 | AC_PREREQ(2.61) |
| 5 | AC_INIT(libiphone, 0.1.0, nospam@nowhere.com) | 5 | AC_INIT(libplist, 0.1.0, nospam@nowhere.com) |
| 6 | AM_INIT_AUTOMAKE(libiphone, 0.1.0) | 6 | AM_INIT_AUTOMAKE(libplist, 0.1.0) |
| 7 | AC_CONFIG_SRCDIR([src/]) | 7 | AC_CONFIG_SRCDIR([src/]) |
| 8 | AC_CONFIG_HEADER([config.h]) | 8 | AC_CONFIG_HEADER([config.h]) |
| 9 | 9 | ||
| @@ -15,15 +15,11 @@ AM_PROG_CC_C_O | |||
| 15 | 15 | ||
| 16 | # Checks for libraries. | 16 | # Checks for libraries. |
| 17 | PKG_CHECK_MODULES(libxml2, libxml-2.0 >= 2.6.30) | 17 | PKG_CHECK_MODULES(libxml2, libxml-2.0 >= 2.6.30) |
| 18 | PKG_CHECK_MODULES(libusb, libusb >= 0.1.12) | ||
| 19 | PKG_CHECK_MODULES(libglib2, glib-2.0 >= 2.14.1) | 18 | PKG_CHECK_MODULES(libglib2, glib-2.0 >= 2.14.1) |
| 20 | PKG_CHECK_MODULES(libgthread2, gthread-2.0 >= 2.14.1) | ||
| 21 | PKG_CHECK_MODULES(libgnutls, gnutls >= 1.6.3 gnutls <= 2.5.0 ) | ||
| 22 | PKG_CHECK_MODULES(libtasn1, libtasn1 >= 1.1) | ||
| 23 | 19 | ||
| 24 | # Checks for header files. | 20 | # Checks for header files. |
| 25 | AC_HEADER_STDC | 21 | AC_HEADER_STDC |
| 26 | AC_CHECK_HEADERS([arpa/inet.h stdint.h stdlib.h string.h]) | 22 | AC_CHECK_HEADERS([stdint.h stdlib.h string.h]) |
| 27 | 23 | ||
| 28 | # Checks for typedefs, structures, and compiler characteristics. | 24 | # Checks for typedefs, structures, and compiler characteristics. |
| 29 | AC_C_CONST | 25 | AC_C_CONST |
| @@ -31,6 +27,7 @@ AC_TYPE_SIZE_T | |||
| 31 | AC_TYPE_SSIZE_T | 27 | AC_TYPE_SSIZE_T |
| 32 | AC_TYPE_UINT16_T | 28 | AC_TYPE_UINT16_T |
| 33 | AC_TYPE_UINT32_T | 29 | AC_TYPE_UINT32_T |
| 30 | AC_TYPE_UINT64_T | ||
| 34 | AC_TYPE_UINT8_T | 31 | AC_TYPE_UINT8_T |
| 35 | 32 | ||
| 36 | # Checks for library functions. | 33 | # Checks for library functions. |
| @@ -38,18 +35,6 @@ AC_FUNC_MALLOC | |||
| 38 | AC_FUNC_REALLOC | 35 | AC_FUNC_REALLOC |
| 39 | AC_CHECK_FUNCS([strcasecmp strdup strerror strndup]) | 36 | AC_CHECK_FUNCS([strcasecmp strdup strerror strndup]) |
| 40 | 37 | ||
| 41 | AC_ARG_ENABLE([dev-tools], | ||
| 42 | [AS_HELP_STRING([--enable-dev-tools], | ||
| 43 | [build development helper tools (default is no)])], | ||
| 44 | [build_dev_tools=true], | ||
| 45 | [build_dev_tools=false]) | ||
| 46 | if test "$build_dev_tools" = true; then | ||
| 47 | DEV_SUB=dev | ||
| 48 | else | ||
| 49 | DEV_SUB= | ||
| 50 | fi | ||
| 51 | AC_SUBST([DEV_SUB]) | ||
| 52 | |||
| 53 | AC_ARG_ENABLE([debug-code], | 38 | AC_ARG_ENABLE([debug-code], |
| 54 | [AS_HELP_STRING([--disable-debug-code], | 39 | [AS_HELP_STRING([--disable-debug-code], |
| 55 | [disable debug message reporting in library (default is yes)])], | 40 | [disable debug message reporting in library (default is yes)])], |
| @@ -59,4 +44,4 @@ if test "$no_debug_code" = true; then | |||
| 59 | AC_DEFINE(STRIP_DEBUG_CODE,1,[Strip debug reporting code]) | 44 | AC_DEFINE(STRIP_DEBUG_CODE,1,[Strip debug reporting code]) |
| 60 | fi | 45 | fi |
| 61 | 46 | ||
| 62 | AC_OUTPUT(Makefile src/Makefile include/Makefile fdi/Makefile dev/Makefile libiphone-1.0.pc) | 47 | AC_OUTPUT(Makefile src/Makefile include/Makefile libplist-1.0.pc) |
