| commit | 9e0ea615cc1a71830dbac04c808458dcf7415279 | [log] [tgz] |
|---|---|---|
| author | Karsten Tausche <karsten@fairphone.com> | Thu Sep 15 13:51:51 2022 +0200 |
| committer | Bharath <bharath@teamb58.org> | Sat Nov 23 11:21:56 2024 +0530 |
| tree | 845e067f226e3b82c2c09ddfe0fff3d674891931 | |
| parent | 8d46a3c691776bcda7ad0e55c481b41d41235e33 [diff] |
Explicitly mark unused parameters to resolve warnings Reduce log spam during build. Issue: FP4-A14#5 Change-Id: Id0734c3a5bc08f728ca868a5a18375d8fc16bae6
json-cgit, gcc and autotoolsHome page for json-c: https://github.com/json-c/json-c/wiki
Caution: do NOT use sources from svn.metaparadigm.com, they are old.
Prerequisites:
gcc, clang, or another C compilerlibtoolIf you're not using a release tarball, you'll also need:
autoconf (autoreconf)automakeMake sure you have a complete libtool install, including libtoolize.
json-c GitHub repo: https://github.com/json-c/json-c
$ git clone https://github.com/json-c/json-c.git $ cd json-c $ sh autogen.sh
followed by
$ ./configure $ make $ make install
To build and run the test programs:
$ make check
libjson-cIf your system has pkgconfig, then you can just add this to your makefile:
CFLAGS += $(shell pkg-config --cflags json-c) LDFLAGS += $(shell pkg-config --libs json-c)
Without pkgconfig, you would do something like this:
JSON_C_DIR=/path/to/json_c/install CFLAGS += -I$(JSON_C_DIR)/include/json-c LDFLAGS+= -L$(JSON_C_DIR)/lib -ljson-c