aboutsummaryrefslogtreecommitdiff
path: root/deskutils/recoll
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2020-10-07 14:08:00 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2020-10-07 14:08:00 +0000
commit8acf80f0ce96ffdf6944630daf0b25a47c9b0b4b (patch)
treec7263fc408a9c4436f830a2982d1b1c5725cd6aa /deskutils/recoll
parent4081dcd104f2dd4868d1d75bc751c3ad2504f567 (diff)
downloadports-8acf80f0ce96ffdf6944630daf0b25a47c9b0b4b.tar.gz
ports-8acf80f0ce96ffdf6944630daf0b25a47c9b0b4b.zip
deskutils/recoll: fix build on GCC architectures
Include sys/types.h to make necessary types available: utils/fstreewalk.cpp:51:5: error: 'dev_t' does not name a type; did you mean 'div_t'?
Notes
Notes: svn path=/head/; revision=551646
Diffstat (limited to 'deskutils/recoll')
-rw-r--r--deskutils/recoll/files/patch-utils_fstreewalk.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/deskutils/recoll/files/patch-utils_fstreewalk.cpp b/deskutils/recoll/files/patch-utils_fstreewalk.cpp
new file mode 100644
index 000000000000..58691eb0c7ae
--- /dev/null
+++ b/deskutils/recoll/files/patch-utils_fstreewalk.cpp
@@ -0,0 +1,10 @@
+--- utils/fstreewalk.cpp.orig 2020-08-30 18:31:25 UTC
++++ utils/fstreewalk.cpp
+@@ -17,6 +17,7 @@
+
+ #include "autoconfig.h"
+
++#include <sys/types.h>
+ #include <stdio.h>
+ #include <dirent.h>
+ #include <errno.h>