This commit is contained in:
Mars 2025-05-03 02:21:35 -04:00
parent 18d51031e6
commit a39d69f204
3 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
#pragma once
#if defined(__linux__) || defined(__FreeBSD__)
#if defined(__linux__) || defined(__FreeBSD__) || defined(__DragonFly__) || defined(__NetBSD__)
// clang-format off
#include <cstring>
@ -386,4 +386,4 @@ namespace dbus {
};
} // namespace dbus
#endif // __linux__ || __FreeBSD__
#endif // __linux__ || __FreeBSD__ || __DragonFly__ || __NetBSD__

View file

@ -1,6 +1,6 @@
#pragma once
#if defined(__linux__) || defined(__FreeBSD__)
#if defined(__linux__) || defined(__FreeBSD__) || defined(__DragonFly__) || defined(__NetBSD__)
// clang-format off
#include <wayland-client.h> // Wayland client library
@ -96,4 +96,4 @@ namespace wl {
};
} // namespace wl
#endif // __linux__ || __FreeBSD__
#endif // __linux__ || __FreeBSD__ || __DragonFly__ || __NetBSD__

View file

@ -1,6 +1,6 @@
#pragma once
#if defined(__linux__) || defined(__FreeBSD__)
#if defined(__linux__) || defined(__FreeBSD__) || defined(__DragonFly__) || defined(__NetBSD__)
// clang-format off
#include <xcb/xcb.h> // XCB library
@ -171,4 +171,4 @@ namespace xcb {
};
} // namespace xcb
#endif // __linux__ || __FreeBSD__
#endif // __linux__ || __FreeBSD__ || __DragonFly__ || __NetBSD__