From owner-svn-ports-head@freebsd.org Fri Dec 22 14:13:22 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 C4805E9ADA3; Fri, 22 Dec 2017 14:13:22 +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 8EBA6784FD; Fri, 22 Dec 2017 14:13:22 +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 vBMEDLLB070758; Fri, 22 Dec 2017 14:13:21 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBMEDLK6070757; Fri, 22 Dec 2017 14:13:21 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201712221413.vBMEDLK6070757@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Fri, 22 Dec 2017 14:13:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456980 - head/multimedia/libxine X-SVN-Group: ports-head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: head/multimedia/libxine X-SVN-Commit-Revision: 456980 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, 22 Dec 2017 14:13:22 -0000 Author: emaste (src committer) Date: Fri Dec 22 14:13:21 2017 New Revision: 456980 URL: https://svnweb.freebsd.org/changeset/ports/456980 Log: multimedia/libxine: set LLD_UNSAFE to avoid lld libxine relies on ld.bfd's permissive treatment of shared library symbols with protected visibility, and attempting to link with lld fails with errors like: /usr/bin/ld: error: cannot preempt symbol: xine_get_version_string >>> defined in ../src/xine-engine/.libs/libxine.so >>> referenced by xine-list.c:98 >>> xine-list.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 libxine or in lld). PR: 214864 Approved by: portmgr (LLD_UNSAFE blanket) Sponsored by: The FreeBSD Foundation Modified: head/multimedia/libxine/Makefile Modified: head/multimedia/libxine/Makefile ============================================================================== --- head/multimedia/libxine/Makefile Fri Dec 22 13:55:40 2017 (r456979) +++ head/multimedia/libxine/Makefile Fri Dec 22 14:13:21 2017 (r456980) @@ -63,6 +63,7 @@ CONFIGURE_ARGS= --with-w32-path=${LOCALBASE}/lib/win32 --disable-musepack \ --enable-dvb MAKE_ENV= V=1 +LLD_UNSAFE= yes DOCSDIR= ${PREFIX}/share/doc/xine-lib # Please sync with XINE_PLUGINSDIR in multimedia/xine