6fcf5c1820
JSON-GLib moved to a single include scheme, so we should only include json-glib.h. If we use the internal copy it doesn't matter, since the header does the right thing.
12 lines
287 B
C
12 lines
287 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-glib.h"
|
|
|
|
#endif /* __CLUTTER_JSON_H__ */
|