summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2008-12-13 12:21:03 +0100
committerGravatar Jonathan Beck2008-12-13 12:21:03 +0100
commit3fdd24aea06a9bf38d9d34fb8bccbb7023ed3100 (patch)
tree1080d26eca01c885efb33f3f98821a981a25e8b4 /configure.ac
parent3d8ba053deeacd74e621469d3d45d1db38ee411a (diff)
downloadlibplist-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.ac25
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
4AC_PREREQ(2.61) 4AC_PREREQ(2.61)
5AC_INIT(libiphone, 0.1.0, nospam@nowhere.com) 5AC_INIT(libplist, 0.1.0, nospam@nowhere.com)
6AM_INIT_AUTOMAKE(libiphone, 0.1.0) 6AM_INIT_AUTOMAKE(libplist, 0.1.0)
7AC_CONFIG_SRCDIR([src/]) 7AC_CONFIG_SRCDIR([src/])
8AC_CONFIG_HEADER([config.h]) 8AC_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.
17PKG_CHECK_MODULES(libxml2, libxml-2.0 >= 2.6.30) 17PKG_CHECK_MODULES(libxml2, libxml-2.0 >= 2.6.30)
18PKG_CHECK_MODULES(libusb, libusb >= 0.1.12)
19PKG_CHECK_MODULES(libglib2, glib-2.0 >= 2.14.1) 18PKG_CHECK_MODULES(libglib2, glib-2.0 >= 2.14.1)
20PKG_CHECK_MODULES(libgthread2, gthread-2.0 >= 2.14.1)
21PKG_CHECK_MODULES(libgnutls, gnutls >= 1.6.3 gnutls <= 2.5.0 )
22PKG_CHECK_MODULES(libtasn1, libtasn1 >= 1.1)
23 19
24# Checks for header files. 20# Checks for header files.
25AC_HEADER_STDC 21AC_HEADER_STDC
26AC_CHECK_HEADERS([arpa/inet.h stdint.h stdlib.h string.h]) 22AC_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.
29AC_C_CONST 25AC_C_CONST
@@ -31,6 +27,7 @@ AC_TYPE_SIZE_T
31AC_TYPE_SSIZE_T 27AC_TYPE_SSIZE_T
32AC_TYPE_UINT16_T 28AC_TYPE_UINT16_T
33AC_TYPE_UINT32_T 29AC_TYPE_UINT32_T
30AC_TYPE_UINT64_T
34AC_TYPE_UINT8_T 31AC_TYPE_UINT8_T
35 32
36# Checks for library functions. 33# Checks for library functions.
@@ -38,18 +35,6 @@ AC_FUNC_MALLOC
38AC_FUNC_REALLOC 35AC_FUNC_REALLOC
39AC_CHECK_FUNCS([strcasecmp strdup strerror strndup]) 36AC_CHECK_FUNCS([strcasecmp strdup strerror strndup])
40 37
41AC_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])
46if test "$build_dev_tools" = true; then
47 DEV_SUB=dev
48else
49 DEV_SUB=
50fi
51AC_SUBST([DEV_SUB])
52
53AC_ARG_ENABLE([debug-code], 38AC_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])
60fi 45fi
61 46
62AC_OUTPUT(Makefile src/Makefile include/Makefile fdi/Makefile dev/Makefile libiphone-1.0.pc) 47AC_OUTPUT(Makefile src/Makefile include/Makefile libplist-1.0.pc)