aports/community/libkeyfinder/add-missing-include-for-ppc64le.patch
2017-07-17 07:16:17 +00:00

14 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;