X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=configure.ac;h=3191d8acebe1001ed53f525bb96f9a5cfc5d9630;hb=6e3ca5c45c984a27d0f5c9b9249e17ef0c412e3a;hp=1bda9de26e49450cc01866919f0c7dff2f6c3ef6;hpb=aeb5b481c95c6bd71e3025a7965861ab82a643b8;p=jansson.git diff --git a/configure.ac b/configure.ac index 1bda9de..3191d8a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ -AC_PREREQ([2.59]) -AC_INIT([jansson], [1.1.3], [petri@digip.org]) +AC_PREREQ([2.60]) +AC_INIT([jansson], [1.3], [petri@digip.org]) AM_INIT_AUTOMAKE([1.10 foreign]) @@ -15,6 +15,15 @@ AC_PROG_LIBTOOL # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. +AC_TYPE_INT32_T + +AC_C_INLINE +case $ac_cv_c_inline in + yes) json_inline=inline;; + no) json_inline=;; + *) json_inline=$ac_cv_c_inline;; +esac +AC_SUBST([json_inline]) # Checks for library functions. @@ -23,8 +32,10 @@ AC_CONFIG_FILES([ Makefile doc/Makefile src/Makefile + src/jansson.h test/Makefile - test/testdata/Makefile - test/testprogs/Makefile + test/bin/Makefile + test/suites/Makefile + test/suites/api/Makefile ]) AC_OUTPUT