aboutsummaryrefslogtreecommitdiff
path: root/sway/input
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2019-01-09 14:00:54 +0100
committerGitHub <noreply@github.com>2019-01-09 14:00:54 +0100
commitf9cea7f09bb0307ab47505e6f7d7cb1f02f45783 (patch)
tree079ec47dfb3312385d3c65033056631031665d54 /sway/input
parentd06782c5e71fb1a6229c1add16bae0dbf919c5c1 (diff)
parent0a4c4f3e52762a953e20419f1fef1f2f62c9873b (diff)
downloadsway-f9cea7f09bb0307ab47505e6f7d7cb1f02f45783.tar.xz
Merge pull request #3391 from jbeich/freebsd
Simplify FreeBSD build
Diffstat (limited to 'sway/input')
-rw-r--r--sway/input/cursor.c4
-rw-r--r--sway/input/seat.c4
2 files changed, 0 insertions, 8 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 510030ae..96feb47d 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -1,11 +1,7 @@
#define _POSIX_C_SOURCE 200809L
#include <math.h>
#include <libevdev/libevdev.h>
-#ifdef __linux__
#include <linux/input-event-codes.h>
-#elif __FreeBSD__
-#include <dev/evdev/input-event-codes.h>
-#endif
#include <float.h>
#include <limits.h>
#include <wlr/types/wlr_cursor.h>
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 41a3a4df..a8df5b99 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -1,11 +1,7 @@
#define _POSIX_C_SOURCE 200809L
#include <assert.h>
#include <errno.h>
-#ifdef __linux__
#include <linux/input-event-codes.h>
-#elif __FreeBSD__
-#include <dev/evdev/input-event-codes.h>
-#endif
#include <strings.h>
#include <time.h>
#include <wlr/types/wlr_cursor.h>