mirror of
https://github.com/json-c/json-c.git
synced 2026-03-20 13:39:06 +08:00
* Add ifdef C++ extern "C" to headers
* Use simpler definition of min and max in bits.h
Larry Lansing, llansing at fuzzynerd dot com
* Remove automake 1.6 requirement
* Move autogen commands into autogen.sh. Update README
* Remove error pointer special case for Windows
* Change license from LGPL to MIT
Michael Clark <michael@metaparadigm.com>
git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@10 327403b1-1117-474d-bef2-5cb71233fd97
21 lines
363 B
Plaintext
21 lines
363 B
Plaintext
Building on Unix with gcc and autotools
|
|
|
|
If checking out from CVS:
|
|
|
|
sh autogen.sh
|
|
|
|
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)
|