Date: Tue, 16 Oct 2018 15:23:41 +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: r482234 - in head/lang/gcc6-devel: . files Message-ID: <201810161523.w9GFNfo9066298@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gerald Date: Tue Oct 16 15:23:40 2018 New Revision: 482234 URL: https://svnweb.freebsd.org/changeset/ports/482234 Log: Update to the 20181003 snapshot of GCC 6.4.1. Add a partial fix for what was reported in PR 231804, specifically 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/gcc6-devel/files/patch-libgfortran - copied unchanged from r482029, head/lang/gcc7-devel/files/patch-libgfortran Modified: head/lang/gcc6-devel/Makefile head/lang/gcc6-devel/distinfo Modified: head/lang/gcc6-devel/Makefile ============================================================================== --- head/lang/gcc6-devel/Makefile Tue Oct 16 15:17:33 2018 (r482233) +++ head/lang/gcc6-devel/Makefile Tue Oct 16 15:23:40 2018 (r482234) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 6.4.1.s20181003 +PORTVERSION= 6.4.1.s20181010 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel Modified: head/lang/gcc6-devel/distinfo ============================================================================== --- head/lang/gcc6-devel/distinfo Tue Oct 16 15:17:33 2018 (r482233) +++ head/lang/gcc6-devel/distinfo Tue Oct 16 15:23:40 2018 (r482234) @@ -1,3 +1,3 @@ -TIMESTAMP = 1538892646 -SHA256 (gcc-6-20181003.tar.xz) = 4ae847ba1f1411ed6a1972d0ff7688ebc2ab091e422f26f1e1c2e6f2daeaa216 -SIZE (gcc-6-20181003.tar.xz) = 72687960 +TIMESTAMP = 1539499387 +SHA256 (gcc-6-20181010.tar.xz) = 0396dc43a259d6d4828e62e352f822a37b84435fe7ede4d64bb514e5c07877a0 +SIZE (gcc-6-20181010.tar.xz) = 72686384 Copied: head/lang/gcc6-devel/files/patch-libgfortran (from r482029, head/lang/gcc7-devel/files/patch-libgfortran) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/gcc6-devel/files/patch-libgfortran Tue Oct 16 15:23:40 2018 (r482234, copy of r482029, 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?201810161523.w9GFNfo9066298>