1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 04:05:40 +03:00
aports/testing/zimg/musl-missing-include.patch
Leo ec82bfb2c4 testing/zimg: fix build
size_t requires sys/types.h to be included, so include it
2021-01-20 22:19:55 -03:00

12 lines
337 B
Diff

Otherwise fails to build with missing size_t
diff --git a/src/zimg/colorspace/matrix3.cpp b/src/zimg/colorspace/matrix3.cpp
index 06e0e2f..bf849c0 100644
--- a/src/zimg/colorspace/matrix3.cpp
+++ b/src/zimg/colorspace/matrix3.cpp
@@ -1,4 +1,5 @@
#include "matrix3.h"
+#include <sys/types.h>
namespace zimg {
namespace colorspace {