From owner-svn-ports-all@freebsd.org Fri Jun 21 21:35:40 2019 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 B76FC15BFDDA; Fri, 21 Jun 2019 21:35:40 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 516D781E7D; Fri, 21 Jun 2019 21:35:40 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 1F8BD1C0F6; Fri, 21 Jun 2019 21:35:40 +0000 (UTC) From: Jan Beich To: Philip Paeps Cc: Santhosh Raju , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504812 - in head/www/cliqz: . files References: <201906212010.x5LKAa6J067592@repo.freebsd.org> Date: Fri, 21 Jun 2019 23:35:34 +0200 In-Reply-To: <201906212010.x5LKAa6J067592@repo.freebsd.org> (Philip Paeps's message of "Fri, 21 Jun 2019 20:10:36 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 516D781E7D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.92 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.93)[-0.930,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; TAGGED_RCPT(0.00)[]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 21 Jun 2019 21:35:40 -0000 Philip Paeps writes: > Author: philip > Date: Fri Jun 21 20:10:36 2019 > New Revision: 504812 > URL: https://svnweb.freebsd.org/changeset/ports/504812 > > Log: > www/cliqz: update to 1.27.3 > > PR: 238410 > Submitted by: Santhosh Raju (maintainer) [...] > MAKE_ENV+= LLVM_CONFIG=llvm-config${LLVM_DEFAULT} > +MAKE_ENV+= LLVM_OBJDUMP=${LOCALBASE}/llvm${LLVM_DEFAULT}/bin/llvm-objdump Both LLVM_CONFIG and LLVM_OBJDUMP can be dropped in favor of CC/CXX e.g., MAKE_ENV+= CC=clang${LLVM_DEFAULT} CXX=clang++${LLVM_DEFAULT} as LLVM_CONFIG will be replaced by --with-libclang-path in future, see https://bugzilla.mozilla.org/show_bug.cgi?id=1526857