summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
Diffstat (limited to 'www')
-rw-r--r--www/firefox-esr/Makefile2
-rw-r--r--www/firefox-esr/files/patch-bug16189142
-rw-r--r--www/firefox/Makefile2
-rw-r--r--www/firefox/files/patch-bug16189142
4 files changed, 4 insertions, 4 deletions
diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile
index abb64c3ff7bf..456491746ef9 100644
--- a/www/firefox-esr/Makefile
+++ b/www/firefox-esr/Makefile
@@ -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 \
diff --git a/www/firefox-esr/files/patch-bug1618914 b/www/firefox-esr/files/patch-bug1618914
index dda6b52abe2d..a2966b44f5e7 100644
--- a/www/firefox-esr/files/patch-bug1618914
+++ b/www/firefox-esr/files/patch-bug1618914
@@ -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);
diff --git a/www/firefox/Makefile b/www/firefox/Makefile
index 51ec9786cc8c..4c829c7bad8e 100644
--- a/www/firefox/Makefile
+++ b/www/firefox/Makefile
@@ -3,7 +3,7 @@
PORTNAME= firefox
DISTVERSION= 77.0
-PORTREVISION= 3
+PORTREVISION= 4
PORTEPOCH= 1
CATEGORIES= www
MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
diff --git a/www/firefox/files/patch-bug1618914 b/www/firefox/files/patch-bug1618914
index dda6b52abe2d..a2966b44f5e7 100644
--- a/www/firefox/files/patch-bug1618914
+++ b/www/firefox/files/patch-bug1618914
@@ -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);