diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2019-01-23 18:00:14 +0000 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2019-01-23 18:00:14 +0000 |
| commit | f1c1d615e45bd34e6c5ce43f228366cdf8b519da (patch) | |
| tree | f2ce175495292521d5c499893364763be0267f88 /swaymsg/main.c | |
| parent | 514f510e291ccf6fb50b1b83b5ecbaa7cb02b59a (diff) | |
Make json-c include respect pkg-config --cflags
json-c.pc contains `Cflags: -I${includedir}/json-c`, so `<json-c/json.h>`
won't be found unless the parent directory is searched by default.
Diffstat (limited to 'swaymsg/main.c')
| -rw-r--r-- | swaymsg/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c index 2b49f9b9..c84f5671 100644 --- a/swaymsg/main.c +++ b/swaymsg/main.c @@ -9,7 +9,7 @@ #include <sys/socket.h> #include <ctype.h> #include <unistd.h> -#include <json-c/json.h> +#include <json.h> #include "stringop.h" #include "ipc-client.h" #include "log.h" |
