X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=configure.ac;h=0774c03de530c9c7009aa81f908fbca0b2c0a3ea;hb=024106bbfbd7376656876aa8bd00a333d5ada10c;hp=1a6f7e7b5b271efd1814ed7e578746f29c31d749;hpb=842bc2128b70e5390cacf83a24375cd5c0d0341c;p=jansson.git diff --git a/configure.ac b/configure.ac index 1a6f7e7..0774c03 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ -AC_PREREQ([2.59]) -AC_INIT([jansson], [1.1.2], [petri@digip.org]) +AC_PREREQ([2.60]) +AC_INIT([jansson], [1.2], [petri@digip.org]) AM_INIT_AUTOMAKE([1.10 foreign]) @@ -15,15 +15,27 @@ 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. AC_CONFIG_FILES([ + jansson.pc 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