1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

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'?
This commit is contained in:
Piotr Kubaj 2020-10-07 14:08:00 +00:00
parent 4081dcd104
commit 8acf80f0ce
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=551646

View File

@ -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>