From owner-svn-ports-head@freebsd.org Sat Mar 31 16:23:14 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 7A58BF6DB0D; Sat, 31 Mar 2018 16:23:14 +0000 (UTC) (envelope-from martymac@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 27C426A8E0; Sat, 31 Mar 2018 16:23:14 +0000 (UTC) (envelope-from martymac@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 22B981A398; Sat, 31 Mar 2018 16:23:14 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2VGNDwI067304; Sat, 31 Mar 2018 16:23:13 GMT (envelope-from martymac@FreeBSD.org) Received: (from martymac@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2VGNDq8067303; Sat, 31 Mar 2018 16:23:13 GMT (envelope-from martymac@FreeBSD.org) Message-Id: <201803311623.w2VGNDq8067303@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: martymac set sender to martymac@FreeBSD.org using -f From: Ganael LAPLANCHE Date: Sat, 31 Mar 2018 16:23:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466062 - head/emulators/dolphin-emu X-SVN-Group: ports-head X-SVN-Commit-Author: martymac X-SVN-Commit-Paths: head/emulators/dolphin-emu X-SVN-Commit-Revision: 466062 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: Sat, 31 Mar 2018 16:23:14 -0000 Author: martymac Date: Sat Mar 31 16:23:13 2018 New Revision: 466062 URL: https://svnweb.freebsd.org/changeset/ports/466062 Log: emulators/dolphin-emu: set LLD_UNSAFE Prevent Dolphin from linking using lld as it fails with errors like: /usr/bin/ld: error: cannot preempt symbol: alcOpenDevice >>> defined in /usr/local/lib/libopenal.so >>> referenced by OpenALStream.cpp >>> OpenALStream.cpp.o:(OpenALStream::Start()) due to preemption of symbols with protected visibility in a shared object. See also PR #219089 for more details. PR: 226980 Submitted by: emaste Modified: head/emulators/dolphin-emu/Makefile Modified: head/emulators/dolphin-emu/Makefile ============================================================================== --- head/emulators/dolphin-emu/Makefile Sat Mar 31 15:51:57 2018 (r466061) +++ head/emulators/dolphin-emu/Makefile Sat Mar 31 16:23:13 2018 (r466062) @@ -31,6 +31,7 @@ LIB_DEPENDS= libpulse.so:audio/pulseaudio \ libcurl.so:ftp/curl \ libgtest.so:devel/googletest +LLD_UNSAFE= yes USES= cmake compiler:c++11-lib iconv openal pkgconfig USE_GITHUB= yes