synergy: fix missing include to <cstdint> (#487730)

This commit is contained in:
Aleksana
2026-02-27 04:48:40 +00:00
committed by GitHub
2 changed files with 16 additions and 0 deletions
@@ -0,0 +1,12 @@
diff --git a/src/lib/server/InputFilter.cpp b/src/lib/server/InputFilter.cpp
index da29f5b..65c500f 100755
--- a/src/lib/server/InputFilter.cpp
+++ b/src/lib/server/InputFilter.cpp
@@ -26,6 +26,7 @@
#include <cstdlib>
#include <cstring>
+#include <cstdint>
// -----------------------------------------------------------------------------
// Input Filter Condition Classes
+4
View File
@@ -42,6 +42,10 @@ stdenv.mkDerivation (finalAttrs: {
patches = [
# Without this OpenSSL from nixpkgs is not detected
./darwin-non-static-openssl.patch
# This missing include broke the build on GCC 15
# This can be removed once we switch to a newer version
./include_cstdint.patch
];
postPatch = ''