From owner-dev-commits-ports-main@freebsd.org Sat Aug 14 21:16:03 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4E48D653896; Sat, 14 Aug 2021 21:16:03 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GnCrz1pxMz4n9n; Sat, 14 Aug 2021 21:16:03 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 061B6132C; Sat, 14 Aug 2021 21:16:03 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 17ELG2PZ098901; Sat, 14 Aug 2021 21:16:02 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 17ELG2LL098900; Sat, 14 Aug 2021 21:16:02 GMT (envelope-from git) Date: Sat, 14 Aug 2021 21:16:02 GMT Message-Id: <202108142116.17ELG2LL098900@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Christoph Moench-Tegeder Subject: git: f9af88868ddb - main - www/firefox: depend on libepoll-shim MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: cmt X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: f9af88868ddbbc81bf16226dc529a550a387e589 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2021 21:16:03 -0000 The branch main has been updated by cmt: URL: https://cgit.FreeBSD.org/ports/commit/?id=f9af88868ddbbc81bf16226dc529a550a387e589 commit f9af88868ddbbc81bf16226dc529a550a387e589 Author: Christoph Moench-Tegeder AuthorDate: 2021-08-14 21:13:09 +0000 Commit: Christoph Moench-Tegeder CommitDate: 2021-08-14 21:13:09 +0000 www/firefox: depend on libepoll-shim libxul.so clearly links against libepoll-shim, and we have reports of firefox failing to start without libepoll-shim. this also affects mail/thunderbird (once we land it), so fix the problem in bsd.gecko.mk. First reports are against firefox 90, set the version cutoff accordingly. PR: 257490 Reported by: Maxim Filimonov --- Mk/bsd.gecko.mk | 3 +++ www/firefox/Makefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk index 023140b8b050..d9c05283ae2d 100644 --- a/Mk/bsd.gecko.mk +++ b/Mk/bsd.gecko.mk @@ -85,6 +85,9 @@ LIB_DEPENDS+= libdrm.so:graphics/libdrm .if ${MOZILLA_VER:R:R} >= 85 RUN_DEPENDS+= ${LOCALBASE}/lib/libpci.so:devel/libpci .endif +.if ${MOZILLA_VER:R:R} >= 90 +LIB_DEPENDS+= libepoll-shim.so:devel/libepoll-shim +.endif MOZ_EXPORT+= ${CONFIGURE_ENV} \ PERL="${PERL}" \ PYTHON3="${PYTHON_CMD}" \ diff --git a/www/firefox/Makefile b/www/firefox/Makefile index c73afc944cf5..647294641f7d 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -2,7 +2,7 @@ PORTNAME= firefox DISTVERSION= 91.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 2 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \