svn commit: r551646 - head/deskutils/recoll/files

Piotr Kubaj pkubaj at FreeBSD.org
Wed Oct 7 14:08:01 UTC 2020


Author: pkubaj
Date: Wed Oct  7 14:08:00 2020
New Revision: 551646
URL: https://svnweb.freebsd.org/changeset/ports/551646

Log:
  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'?

Added:
  head/deskutils/recoll/files/patch-utils_fstreewalk.cpp   (contents, props changed)

Added: head/deskutils/recoll/files/patch-utils_fstreewalk.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/recoll/files/patch-utils_fstreewalk.cpp	Wed Oct  7 14:08:00 2020	(r551646)
@@ -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>


More information about the svn-ports-head mailing list