From owner-svn-ports-head@freebsd.org Wed Dec 20 01:58:40 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 A3FB2E8A803; Wed, 20 Dec 2017 01:58:40 +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 715EC762A8; Wed, 20 Dec 2017 01:58:40 +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 vBK1wduZ046867; Wed, 20 Dec 2017 01:58:39 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBK1wdnc046866; Wed, 20 Dec 2017 01:58:39 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201712200158.vBK1wdnc046866@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Wed, 20 Dec 2017 01:58:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456771 - head/archivers/lua51-zlib X-SVN-Group: ports-head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: head/archivers/lua51-zlib X-SVN-Commit-Revision: 456771 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: Wed, 20 Dec 2017 01:58:40 -0000 Author: emaste (src committer) Date: Wed Dec 20 01:58:39 2017 New Revision: 456771 URL: https://svnweb.freebsd.org/changeset/ports/456771 Log: archivers/lua51-zlib: set LLD_UNSAFE The port invokes the linker directly (not via the compiler driver). lld does not include any default search paths (unlike the GNU BFD linker so cannot find libraries specified as e.g. -lm or -lz. This can be addressed by invoking the linker via the compiler driver, or by specifying the search path explicitly with -L. For now just avoid using lld to link the port. PR: 214864, 221808 Sponsored by: The FreeBSD Foundation Modified: head/archivers/lua51-zlib/Makefile Modified: head/archivers/lua51-zlib/Makefile ============================================================================== --- head/archivers/lua51-zlib/Makefile Wed Dec 20 00:31:45 2017 (r456770) +++ head/archivers/lua51-zlib/Makefile Wed Dec 20 01:58:39 2017 (r456771) @@ -23,6 +23,7 @@ MAKE_ENV+= LUAPATH="${LOCALBASE}" MAKE_ENV+= LUACPATH="${STAGEDIR}${LUA_MODLIBDIR}" MAKE_ENV+= INCDIR="-I${LUA_INCDIR}" MAKE_ENV+= LUALIBDIR="-L${LUA_MODLIBDIR}" +LLD_UNSAFE= yes PLIST_FILES= ${LUA_MODLIBDIR}/zlib.so