From owner-svn-ports-head@freebsd.org Sun Nov 20 21:39:26 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BCAEAC4CC8D; Sun, 20 Nov 2016 21:39:26 +0000 (UTC) (envelope-from antoine@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 mx1.freebsd.org (Postfix) with ESMTPS id 88E7D1EF1; Sun, 20 Nov 2016 21:39:26 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAKLdPL0081979; Sun, 20 Nov 2016 21:39:25 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAKLdPPl081978; Sun, 20 Nov 2016 21:39:25 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201611202139.uAKLdPPl081978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 20 Nov 2016 21:39:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426636 - head/graphics/blender X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Nov 2016 21:39:26 -0000 Author: antoine Date: Sun Nov 20 21:39:25 2016 New Revision: 426636 URL: https://svnweb.freebsd.org/changeset/ports/426636 Log: Fix build on 9.3 amd64 after lang/gcc upgrade by switching to USE_GCC=4.8 gcc 4.9 fails to link on 9.3 amd64 with: /usr/local/lib/libtinyxml.so: error: undefined reference to 'std::istream::get()' /usr/local/lib/libtinyxml.so: error: undefined reference to 'std::__throw_out_of_range(char const*)' /usr/local/lib/libtinyxml.so: error: undefined reference to 'std::istream::peek()' PR: 196712 Modified: head/graphics/blender/Makefile Modified: head/graphics/blender/Makefile ============================================================================== --- head/graphics/blender/Makefile Sun Nov 20 21:30:25 2016 (r426635) +++ head/graphics/blender/Makefile Sun Nov 20 21:39:25 2016 (r426636) @@ -213,8 +213,13 @@ BROKEN= REDCODE requires OPENJPEG and FF .if ${COMPILER_TYPE} == gcc # gcc 4.2 does not support -msse4.1, which is needed for blender 2.70+ +.if ${ARCH} == amd64 +# gcc 4.9 fails to link on amd64 +USE_GCC= 4.8 +.else USE_GCC= yes .endif +.endif post-patch: .if ${PORT_OPTIONS:MOPENCOLORIO}