aboutsummaryrefslogtreecommitdiffstats
path: root/community/libkeyfinder/add-missing-include-for-ppc64le.patch
blob: 3ef2851f86e462e0a0acd049ee935f499463e596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- 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;