svn commit: r537141 - in branches/2020Q2: 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:26:45 UTC 2020
Author: jbeich
Date: Sun May 31 09:26:43 2020
New Revision: 537141
URL: https://svnweb.freebsd.org/changeset/ports/537141
Log:
MFH: r537140
www/firefox: don't abort WaylandShmPool::Resize if posix_fallocate succeeds
PR: 240884
Submitted by: tijl
Pointy hat to: jbeich
Approved by: ports-secteam blanket
Modified:
branches/2020Q2/mail/thunderbird/Makefile
branches/2020Q2/mail/thunderbird/files/patch-bug1618914
branches/2020Q2/www/firefox-esr/Makefile
branches/2020Q2/www/firefox-esr/files/patch-bug1618914
branches/2020Q2/www/firefox/Makefile
branches/2020Q2/www/firefox/files/patch-bug1618914
Directory Properties:
branches/2020Q2/ (props changed)
Modified: branches/2020Q2/mail/thunderbird/Makefile
==============================================================================
--- branches/2020Q2/mail/thunderbird/Makefile Sun May 31 09:24:20 2020 (r537140)
+++ branches/2020Q2/mail/thunderbird/Makefile Sun May 31 09:26:43 2020 (r537141)
@@ -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: branches/2020Q2/mail/thunderbird/files/patch-bug1618914
==============================================================================
--- branches/2020Q2/mail/thunderbird/files/patch-bug1618914 Sun May 31 09:24:20 2020 (r537140)
+++ branches/2020Q2/mail/thunderbird/files/patch-bug1618914 Sun May 31 09:26:43 2020 (r537141)
@@ -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: branches/2020Q2/www/firefox-esr/Makefile
==============================================================================
--- branches/2020Q2/www/firefox-esr/Makefile Sun May 31 09:24:20 2020 (r537140)
+++ branches/2020Q2/www/firefox-esr/Makefile Sun May 31 09:26:43 2020 (r537141)
@@ -3,7 +3,7 @@
PORTNAME= firefox
DISTVERSION= 68.8.0
-PORTREVISION= 3
+PORTREVISION= 4
PORTEPOCH= 1
CATEGORIES= www
MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \
Modified: branches/2020Q2/www/firefox-esr/files/patch-bug1618914
==============================================================================
--- branches/2020Q2/www/firefox-esr/files/patch-bug1618914 Sun May 31 09:24:20 2020 (r537140)
+++ branches/2020Q2/www/firefox-esr/files/patch-bug1618914 Sun May 31 09:26:43 2020 (r537141)
@@ -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: branches/2020Q2/www/firefox/Makefile
==============================================================================
--- branches/2020Q2/www/firefox/Makefile Sun May 31 09:24:20 2020 (r537140)
+++ branches/2020Q2/www/firefox/Makefile Sun May 31 09:26:43 2020 (r537141)
@@ -3,7 +3,7 @@
PORTNAME= firefox
DISTVERSION= 76.0.1
-PORTREVISION= 3
+PORTREVISION= 4
PORTEPOCH= 1
CATEGORIES= www
MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
Modified: branches/2020Q2/www/firefox/files/patch-bug1618914
==============================================================================
--- branches/2020Q2/www/firefox/files/patch-bug1618914 Sun May 31 09:24:20 2020 (r537140)
+++ branches/2020Q2/www/firefox/files/patch-bug1618914 Sun May 31 09:26:43 2020 (r537141)
@@ -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-all
mailing list