From 7695ea2643456ab0c837f958cc484d26529e1098 Mon Sep 17 00:00:00 2001 From: "David M. Lee" Date: Fri, 11 Jan 2013 22:31:42 +0000 Subject: Add JSON API for Asterisk. This provides a JSON API by pulling in and wrapping the Jansson JSON library[1]. The Asterisk API basically mirrors the Jansson functionality, with a few minor tweaks. * Some names have been asteriskified to protect the innocent. * Jansson provides both reference-stealing and reference-borrowing versions of several API's. The Asterisk API is exclusively reference-stealing for operations that put elements into arrays and objects. * No support for doubles, since we usually don't need that. * Coming along for the ride is the ast_test_validate macro, which made the unit tests much easier to write. [1]: http://www.digip.org/jansson/ (issue ASTERISK-20887) (closes issue ASTERISK-20888) Review: https://reviewboard.asterisk.org/r/2264/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@378915 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/autoconfig.h.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/asterisk/autoconfig.h.in') diff --git a/include/asterisk/autoconfig.h.in b/include/asterisk/autoconfig.h.in index 07ea75249..52e96c08a 100644 --- a/include/asterisk/autoconfig.h.in +++ b/include/asterisk/autoconfig.h.in @@ -364,6 +364,9 @@ /* Define to 1 if you have the Jack Audio Connection Kit library. */ #undef HAVE_JACK +/* Define to 1 if you have the Jansson JSON library library. */ +#undef HAVE_JANSSON + /* Define to 1 if you have the `kevent64' function. */ #undef HAVE_KEVENT64 -- cgit v1.2.3