Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Oct 2020 20:38:46 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r553494 - branches/2020Q4/deskutils/recoll/files
Message-ID:  <202010272038.09RKckdY031270@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Tue Oct 27 20:38:46 2020
New Revision: 553494
URL: https://svnweb.freebsd.org/changeset/ports/553494

Log:
  MFH: r551646
  
  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'?
  
  Approved by:	portmgr (fix build blanket)

Added:
  branches/2020Q4/deskutils/recoll/files/patch-utils_fstreewalk.cpp
     - copied unchanged from r551646, head/deskutils/recoll/files/patch-utils_fstreewalk.cpp
Modified:
Directory Properties:
  branches/2020Q4/   (props changed)

Copied: branches/2020Q4/deskutils/recoll/files/patch-utils_fstreewalk.cpp (from r551646, head/deskutils/recoll/files/patch-utils_fstreewalk.cpp)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2020Q4/deskutils/recoll/files/patch-utils_fstreewalk.cpp	Tue Oct 27 20:38:46 2020	(r553494, copy of r551646, head/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>



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