• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..23-Dec-2011-

AUTHORSH A D13-Dec-200684 32

COPYINGH A D13-Dec-20061 KiB1915

ChangeLogH A D13-Dec-20062.3 KiB5649

DoxyfileH A D13-Dec-200646.2 KiB1,154815

INSTALLH A D13-Dec-20069 KiB230175

Makefile.amH A D13-Dec-2006640 3728

Makefile.inH A D13-Dec-200615.1 KiB534413

NEWSH A D13-Dec-20065 21

READMEH A D13-Dec-2006363 2110

aclocal.m4H A D30-Jul-2008262.1 KiB7,3826,682

arraylist.cH A D13-Dec-20062 KiB9470

arraylist.hH A D13-Dec-2006924 4624

autogen.shH A D13-Dec-200634 21

bits.hH A D13-Dec-2006641 2812

config.guessH A D30-Jul-200842.8 KiB1,4661,268

config.h.inH A D13-Dec-20063 KiB11879

config.h.win32H A D13-Dec-20062.7 KiB9567

config.subH A D30-Jul-200830.8 KiB1,5701,429

configureH A D30-Jul-2008666.6 KiB20,60516,497

configure.inH A D13-Dec-2006726 3424

debug.cH A D30-Jul-20081.6 KiB9570

debug.hH A D13-Dec-2006630 2510

depcompH A D30-Jul-200811.8 KiB424278

install-shH A D13-Dec-20066.2 KiB270153

json-c.vcprojH A D13-Dec-20063.9 KiB180179

json.hH A D13-Dec-2006573 3216

json.pc.inH A D13-Dec-2006217 1210

json_object.cH A D13-Dec-200611.9 KiB505398

json_object.hH A D13-Dec-20069.7 KiB31166

json_object_private.hH A D13-Dec-20061 KiB4528

json_tokener.cH A D13-Dec-200611.5 KiB466414

json_tokener.hH A D13-Dec-20061.6 KiB6446

json_util.cH A D13-Dec-20062.7 KiB12290

json_util.hH A D13-Dec-2006585 247

linkhash.cH A D30-Jul-20084.6 KiB218168

linkhash.hH A D13-Dec-20065.6 KiB26254

ltmain.shH A D30-Jul-2008179.7 KiB6,4275,058

missingH A D30-Jul-200810 KiB337263

mkinstalldirsH A D13-Dec-20061.8 KiB10072

printbuf.cH A D13-Dec-20063.2 KiB145107

printbuf.hH A D13-Dec-2006717 3919

stamp-h.inH A D13-Dec-200610 21

test1.cH A D13-Dec-20065.2 KiB138107

test2.cH A D13-Dec-2006756 2013

README

1Building on Unix with gcc and autotools
2
3If checking out from CVS:
4
5	sh autogen.sh
6
7Then configure, make, make install
8
9
10Test programs
11
12To build the test programs run 'make check'
13
14
15Linking to libjson
16
17If your system has pkgconfig then you can just add this to your makefile
18
19CFLAGS += $(shell pkg-config --cflags json)
20LDFLAGS += $(shell pkg-config --libs json)
21