svn commit: r486177 - branches/2018Q4/lang/gcc7/files

Antoine Brodin antoine at FreeBSD.org
Thu Nov 29 16:15:30 UTC 2018


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 at 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 }


More information about the svn-ports-branches mailing list