Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Oct 2020 14:08:01 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r551646 - head/deskutils/recoll/files
Message-ID:  <202010071408.097E81Wl019040@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010071408.097E81Wl019040>