From owner-svn-ports-head@freebsd.org Thu Mar 21 16:55:17 2019 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 D0DEA1548047; Thu, 21 Mar 2019 16:55:17 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 733CC6D2D2; Thu, 21 Mar 2019 16:55:17 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 5FB7E5EB; Thu, 21 Mar 2019 16:55:17 +0000 (UTC) Date: Thu, 21 Mar 2019 16:55:17 +0000 From: Alexey Dokuchaev To: David Naylor Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r496471 - head/lang/lua53 Message-ID: <20190321165517.GA21672@FreeBSD.org> References: <201903211626.x2LGQdJn054768@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201903211626.x2LGQdJn054768@repo.freebsd.org> User-Agent: Mutt/1.10.1 (2018-07-13) X-Rspamd-Queue-Id: 733CC6D2D2 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.91 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.91)[-0.911,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Thu, 21 Mar 2019 16:55:18 -0000 On Thu, Mar 21, 2019 at 04:26:39PM +0000, David Naylor wrote: > New Revision: 496471 > URL: https://svnweb.freebsd.org/changeset/ports/496471 > > Log: > lang/lua: workaround dlopen/libthr bug on FreeBSD 12 > > Submitted by: Russel Haley > Differential Revision: https://reviews.freebsd.org/D18939 > > Modified: > head/lang/lua53/Makefile > > Modified: head/lang/lua53/Makefile > ============================================================================== > --- head/lang/lua53/Makefile Thu Mar 21 15:05:27 2019 (r496470) > +++ head/lang/lua53/Makefile Thu Mar 21 16:26:39 2019 (r496471) > @@ -3,6 +3,7 @@ > > PORTNAME= lua > DISTVERSION= 5.3.5 > +PORTREVISION=1 Missing after = here. > CFLAGS+= -fPIC > +# 2019-01-25: -pthread in LIBS is a work around for the following bug: > +# https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235211 > +LIBS+= -pthread Wasn't this bug fixed in base (src) r343566? It was supposed to be MFC'ed two weeks later. ./danfe