svn commit: r481429 - in head/lang/gcc7-devel: . files
Gerald Pfeifer
gerald at FreeBSD.org
Sun Oct 7 06:08:46 UTC 2018
Author: gerald
Date: Sun Oct 7 06:08:44 2018
New Revision: 481429
URL: https://svnweb.freebsd.org/changeset/ports/481429
Log:
Update to the 20181004 snapshot of GCC 7.3.1.
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-devel/files/patch-libgfortran (contents, props changed)
Modified:
head/lang/gcc7-devel/Makefile
head/lang/gcc7-devel/distinfo
Modified: head/lang/gcc7-devel/Makefile
==============================================================================
--- head/lang/gcc7-devel/Makefile Sun Oct 7 05:15:22 2018 (r481428)
+++ head/lang/gcc7-devel/Makefile Sun Oct 7 06:08:44 2018 (r481429)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= gcc
-PORTVERSION= 7.3.1.s20180927
+PORTVERSION= 7.3.1.s20181004
CATEGORIES= lang
MASTER_SITES= GCC/snapshots/${DIST_VERSION}
PKGNAMESUFFIX= ${SUFFIX}-devel
Modified: head/lang/gcc7-devel/distinfo
==============================================================================
--- head/lang/gcc7-devel/distinfo Sun Oct 7 05:15:22 2018 (r481428)
+++ head/lang/gcc7-devel/distinfo Sun Oct 7 06:08:44 2018 (r481429)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1538170254
-SHA256 (gcc-7-20180927.tar.xz) = 5cfeb7288afa6f3bb753c2e049789ed95744a63c4dcb1946ccbc32ab1830cb7f
-SIZE (gcc-7-20180927.tar.xz) = 59295408
+TIMESTAMP = 1538848882
+SHA256 (gcc-7-20181004.tar.xz) = 0e8de3aa780b947465c0619bb947a028c7ebfa3853f48dad0d7e6bcfc595b18e
+SIZE (gcc-7-20181004.tar.xz) = 59298276
Added: head/lang/gcc7-devel/files/patch-libgfortran
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/lang/gcc7-devel/files/patch-libgfortran Sun Oct 7 06:08:44 2018 (r481429)
@@ -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-all
mailing list