From owner-svn-ports-head@freebsd.org Fri Apr 6 02:17:03 2018 Return-Path: Delivered-To: svn-ports-head@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 57C6DF96B47; Fri, 6 Apr 2018 02:17:03 +0000 (UTC) (envelope-from emaste@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 02E317E176; Fri, 6 Apr 2018 02:17:03 +0000 (UTC) (envelope-from emaste@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 F1F7632DB; Fri, 6 Apr 2018 02:17:02 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w362H2Tv003026; Fri, 6 Apr 2018 02:17:02 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w362H2q3003025; Fri, 6 Apr 2018 02:17:02 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201804060217.w362H2q3003025@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Fri, 6 Apr 2018 02:17:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466610 - head/games/openastromenace X-SVN-Group: ports-head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: head/games/openastromenace X-SVN-Commit-Revision: 466610 X-SVN-Commit-Repository: ports 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.25 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: Fri, 06 Apr 2018 02:17:03 -0000 Author: emaste (src committer) Date: Fri Apr 6 02:17:02 2018 New Revision: 466610 URL: https://svnweb.freebsd.org/changeset/ports/466610 Log: games/openastromenace: fix build when lld is the system linker Ports that use openal (such as this one) fail to link with lld as the system linker due to disagreement in the handling of preemption of protected visibility symbols in shared objects. Set LLD_UNSAFE to fall back to ld.bfd for now. PR: 226980 Approved by: portmgr (LLD_UNSAFE blanket) Sponsored by: The FreeBSD Foundation Modified: head/games/openastromenace/Makefile Modified: head/games/openastromenace/Makefile ============================================================================== --- head/games/openastromenace/Makefile Fri Apr 6 02:01:01 2018 (r466609) +++ head/games/openastromenace/Makefile Fri Apr 6 02:17:02 2018 (r466610) @@ -25,6 +25,7 @@ USE_GL= gl glu USE_SDL= sdl WRKSRC= ${WRKDIR}/AstroMenace CMAKE_ARGS= -DDATADIR="${DATADIR}" +LLD_UNSAFE= yes PLIST_FILES= bin/AstroMenace \ share/pixmaps/${PORTNAME}.png