From owner-svn-ports-all@freebsd.org Sat Oct 12 15:48:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E970D139DF9; Sat, 12 Oct 2019 15:48:59 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46r8Pl5ZQ5z4F8j; Sat, 12 Oct 2019 15:48:59 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A29655C0D; Sat, 12 Oct 2019 15:48:59 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9CFmxmF007844; Sat, 12 Oct 2019 15:48:59 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9CFmxIB007843; Sat, 12 Oct 2019 15:48:59 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201910121548.x9CFmxIB007843@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Sat, 12 Oct 2019 15:48:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r514339 - head/textproc/R-cran-readxl/files X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/textproc/R-cran-readxl/files X-SVN-Commit-Revision: 514339 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Oct 2019 15:49:00 -0000 Author: pkubaj Date: Sat Oct 12 15:48:59 2019 New Revision: 514339 URL: https://svnweb.freebsd.org/changeset/ports/514339 Log: textproc/R-cran-readxl: fix build on GCC architectures Include sys/types.h in src/ColSpec.h to fix build with GCC: /usr/include/unistd.h:327:26: error: 'uid_t' has not been declared PR: 240796 Approved by: linimon (mentor), dbn (maintainer timeout) Added: head/textproc/R-cran-readxl/files/ head/textproc/R-cran-readxl/files/patch-src_ColSpec.h (contents, props changed) Added: head/textproc/R-cran-readxl/files/patch-src_ColSpec.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-readxl/files/patch-src_ColSpec.h Sat Oct 12 15:48:59 2019 (r514339) @@ -0,0 +1,10 @@ +--- src/ColSpec.h.orig 2019-09-24 16:05:20 UTC ++++ src/ColSpec.h +@@ -1,6 +1,7 @@ + #ifndef READXL_COLSPEC_ + #define READXL_COLSPEC_ + ++#include + #include + #include + #include "StringSet.h"