diff --git a/src/wrappers/dbus.hpp b/src/wrappers/dbus.hpp index 4eab1df..6149cb2 100644 --- a/src/wrappers/dbus.hpp +++ b/src/wrappers/dbus.hpp @@ -1,6 +1,6 @@ #pragma once -#if defined(__linux__) || defined(__FreeBSD__) +#if defined(__linux__) || defined(__FreeBSD__) || defined(__DragonFly__) || defined(__NetBSD__) // clang-format off #include @@ -386,4 +386,4 @@ namespace dbus { }; } // namespace dbus -#endif // __linux__ || __FreeBSD__ +#endif // __linux__ || __FreeBSD__ || __DragonFly__ || __NetBSD__ diff --git a/src/wrappers/wayland.hpp b/src/wrappers/wayland.hpp index 316e676..384be68 100644 --- a/src/wrappers/wayland.hpp +++ b/src/wrappers/wayland.hpp @@ -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 library @@ -96,4 +96,4 @@ namespace wl { }; } // namespace wl -#endif // __linux__ || __FreeBSD__ +#endif // __linux__ || __FreeBSD__ || __DragonFly__ || __NetBSD__ diff --git a/src/wrappers/xcb.hpp b/src/wrappers/xcb.hpp index 9d806b0..c61b26d 100644 --- a/src/wrappers/xcb.hpp +++ b/src/wrappers/xcb.hpp @@ -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 library @@ -171,4 +171,4 @@ namespace xcb { }; } // namespace xcb -#endif // __linux__ || __FreeBSD__ +#endif // __linux__ || __FreeBSD__ || __DragonFly__ || __NetBSD__