Date: Sat, 20 Oct 2018 10:59:10 +0000 (UTC) From: Gerald Pfeifer <gerald@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482485 - head/lang/gcc7/files Message-ID: <201810201059.w9KAxAv0093615@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gerald Date: Sat Oct 20 10:59:09 2018 New Revision: 482485 URL: https://svnweb.freebsd.org/changeset/ports/482485 Log: 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: head/lang/gcc7/files/patch-libgfortran - copied unchanged from r482472, head/lang/gcc7-devel/files/patch-libgfortran Copied: head/lang/gcc7/files/patch-libgfortran (from r482472, head/lang/gcc7-devel/files/patch-libgfortran) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/gcc7/files/patch-libgfortran Sat Oct 20 10:59:09 2018 (r482485, copy of r482472, head/lang/gcc7-devel/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?201810201059.w9KAxAv0093615>