mirror of
https://github.com/json-c/json-c.git
synced 2026-03-20 21:49:07 +08:00
* fix type passed to printbuf_memappend in json_tokener
* update autotools bootstrap instructions in README
Michael Clark <michael@metaparadigm.com>
git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@6 327403b1-1117-474d-bef2-5cb71233fd97
25 lines
437 B
Plaintext
25 lines
437 B
Plaintext
Building on Unix with gcc and autotools
|
|
|
|
If checking out from CVS:
|
|
|
|
aclocal-1.6
|
|
libtoolize --copy
|
|
autoheader
|
|
automake-1.6 --add-missing --copy
|
|
autoconf
|
|
|
|
Then configure, make, make install
|
|
|
|
|
|
Test programs
|
|
|
|
To build 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)
|