summarylogtreecommitdiffstats
path: root/fix-missing-stdint-include.patch
diff options
context:
space:
mode:
authorOSAMC2023-11-28 00:11:09 +0000
committerChristopher Arndt2023-11-28 00:11:09 +0000
commite7d754b23ab7dd977cf1ca3d9f07a8447b2d2664 (patch)
treeb4b14d3a2e05c703da74dd60c2f71a7f7a0b8b88 /fix-missing-stdint-include.patch
parent8af6a524bf690cd79b92621a440fe7d11efd8c29 (diff)
downloadaur-string-machine.tar.gz
fix: build errors and dependencies in pkg string-machine (#314)
Diffstat (limited to 'fix-missing-stdint-include.patch')
-rw-r--r--fix-missing-stdint-include.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/fix-missing-stdint-include.patch b/fix-missing-stdint-include.patch
new file mode 100644
index 000000000000..408d333eca26
--- /dev/null
+++ b/fix-missing-stdint-include.patch
@@ -0,0 +1,32 @@
+diff --git a/sources/ui/Cairo++.h b/sources/ui/Cairo++.h
+index 50e0b3c..ccab778 100644
+--- a/sources/ui/Cairo++.h
++++ b/sources/ui/Cairo++.h
+@@ -1,6 +1,7 @@
+ #pragma once
+ #include "Geometry.h"
+ #include "Color.h"
++#include <stdint.h>
+ #include <cairo/cairo.h>
+ #include <type_traits>
+ #include <memory>
+diff --git a/sources/ui/Color.h b/sources/ui/Color.h
+index 5c27804..2cf2a28 100644
+--- a/sources/ui/Color.h
++++ b/sources/ui/Color.h
+@@ -1,4 +1,5 @@
+ #pragma once
++#include <stdint.h>
+
+ struct ColorRGBA8 {
+ uint8_t r, g, b, a;
+diff --git a/sources/ui/components/KnobSkin.hpp b/sources/ui/components/KnobSkin.hpp
+index c124817..ef99e91 100644
+--- a/sources/ui/components/KnobSkin.hpp
++++ b/sources/ui/components/KnobSkin.hpp
+@@ -1,4 +1,5 @@
+ #pragma once
++#include <stdint.h>
+ #include "ui/Cairo++.h"
+
+ class KnobSkin {