aboutsummaryrefslogtreecommitdiffstats
path: root/sway/ipc-server.c
diff options
context:
space:
mode:
authorLibravatar Johannes Lundberg <johalun0@gmail.com>2017-10-14 19:39:15 +0200
committerLibravatar Johannes Lundberg <johalun0@gmail.com>2017-10-14 20:38:33 +0200
commit5a63f0f57b056a92dcc9c596d7c4856322df52d0 (patch)
treeafb3a3da668599b4d1d20a5a860a038c84ce88ff /sway/ipc-server.c
parentMerge pull request #1395 from Zer0-One/master (diff)
downloadsway-5a63f0f57b056a92dcc9c596d7c4856322df52d0.tar.gz
sway-5a63f0f57b056a92dcc9c596d7c4856322df52d0.tar.zst
sway-5a63f0f57b056a92dcc9c596d7c4856322df52d0.zip
Fix build on FreeBSD adjusting/removing _XOPEN_SOURCE declaration.
Diffstat (limited to 'sway/ipc-server.c')
-rw-r--r--sway/ipc-server.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index 4ce2b7eb..b560b930 100644
--- a/sway/ipc-server.c
+++ b/sway/ipc-server.c
@@ -1,6 +1,10 @@
1// See https://i3wm.org/docs/ipc.html for protocol information 1// See https://i3wm.org/docs/ipc.html for protocol information
2 2
3#ifndef __FreeBSD__
4// Any value will hide SOCK_CLOEXEC on FreeBSD (__BSD_VISIBLE=0)
3#define _XOPEN_SOURCE 700 5#define _XOPEN_SOURCE 700
6#endif
7
4#include <errno.h> 8#include <errno.h>
5#include <string.h> 9#include <string.h>
6#include <sys/socket.h> 10#include <sys/socket.h>