svn commit: r537140 - in head: mail/thunderbird mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files

Jan Beich jbeich at FreeBSD.org
Sun May 31 09:24:22 UTC 2020


Author: jbeich
Date: Sun May 31 09:24:20 2020
New Revision: 537140
URL: https://svnweb.freebsd.org/changeset/ports/537140

Log:
  www/firefox: don't abort WaylandShmPool::Resize if posix_fallocate succeeds
  
  PR:		240884
  Submitted by:	tijl
  Pointy hat to:	jbeich

Modified:
  head/mail/thunderbird/Makefile   (contents, props changed)
  head/mail/thunderbird/files/patch-bug1618914   (contents, props changed)
  head/www/firefox-esr/Makefile   (contents, props changed)
  head/www/firefox-esr/files/patch-bug1618914   (contents, props changed)
  head/www/firefox/Makefile   (contents, props changed)
  head/www/firefox/files/patch-bug1618914   (contents, props changed)

Modified: head/mail/thunderbird/Makefile
==============================================================================
--- head/mail/thunderbird/Makefile	Sun May 31 09:23:52 2020	(r537139)
+++ head/mail/thunderbird/Makefile	Sun May 31 09:24:20 2020	(r537140)
@@ -3,7 +3,7 @@
 
 PORTNAME=	thunderbird
 DISTVERSION=	68.8.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	mail news net-im
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
 		MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source

Modified: head/mail/thunderbird/files/patch-bug1618914
==============================================================================
--- head/mail/thunderbird/files/patch-bug1618914	Sun May 31 09:23:52 2020	(r537139)
+++ head/mail/thunderbird/files/patch-bug1618914	Sun May 31 09:24:20 2020	(r537140)
@@ -37,7 +37,7 @@ index 9a73326399bd5..9e42a7f1c5d18 100644
      errno = posix_fallocate(mShmPoolFd, 0, aSize);
    } while (errno == EINTR);
 -  if (errno != 0) return false;
-+  if (errno != EINVAL && errno != EOPNOTSUPP) return false;
++  if (errno != 0 && errno != EINVAL && errno != EOPNOTSUPP) return false;
  #endif
  
    wl_shm_pool_resize(mShmPool, aSize);

Modified: head/www/firefox-esr/Makefile
==============================================================================
--- head/www/firefox-esr/Makefile	Sun May 31 09:23:52 2020	(r537139)
+++ head/www/firefox-esr/Makefile	Sun May 31 09:24:20 2020	(r537140)
@@ -3,7 +3,7 @@
 
 PORTNAME=	firefox
 DISTVERSION=	68.9.0
-PORTREVISION=	1
+PORTREVISION=	2
 PORTEPOCH=	1
 CATEGORIES=	www
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \

Modified: head/www/firefox-esr/files/patch-bug1618914
==============================================================================
--- head/www/firefox-esr/files/patch-bug1618914	Sun May 31 09:23:52 2020	(r537139)
+++ head/www/firefox-esr/files/patch-bug1618914	Sun May 31 09:24:20 2020	(r537140)
@@ -37,7 +37,7 @@ index 9a73326399bd5..9e42a7f1c5d18 100644
      errno = posix_fallocate(mShmPoolFd, 0, aSize);
    } while (errno == EINTR);
 -  if (errno != 0) return false;
-+  if (errno != EINVAL && errno != EOPNOTSUPP) return false;
++  if (errno != 0 && errno != EINVAL && errno != EOPNOTSUPP) return false;
  #endif
  
    wl_shm_pool_resize(mShmPool, aSize);

Modified: head/www/firefox/Makefile
==============================================================================
--- head/www/firefox/Makefile	Sun May 31 09:23:52 2020	(r537139)
+++ head/www/firefox/Makefile	Sun May 31 09:24:20 2020	(r537140)
@@ -3,7 +3,7 @@
 
 PORTNAME=	firefox
 DISTVERSION=	77.0
-PORTREVISION=	3
+PORTREVISION=	4
 PORTEPOCH=	1
 CATEGORIES=	www
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \

Modified: head/www/firefox/files/patch-bug1618914
==============================================================================
--- head/www/firefox/files/patch-bug1618914	Sun May 31 09:23:52 2020	(r537139)
+++ head/www/firefox/files/patch-bug1618914	Sun May 31 09:24:20 2020	(r537140)
@@ -37,7 +37,7 @@ index 9a73326399bd5..9e42a7f1c5d18 100644
      errno = posix_fallocate(mShmPoolFd, 0, aSize);
    } while (errno == EINTR);
 -  if (errno != 0) return false;
-+  if (errno != EINVAL && errno != EOPNOTSUPP) return false;
++  if (errno != 0 && errno != EINVAL && errno != EOPNOTSUPP) return false;
  #endif
  
    wl_shm_pool_resize(mShmPool, aSize);


More information about the svn-ports-head mailing list