aboutsummaryrefslogtreecommitdiffstats
path: root/swaybar/ipc.c
diff options
context:
space:
mode:
authorLibravatar Jan Beich <jbeich@FreeBSD.org>2019-01-23 18:00:14 +0000
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-01-23 21:50:06 -0500
commitba96983bf0f10051de35bcc3def0d542d924bb9f (patch)
treef2ce175495292521d5c499893364763be0267f88 /swaybar/ipc.c
parentMerge pull request #3504 from unraised/unraised-build-fix (diff)
downloadsway-ba96983bf0f10051de35bcc3def0d542d924bb9f.tar.gz
sway-ba96983bf0f10051de35bcc3def0d542d924bb9f.tar.zst
sway-ba96983bf0f10051de35bcc3def0d542d924bb9f.zip
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 'swaybar/ipc.c')
-rw-r--r--swaybar/ipc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/ipc.c b/swaybar/ipc.c
index bf1d0f43..1cc55b43 100644
--- a/swaybar/ipc.c
+++ b/swaybar/ipc.c
@@ -3,7 +3,7 @@
3#include <stdio.h> 3#include <stdio.h>
4#include <string.h> 4#include <string.h>
5#include <strings.h> 5#include <strings.h>
6#include <json-c/json.h> 6#include <json.h>
7#include "swaybar/config.h" 7#include "swaybar/config.h"
8#include "swaybar/ipc.h" 8#include "swaybar/ipc.h"
9#include "config.h" 9#include "config.h"