From owner-svn-ports-all@freebsd.org Tue Mar 27 21:42:09 2018 Return-Path: Delivered-To: svn-ports-all@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 AA531F60092; Tue, 27 Mar 2018 21:42:09 +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 6008E84168; Tue, 27 Mar 2018 21:42:09 +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 5ACAA21CEF; Tue, 27 Mar 2018 21:42:09 +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 w2RLg9K5093890; Tue, 27 Mar 2018 21:42:09 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2RLg9N5093889; Tue, 27 Mar 2018 21:42:09 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201803272142.w2RLg9N5093889@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Tue, 27 Mar 2018 21:42:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465763 - head/audio/oss X-SVN-Group: ports-head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: head/audio/oss X-SVN-Commit-Revision: 465763 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Mar 2018 21:42:09 -0000 Author: emaste (src committer) Date: Tue Mar 27 21:42:08 2018 New Revision: 465763 URL: https://svnweb.freebsd.org/changeset/ports/465763 Log: audio/oss: set LLD_UNSAFE to link using ld.bfd This port fails when attempting to link with lld as the system linker. It passes -fPIC to the linker, which is actually a compiler flag. ld.bfd accepts the flag but it results in a bogus DT_AUXILIARY entry in the ouptut: Dynamic section at offset 0x5000 contains 15 entries: Tag Type Name/Value 0x000000007ffffffd AUXILIARY Auxiliary library: [PIC] PR: 221807 Approved by: portmgr (LLD_UNSAFE blanket) Sponsored by: The FreeBSD Foundation Modified: head/audio/oss/Makefile Modified: head/audio/oss/Makefile ============================================================================== --- head/audio/oss/Makefile Tue Mar 27 21:38:01 2018 (r465762) +++ head/audio/oss/Makefile Tue Mar 27 21:42:08 2018 (r465763) @@ -23,6 +23,7 @@ USE_GNOME= gtk20 USE_RC_SUBR= oss SUB_FILES= pkg-install pkg-deinstall ONLY_FOR_ARCHS= amd64 i386 +LLD_UNSAFE= yes KMODDIR= ${PREFIX}/lib/oss/modules