Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Nov 2018 16:15:29 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r486177 - branches/2018Q4/lang/gcc7/files
Message-ID:  <201811291615.wATGFTCc019826@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Thu Nov 29 16:15:29 2018
New Revision: 486177
URL: https://svnweb.freebsd.org/changeset/ports/486177

Log:
  MFH: r482485
  
  Copy over files/patch-libgfortran from revision r481429 of lang/gcc7-devel:
  
  Add a partial fix for what was reported in PR 231804, the part that's
  actually relevant upstream and that I made there, cf.
  https://gcc.gnu.org/ml/gcc-patches/2018-10/msg00076.html as a new
  local patch files/patch-libgfortran until I have backported this to the
  upstream release branch and hence we get it via the weekly snapshots.
  
  PR:		231804

Added:
  branches/2018Q4/lang/gcc7/files/patch-libgfortran
     - copied unchanged from r482485, head/lang/gcc7/files/patch-libgfortran
Modified:
Directory Properties:
  branches/2018Q4/   (props changed)

Copied: branches/2018Q4/lang/gcc7/files/patch-libgfortran (from r482485, head/lang/gcc7/files/patch-libgfortran)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2018Q4/lang/gcc7/files/patch-libgfortran	Thu Nov 29 16:15:29 2018	(r486177, copy of r482485, head/lang/gcc7/files/patch-libgfortran)
@@ -0,0 +1,19 @@
+2018-10-02  Gerald Pfeifer  <gerald@pfeifer.com>
+
+	* io/close.c [!HAVE_UNLINK_OPEN_FILE]: Include <string.h>.
+
+--- UTC
+Index: libgfortran/io/close.c
+===================================================================
+--- libgfortran/io/close.c	(revision 264799)
++++ libgfortran/io/close.c	(revision 264800)
+@@ -26,6 +26,9 @@ see the files COPYING3 and COPYING.RUNTIME respect
+ #include "unix.h"
+ #include "async.h"
+ #include <limits.h>
++#if !HAVE_UNLINK_OPEN_FILE
++#include <string.h>
++#endif
+ 
+ typedef enum
+ { CLOSE_DELETE, CLOSE_KEEP, CLOSE_UNSPECIFIED }



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