389e1470a5
* configure.ac: * clutter/Makefile.am: Do not build the internal JSON-GLib copy if there is a system installed one. * clutter/clutter-json.h: Remove. * clutter/clutter-json.h.in: Template for the clutter-json.h header file, used to opaquely include the JSON-GLib types.
14 lines
369 B
C
14 lines
369 B
C
#ifndef __CLUTTER_JSON_H__
|
|
#define __CLUTTER_JSON_H__
|
|
|
|
/* Include json-glib types opaquely, so that we can swap out
|
|
* the internal copy of JSON-GLib with the installed one
|
|
* without changing the other headers.
|
|
*/
|
|
|
|
#include "@JSON_PREFIX@/json-types.h"
|
|
#include "@JSON_PREFIX@/json-parser.h"
|
|
#include "@JSON_PREFIX@/json-generator.h"
|
|
|
|
#endif /* __CLUTTER_JSON_H__ */
|