From owner-svn-ports-all@freebsd.org Tue Feb 6 14:38:28 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D2A4EDB86D; Tue, 6 Feb 2018 14:38:28 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0BDC56C4FF; Tue, 6 Feb 2018 14:38:28 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 06F0A192A8; Tue, 6 Feb 2018 14:38:28 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w16EcRLC005666; Tue, 6 Feb 2018 14:38:27 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w16EcRp2005663; Tue, 6 Feb 2018 14:38:27 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201802061438.w16EcRp2005663@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 6 Feb 2018 14:38:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461059 - head/base/gcc/files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/base/gcc/files X-SVN-Commit-Revision: 461059 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Feb 2018 14:38:28 -0000 Author: swills Date: Tue Feb 6 14:38:27 2018 New Revision: 461059 URL: https://svnweb.freebsd.org/changeset/ports/461059 Log: Add files missed in previous commit PR: 224217 Submitted by: nwhitehorn Added: head/base/gcc/files/patch-Makefile.in (contents, props changed) head/base/gcc/files/patch-gcc-Makefile.in (contents, props changed) head/base/gcc/files/patch-gcc-configure (contents, props changed) Added: head/base/gcc/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/base/gcc/files/patch-Makefile.in Tue Feb 6 14:38:27 2018 (r461059) @@ -0,0 +1,72 @@ +--- Makefile.in.orig 2016-04-13 11:02:08.000000000 -0700 ++++ Makefile.in 2017-12-08 14:01:46.149339000 -0800 +@@ -2784,7 +2784,8 @@ + esac; \ + module_srcdir=libiberty; \ + rm -f no-such-file || : ; \ +- CONFIG_SITE=no-such-file $(SHELL) \ ++ CONFIG_SITE=no-such-file CFLAGS="${HOST_CFLAGS}" \ ++ CPPFLAGS="${HOST_CPPFLAGS}" CXXFLAGS="${HOST_CXXFLAGS}" $(SHELL) \ + $$s/$$module_srcdir/configure \ + --srcdir=$${topdir}/$$module_srcdir \ + $(BUILD_CONFIGARGS) --build=${build_alias} --host=${build_alias} \ +@@ -2841,7 +2842,8 @@ + esac; \ + module_srcdir=bison; \ + rm -f no-such-file || : ; \ +- CONFIG_SITE=no-such-file $(SHELL) \ ++ CONFIG_SITE=no-such-file CFLAGS="${HOST_CFLAGS}" \ ++ CPPFLAGS="${HOST_CPPFLAGS}" CXXFLAGS="${HOST_CXXFLAGS}" $(SHELL) \ + $$s/$$module_srcdir/configure \ + --srcdir=$${topdir}/$$module_srcdir \ + $(BUILD_CONFIGARGS) --build=${build_alias} --host=${build_alias} \ +@@ -2898,7 +2900,8 @@ + esac; \ + module_srcdir=flex; \ + rm -f no-such-file || : ; \ +- CONFIG_SITE=no-such-file $(SHELL) \ ++ CONFIG_SITE=no-such-file CFLAGS="${HOST_CFLAGS}" \ ++ CPPFLAGS="${HOST_CPPFLAGS}" CXXFLAGS="${HOST_CXXFLAGS}" $(SHELL) \ + $$s/$$module_srcdir/configure \ + --srcdir=$${topdir}/$$module_srcdir \ + $(BUILD_CONFIGARGS) --build=${build_alias} --host=${build_alias} \ +@@ -2955,7 +2958,8 @@ + esac; \ + module_srcdir=m4; \ + rm -f no-such-file || : ; \ +- CONFIG_SITE=no-such-file $(SHELL) \ ++ CONFIG_SITE=no-such-file CFLAGS="${HOST_CFLAGS}" \ ++ CPPFLAGS="${HOST_CPPFLAGS}" CXXFLAGS="${HOST_CXXFLAGS}" $(SHELL) \ + $$s/$$module_srcdir/configure \ + --srcdir=$${topdir}/$$module_srcdir \ + $(BUILD_CONFIGARGS) --build=${build_alias} --host=${build_alias} \ +@@ -3012,7 +3016,8 @@ + esac; \ + module_srcdir=texinfo; \ + rm -f no-such-file || : ; \ +- CONFIG_SITE=no-such-file $(SHELL) \ ++ CONFIG_SITE=no-such-file CFLAGS="${HOST_CFLAGS}" \ ++ CPPFLAGS="${HOST_CPPFLAGS}" CXXFLAGS="${HOST_CXXFLAGS}" $(SHELL) \ + $$s/$$module_srcdir/configure \ + --srcdir=$${topdir}/$$module_srcdir \ + $(BUILD_CONFIGARGS) --build=${build_alias} --host=${build_alias} \ +@@ -3069,7 +3074,8 @@ + esac; \ + module_srcdir=fixincludes; \ + rm -f no-such-file || : ; \ +- CONFIG_SITE=no-such-file $(SHELL) \ ++ CONFIG_SITE=no-such-file CFLAGS="${HOST_CFLAGS}" \ ++ CPPFLAGS="${HOST_CPPFLAGS}" CXXFLAGS="${HOST_CXXFLAGS}" $(SHELL) \ + $$s/$$module_srcdir/configure \ + --srcdir=$${topdir}/$$module_srcdir \ + $(BUILD_CONFIGARGS) --build=${build_alias} --host=${build_alias} \ +@@ -3126,7 +3132,8 @@ + esac; \ + module_srcdir=libcpp; \ + rm -f no-such-file || : ; \ +- CONFIG_SITE=no-such-file $(SHELL) \ ++ CONFIG_SITE=no-such-file CFLAGS="${HOST_CFLAGS}" \ ++ CPPFLAGS="${HOST_CPPFLAGS}" CXXFLAGS="${HOST_CXXFLAGS}" $(SHELL) \ + $$s/$$module_srcdir/configure \ + --srcdir=$${topdir}/$$module_srcdir \ + $(BUILD_CONFIGARGS) --build=${build_alias} --host=${build_alias} \ Added: head/base/gcc/files/patch-gcc-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/base/gcc/files/patch-gcc-Makefile.in Tue Feb 6 14:38:27 2018 (r461059) @@ -0,0 +1,11 @@ +--- gcc/Makefile.in.orig 2017-12-09 14:33:56.283411000 -0800 ++++ gcc/Makefile.in 2017-12-09 14:34:16.979742000 -0800 +@@ -779,7 +779,7 @@ + BUILD_NO_PIE_FLAG = @BUILD_NO_PIE_FLAG@ + BUILD_LDFLAGS += $(BUILD_NO_PIE_FLAG) + BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ +- -I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS) ++ -I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS_FOR_BUILD) + + # Actual name to use when installing a native compiler. + GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)') Added: head/base/gcc/files/patch-gcc-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/base/gcc/files/patch-gcc-configure Tue Feb 6 14:38:27 2018 (r461059) @@ -0,0 +1,11 @@ +--- gcc/configure.orig 2017-12-09 14:33:36.570113000 -0800 ++++ gcc/configure 2017-12-09 14:33:50.647310000 -0800 +@@ -11803,7 +11803,7 @@ + CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \ + CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \ + LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \ +- GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \ ++ GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \ + ${realsrcdir}/configure \ + --enable-languages=${enable_languages-all} \ + --target=$target_alias --host=$build_alias --build=$build_alias