mirror of
https://github.com/libretro/RetroArch
synced 2025-03-17 10:21:26 +00:00
Merge pull request #12345 from devnexen/fbsd_build_fix
FreeBSD build fix proposal
This commit is contained in:
commit
76eeee2c9a
@ -47,11 +47,13 @@
|
||||
#include <poll.h>
|
||||
|
||||
#include <libudev.h>
|
||||
#ifdef __linux__
|
||||
#if defined(__linux__)
|
||||
#include <linux/types.h>
|
||||
#endif
|
||||
#include <linux/input.h>
|
||||
#include <linux/kd.h>
|
||||
#elif defined(__FreeBSD__)
|
||||
#include <dev/evdev/input.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "../../config.h"
|
||||
|
@ -51,8 +51,12 @@
|
||||
#endif
|
||||
|
||||
#if defined(__linux__) || defined(HAVE_WAYLAND)
|
||||
#if defined(__linux__)
|
||||
#include <linux/input.h>
|
||||
#include <linux/kd.h>
|
||||
#elif defined(__FreeBSD__)
|
||||
#include <dev/evdev/input.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_X11
|
||||
|
Loading…
x
Reference in New Issue
Block a user