summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-12-17 15:52:34 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2017-12-17 15:52:34 -0500
commitd0bd0ed59887fdbcbe0630c23e5d1cc6a254340c (patch)
tree4444227f247f9b7cdb854144eb4332e607c34987 /include
parentMerge remote-tracking branch 'besser82/bugfix/json-c' into 0.15 (diff)
downloadsway-d0bd0ed59887fdbcbe0630c23e5d1cc6a254340c.tar.gz
sway-d0bd0ed59887fdbcbe0630c23e5d1cc6a254340c.tar.zst
sway-d0bd0ed59887fdbcbe0630c23e5d1cc6a254340c.zip
Revert "Merge remote-tracking branch 'besser82/bugfix/json-c' into 0.15"
Diffstat (limited to 'include')
-rw-r--r--include/sway_json_helper.h16
-rw-r--r--include/swaygrab/json.h2
2 files changed, 1 insertions, 17 deletions
diff --git a/include/sway_json_helper.h b/include/sway_json_helper.h
deleted file mode 100644
index 66f9cff1..00000000
--- a/include/sway_json_helper.h
+++ /dev/null
@@ -1,16 +0,0 @@
1#ifndef _SWAY_JSON_HELPER_H
2#define _SWAY_JSON_HELPER_H
3
4#include <json-c/json.h>
5
6// Macros for checking a specific version.
7#define JSON_C_VERSION_013 (13 << 8)
8
9// json-c v0.13 uses size_t for array_list_length().
10#if defined(JSON_C_VERSION_NUM) && JSON_C_VERSION_NUM >= JSON_C_VERSION_013
11typedef size_t json_ar_len_t;
12#else
13typedef int json_ar_len_t;
14#endif
15
16#endif // _SWAY_JSON_HELPER_H
diff --git a/include/swaygrab/json.h b/include/swaygrab/json.h
index c0bd8587..c1093ef1 100644
--- a/include/swaygrab/json.h
+++ b/include/swaygrab/json.h
@@ -1,4 +1,4 @@
1#include "sway_json_helper.h" 1#include <json-c/json.h>
2#include "wlc/wlc.h" 2#include "wlc/wlc.h"
3 3
4void init_json_tree(int socketfd); 4void init_json_tree(int socketfd);