From owner-svn-ports-head@freebsd.org Fri Dec 29 16:24:17 2017 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 27703EA3E34; Fri, 29 Dec 2017 16:24:17 +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 mx1.freebsd.org (Postfix) with ESMTPS id E61A9705DD; Fri, 29 Dec 2017 16:24:16 +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 vBTGOFmY002797; Fri, 29 Dec 2017 16:24:15 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBTGOF6b002796; Fri, 29 Dec 2017 16:24:15 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201712291624.vBTGOF6b002796@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Fri, 29 Dec 2017 16:24:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457512 - head/audio/alure X-SVN-Group: ports-head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: head/audio/alure X-SVN-Commit-Revision: 457512 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, 29 Dec 2017 16:24:17 -0000 Author: emaste (src committer) Date: Fri Dec 29 16:24:15 2017 New Revision: 457512 URL: https://svnweb.freebsd.org/changeset/ports/457512 Log: audio/alure: set LLD_UNSAFE Linking with LLD currently fails due to preemption of symbols with protected visibility in a shared object: /usr/bin/ld: error: cannot preempt symbol: alureInitDevice >>> defined in libalure.so.1.2.0 >>> referenced by examples/alurestream.c >>> CMakeFiles/alurestream.dir/examples/alurestream.o:(main) For now set LLD_UNSAFE=yes so that the port will continue to link with ld.bfd if /usr/bin/ld is lld, until the issue can be addressed (with a change in openal-soft or in lld). PR: 214864, 219089 Approved by: portmgr (LLD_UNSAFE blanket) Sponsored by: The FreeBSD Foundation Modified: head/audio/alure/Makefile Modified: head/audio/alure/Makefile ============================================================================== --- head/audio/alure/Makefile Fri Dec 29 16:16:00 2017 (r457511) +++ head/audio/alure/Makefile Fri Dec 29 16:24:15 2017 (r457512) @@ -1,4 +1,4 @@ -# Created by: nemysis + # Created by: nemysis