From owner-freebsd-gecko@freebsd.org Thu Apr 4 23:22:19 2019 Return-Path: Delivered-To: freebsd-gecko@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 BCFC3155FDD6 for ; Thu, 4 Apr 2019 23:22:19 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 535566AD32 for ; Thu, 4 Apr 2019 23:22:19 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 133F2155FDD5; Thu, 4 Apr 2019 23:22:19 +0000 (UTC) Delivered-To: gecko@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 008D3155FDD4 for ; Thu, 4 Apr 2019 23:22:19 +0000 (UTC) (envelope-from jbeich@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 98E3E6AD2F; Thu, 4 Apr 2019 23:22:18 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 6B5191DD58; Thu, 4 Apr 2019 23:22:18 +0000 (UTC) From: Jan Beich To: Graham Perrin Cc: gecko@freebsd.org Subject: Re: Building (deleted) Waterfox 56.2.8: error: missing documentation for macro References: <496db844-cb0b-1b53-b498-beec9324b9c0@gmail.com> Date: Fri, 05 Apr 2019 01:22:14 +0200 In-Reply-To: (Graham Perrin's message of "Thu, 4 Apr 2019 07:49:00 +0100") Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 98E3E6AD2F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.93)[-0.932,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Apr 2019 23:22:19 -0000 Graham Perrin writes: > On 17/03/2019 16:25, Jan Beich wrote: > >> =E2=80=A6 or add MOZ_OPTIONS+=3D--disable-stylo to Makefile.local. =E2= =80=A6 > > Thanks again. This was one of a handful of keys to success. > > ---- > > One thing puzzles me. I found it necessary to _manually_ > remove the LLVM_CONFIG=3Dllvm-config80 line from: > > /usr/ports/www/waterfox/work/Waterfox-56.2.8/.mozconfig LLVM_CONFIG is added to mozconfig by Mk/bsd.gecko.mk in order to force a specific version of devel/llvm*. Try the following instead: Index: Mk/bsd.gecko.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- Mk/bsd.gecko.mk (revision 496825) +++ Mk/bsd.gecko.mk (working copy) @@ -92,7 +92,9 @@ CONFIGURE_OUTSOURCE=3D yes =20 BUNDLE_LIBS=3D yes =20 -.if ${MOZILLA_VER:R:R} >=3D 56 +.if ${MOZILLA} =3D=3D waterfox +MOZ_OPTIONS+=3D --disable-stylo +.elif ${MOZILLA_VER:R:R} >=3D 56 BUILD_DEPENDS+=3D llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} MOZ_EXPORT+=3D LLVM_CONFIG=3Dllvm-config${LLVM_DEFAULT} # Require newer Clang than what's in base system unless user opted out