C
Shell
Latest commit
276123e
May 26, 2011
Patch via Nikola Pajkovsky git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@75 327403b1-1117-474d-bef2-5cb71233fd97
Permalink
| Failed to load latest commit information. | |||
|
|
.gitignore |
|
|
|
|
AUTHORS |
|
|
|
|
COPYING |
|
|
|
|
ChangeLog |
|
|
|
|
Doxyfile |
|
|
|
|
INSTALL |
|
|
|
|
Makefile.am |
|
|
|
|
NEWS |
|
|
|
|
README |
|
|
|
|
README-WIN32.html |
|
|
|
|
README.html |
|
|
|
|
arraylist.c |
|
|
|
|
arraylist.h |
|
|
|
|
autogen.sh |
|
|
|
|
bits.h |
|
|
|
|
config.h.in |
|
|
|
|
config.h.win32 |
|
|
|
|
configure.in |
|
|
|
|
debug.c |
|
|
|
|
debug.h |
|
|
|
|
json-c.vcproj |
|
|
|
|
json.h |
|
|
|
|
json.pc.in |
|
|
|
|
json_inttypes.h |
|
|
|
|
json_object.c |
|
|
|
|
json_object.h |
|
|
|
|
json_object_private.h |
|
|
|
|
json_tokener.c |
|
|
|
|
json_tokener.h |
|
|
|
|
json_util.c |
|
|
|
|
json_util.h |
|
|
|
|
linkhash.c |
|
|
|
|
linkhash.h |
|
|
|
|
parse_int64.test |
|
|
|
|
printbuf.c |
|
|
|
|
printbuf.h |
|
|
|
|
test-defs.sh |
|
|
|
|
test1.c |
|
|
|
|
test1.expected |
|
|
|
|
test1.test |
|
|
|
|
test2.c |
|
|
|
|
test2.expected |
|
|
|
|
test2.test |
|
|
|
|
test4.c |
|
|
|
|
test4.expected |
|
|
|
|
test4.test |
|
|
|
|
test_cast.c |
|
|
|
|
test_cast.expected |
|
|
|
|
test_cast.test |
|
|
|
|
test_null.c |
|
|
|
|
test_null.expected |
|
|
|
|
test_null.test |
|
|
|
|
test_parse_int64.c |
|
|
|
|
test_parse_int64.expected |
|
|
README
Building on Unix with gcc and autotools Home page for json-c: http://oss.metaparadigm.com/json-c/ If checking out from SVN (http://svn.metaparadigm.com/svn/json-c/trunk) or Git (https://github.com/jehiah/json-c): $ sh autogen.sh Then $ ./configure $ make $ make install To build and run the test programs run $ make check Linking to libjson If your system has pkgconfig then you can just add this to your makefile CFLAGS += $(shell pkg-config --cflags json) LDFLAGS += $(shell pkg-config --libs json)