mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
Merge pull request #1402 from johalun/event-codes-include-fix
Fix include path to input-event-codes.h for FreeBSD.
This commit is contained in:
parent
8df33198ea
commit
bfb5e0cdff
|
@ -7,7 +7,11 @@
|
|||
#include <sys/wait.h>
|
||||
#include <signal.h>
|
||||
#include <poll.h>
|
||||
#ifdef __FreeBSD__
|
||||
#include <dev/evdev/input-event-codes.h>
|
||||
#else
|
||||
#include <linux/input-event-codes.h>
|
||||
#endif
|
||||
#ifdef ENABLE_TRAY
|
||||
#include <dbus/dbus.h>
|
||||
#include "swaybar/tray/sni_watcher.h"
|
||||
|
|
Loading…
Reference in a new issue