summaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-04-08 06:53:22 -0400
committerLibravatar GitHub <noreply@github.com>2017-04-08 06:53:22 -0400
commit7fee555a462b001748352da1339c9bcc0e154a3b (patch)
treec244f4ba75e2736815f096c51e691f5c664c2326 /sway
parentMerge pull request #1155 from 4e554c4c/get_marks (diff)
parentAdd libcap check to CMake (diff)
downloadsway-7fee555a462b001748352da1339c9bcc0e154a3b.tar.gz
sway-7fee555a462b001748352da1339c9bcc0e154a3b.tar.zst
sway-7fee555a462b001748352da1339c9bcc0e154a3b.zip
Merge pull request #1150 from JerziKaminsky/cmake_find_libcap
Add libcap check to CMake
Diffstat (limited to 'sway')
-rw-r--r--sway/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/main.c b/sway/main.c
index 55b71fa4..b9f8936f 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -11,8 +11,8 @@
11#include <signal.h> 11#include <signal.h>
12#include <unistd.h> 12#include <unistd.h>
13#include <getopt.h> 13#include <getopt.h>
14#include <sys/capability.h>
15#ifdef __linux__ 14#ifdef __linux__
15#include <sys/capability.h>
16#include <sys/prctl.h> 16#include <sys/prctl.h>
17#endif 17#endif
18#include "sway/extensions.h" 18#include "sway/extensions.h"