]> granicus.if.org Git - icinga2/commit
Replace cJSON with YAJL
authorGunnar Beutner <gunnar@beutner.name>
Sun, 26 Oct 2014 18:59:49 +0000 (19:59 +0100)
committerGunnar Beutner <gunnar@beutner.name>
Sun, 26 Oct 2014 19:00:35 +0000 (20:00 +0100)
commit755927335989edaf23a8a48ebf6c25a89eb5c5d0
tree74bc2e453d058bfbc02982b1d3dc4ff68f630e20
parentdd0a2ab59085cfc0d9733d438dd40caed49e5bee
Replace cJSON with YAJL

fixes #7452
66 files changed:
lib/base/CMakeLists.txt
lib/base/array.cpp
lib/base/array.hpp
lib/base/dictionary.cpp
lib/base/dictionary.hpp
lib/base/dynamicobject.cpp
lib/base/dynamicobject.hpp
lib/base/json.cpp [new file with mode: 0644]
lib/base/json.hpp [new file with mode: 0644]
lib/base/scriptutils.cpp
lib/base/scriptvariable.cpp
lib/base/serializer.cpp
lib/base/serializer.hpp
lib/base/type.hpp
lib/base/value.cpp
lib/base/value.hpp
lib/cli/agentutility.cpp
lib/cli/objectlistcommand.cpp
lib/cli/repositoryutility.cpp
lib/cli/variablegetcommand.cpp
lib/cli/variablelistcommand.cpp
lib/config/configitem.cpp
lib/config/expression.cpp
lib/icinga/apievents.cpp
lib/icinga/host.cpp
lib/icinga/icingastatuswriter.cpp
lib/livestatus/livestatusquery.cpp
lib/remote/apilistener.cpp
lib/remote/jsonrpc.cpp
test/CMakeLists.txt
test/base-array.cpp
test/base-dictionary.cpp
test/base-json.cpp [new file with mode: 0644]
third-party/CMakeLists.txt
third-party/cJSON/CMakeLists.txt [deleted file]
third-party/cJSON/cJSON.c [deleted file]
third-party/cJSON/cJSON.h [deleted file]
third-party/yajl/.gitignore [new file with mode: 0644]
third-party/yajl/BUILDING [new file with mode: 0644]
third-party/yajl/BUILDING.win32 [new file with mode: 0644]
third-party/yajl/CMakeLists.txt [new file with mode: 0644]
third-party/yajl/COPYING [new file with mode: 0644]
third-party/yajl/ChangeLog [new file with mode: 0644]
third-party/yajl/README [new file with mode: 0644]
third-party/yajl/TODO [new file with mode: 0644]
third-party/yajl/src/CMakeLists.txt [new file with mode: 0644]
third-party/yajl/src/api/yajl_common.h [new file with mode: 0644]
third-party/yajl/src/api/yajl_gen.h [new file with mode: 0644]
third-party/yajl/src/api/yajl_parse.h [new file with mode: 0644]
third-party/yajl/src/api/yajl_tree.h [new file with mode: 0644]
third-party/yajl/src/api/yajl_version.h.cmake [new file with mode: 0644]
third-party/yajl/src/yajl.c [new file with mode: 0644]
third-party/yajl/src/yajl_alloc.c [new file with mode: 0644]
third-party/yajl/src/yajl_alloc.h [new file with mode: 0644]
third-party/yajl/src/yajl_buf.c [new file with mode: 0644]
third-party/yajl/src/yajl_buf.h [new file with mode: 0644]
third-party/yajl/src/yajl_bytestack.h [new file with mode: 0644]
third-party/yajl/src/yajl_encode.c [new file with mode: 0644]
third-party/yajl/src/yajl_encode.h [new file with mode: 0644]
third-party/yajl/src/yajl_gen.c [new file with mode: 0644]
third-party/yajl/src/yajl_lex.c [new file with mode: 0644]
third-party/yajl/src/yajl_lex.h [new file with mode: 0644]
third-party/yajl/src/yajl_parser.c [new file with mode: 0644]
third-party/yajl/src/yajl_parser.h [new file with mode: 0644]
third-party/yajl/src/yajl_tree.c [new file with mode: 0644]
third-party/yajl/src/yajl_version.c [new file with mode: 0644]