diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2022-02-08 14:43:30 -0800 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2022-02-08 14:45:16 -0800 |
commit | 4be23602a9aa769a827077615b6135b72b8b4d65 (patch) | |
tree | 4edd4bcb6b4f0ebadabae4f0e7178a1e9b5aa436 /graphics | |
parent | 058d935375b9b225571228865dae257fd853a87d (diff) | |
download | freebsd-ports-4be23602a9aa769a827077615b6135b72b8b4d65.zip |
graphics/glaxnimate: Fix build by adding missing #include
Reported by: fallout
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/glaxnimate/files/patch-src_core_utils_gzip.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/glaxnimate/files/patch-src_core_utils_gzip.cpp b/graphics/glaxnimate/files/patch-src_core_utils_gzip.cpp new file mode 100644 index 000000000000..41dc96df495f --- /dev/null +++ b/graphics/glaxnimate/files/patch-src_core_utils_gzip.cpp @@ -0,0 +1,11 @@ +- workaround for https://gitlab.com/mattbas/glaxnimate/-/issues/486 + +--- src/core/utils/gzip.cpp.orig 2022-02-08 22:18:22 UTC ++++ src/core/utils/gzip.cpp +@@ -1,5 +1,6 @@ + #include "gzip.hpp" + ++#include <array> + #include <cstring> + + #include <QFile> |