1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 10:15:12 +03:00
aports/community/libkeyfinder/add-missing-include-for-ppc64le.patch
2017-07-17 07:16:17 +00:00

13 lines
242 B
Diff

--- libKeyFinder-2.2.1/fftadapter.cpp
+++ libKeyFinder-2.2.1/fftadapter.cpp
@@ -25,6 +25,10 @@
#include <cmath>
#include <fftw3.h>
+#ifdef __powerpc64__
+#include <string.h>
+#endif
+
namespace KeyFinder {
std::mutex fftwPlanMutex;