From a39d69f20434048688d5c6e1f00e13a8a6f63b84 Mon Sep 17 00:00:00 2001 From: Mars Date: Sat, 3 May 2025 02:21:35 -0400 Subject: [PATCH] woops --- src/wrappers/dbus.hpp | 4 ++-- src/wrappers/wayland.hpp | 4 ++-- src/wrappers/xcb.hpp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) 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__