blob: 5b2eea3d373224b7c9d8e339566454d0963da567 [file] [log] [blame]
Michael Clark4504df72007-03-13 08:26:20 +00001AC_PREREQ(2.52)
2
3# Process this file with autoconf to produce a configure script.
Eric Haszlakiewicz781798c2012-03-31 23:17:31 -05004AC_INIT([json-c], 0.10, [json-c@googlegroups.com])
Michael Clark4504df72007-03-13 08:26:20 +00005
6AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
7
Eric Haszlakiewicz1e89ba62012-04-22 10:27:50 -05008AC_PROG_MAKE_SET
9
Eric Haszlakiewicz075b7832012-07-29 17:48:22 -050010AC_ARG_ENABLE(oldname-compat,
11 AS_HELP_STRING([--disable-oldname-compat],
12 [Don't include the old libjson.so library and include/json directory.]),
13[],
14[enable_oldname_compat=yes]
15)
16AM_CONDITIONAL(ENABLE_OLDNAME_COMPAT, [test "x${enable_oldname_compat}" != "xno"])
17
Michael Clark4504df72007-03-13 08:26:20 +000018# Checks for programs.
19
20# Checks for libraries.
21
22# Checks for header files.
23AM_CONFIG_HEADER(config.h)
Eric Haszlakiewiczb21b1372012-02-15 20:44:54 -060024AM_CONFIG_HEADER(json_config.h)
Michael Clark4504df72007-03-13 08:26:20 +000025AC_HEADER_STDC
Eric Haszlakiewiczeb370942012-07-29 14:57:59 -050026AC_CHECK_HEADERS(fcntl.h limits.h strings.h syslog.h unistd.h [sys/cdefs.h] [sys/param.h] stdarg.h)
Eric Haszlakiewiczb21b1372012-02-15 20:44:54 -060027AC_CHECK_HEADER(inttypes.h,[AC_DEFINE([JSON_C_HAVE_INTTYPES_H],[1],[Public define for json_inttypes.h])])
Michael Clark4504df72007-03-13 08:26:20 +000028
29# Checks for typedefs, structures, and compiler characteristics.
30AC_C_CONST
31AC_TYPE_SIZE_T
32
33# Checks for library functions.
34AC_FUNC_VPRINTF
35AC_FUNC_MEMCMP
36AC_FUNC_MALLOC
37AC_FUNC_REALLOC
Mateusz Loskot984303d2012-06-19 20:15:44 +010038AC_CHECK_FUNCS(strcasecmp strdup strndup strerror snprintf vsnprintf vasprintf open vsyslog strncasecmp)
Michael Clark4504df72007-03-13 08:26:20 +000039
40AM_PROG_LIBTOOL
41
Eric Haszlakiewicz1e89ba62012-04-22 10:27:50 -050042AC_CONFIG_FILES([
Michael Clark4504df72007-03-13 08:26:20 +000043Makefile
Eric Haszlakiewicz1f9d1992012-07-29 18:25:09 -050044json.pc
Keith Derrick30dd3672012-03-30 12:28:32 -070045json-c.pc
Eric Haszlakiewicz1e89ba62012-04-22 10:27:50 -050046tests/Makefile
Eric Haszlakiewicz1f9d1992012-07-29 18:25:09 -050047json-c-uninstalled.pc
Michael Clark4504df72007-03-13 08:26:20 +000048])
Eric Haszlakiewicz1e89ba62012-04-22 10:27:50 -050049
50AC_OUTPUT
51