diff --git a/sway/ipc-server.c b/sway/ipc-server.c index 4ce2b7ebe..b560b9306 100644 --- a/sway/ipc-server.c +++ b/sway/ipc-server.c @@ -1,6 +1,10 @@ // See https://i3wm.org/docs/ipc.html for protocol information +#ifndef __FreeBSD__ +// Any value will hide SOCK_CLOEXEC on FreeBSD (__BSD_VISIBLE=0) #define _XOPEN_SOURCE 700 +#endif + #include #include #include diff --git a/swaybar/status_line.c b/swaybar/status_line.c index e0564c269..cc324fdb7 100644 --- a/swaybar/status_line.c +++ b/swaybar/status_line.c @@ -1,4 +1,4 @@ -#define _XOPEN_SOURCE 500 +#define _XOPEN_SOURCE 700 #include #include #include