Skip to Content.
Sympa Menu

sm-commit - [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (a14f77534ac7a17b50f1a9631c187e2a4d4bd9c1)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (a14f77534ac7a17b50f1a9631c187e2a4d4bd9c1)
  • Date: Mon, 26 Feb 2024 03:51:06 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

http/firefox/HISTORY | 3 +
http/firefox/patches/0005-bmo-1559213-Support-system-av1.patch | 2 -
http/firefox/patches/0028-bmo-1881123-musl-use-res_query.patch | 17
++++++++++
3 files changed, 21 insertions(+), 1 deletion(-)

New commits:
commit a14f77534ac7a17b50f1a9631c187e2a4d4bd9c1
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

http/firefox: updated patches for 123.0

diff --git a/http/firefox/HISTORY b/http/firefox/HISTORY
index 2d85408..0d64459 100644
--- a/http/firefox/HISTORY
+++ b/http/firefox/HISTORY
@@ -1,3 +1,6 @@
+2024-02-25 Pavel Vinogradov <public AT sourcemage.org>
+ * patches/*: updated
+
2024-02-20 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 123.0, SECURITY_PATCH++
* DEPENDS: nss >= 3.97
diff --git a/http/firefox/patches/0005-bmo-1559213-Support-system-av1.patch
b/http/firefox/patches/0005-bmo-1559213-Support-system-av1.patch
index 6664a80..f60e095 100644
--- a/http/firefox/patches/0005-bmo-1559213-Support-system-av1.patch
+++ b/http/firefox/patches/0005-bmo-1559213-Support-system-av1.patch
@@ -71,7 +71,7 @@ diff -up firefox-122.0/toolkit/moz.configure.system-av1
firefox-122.0/toolkit/mo

# JXL Image Codec Support
# ==============================================================
-diff -up a/config/external/gkcodecs/moz.build
b/config/external/gkcodecs/moz.build
+diff -Naur a/config/external/gkcodecs/moz.build
b/config/external/gkcodecs/moz.build
--- a/config/external/gkcodecs/moz.build 2024-02-14 07:18:40 UTC
+++ b/config/external/gkcodecs/moz.build
@@ -16,3 +16,5 @@ if CONFIG["MOZ_SYSTEM_LIBVPX"]:
diff --git a/http/firefox/patches/0028-bmo-1881123-musl-use-res_query.patch
b/http/firefox/patches/0028-bmo-1881123-musl-use-res_query.patch
new file mode 100644
index 0000000..1b6474a
--- /dev/null
+++ b/http/firefox/patches/0028-bmo-1881123-musl-use-res_query.patch
@@ -0,0 +1,17 @@
+musl doesn't have res_nquery - fall back to res_query
+--- a/netwerk/dns/PlatformDNSUnix.cpp
++++ b/netwerk/dns/PlatformDNSUnix.cpp
+@@ -32,11 +32,11 @@
+ rv = packet.FillBuffer(
+ [&](unsigned char response[DNSPacket::MAX_SIZE]) -> int {
+ int len = 0;
+-#if defined(XP_LINUX)
++#if defined(__GLIBC__)
+ len = res_nquery(&_res, host.get(), ns_c_in,
+ nsIDNSService::RESOLVE_TYPE_HTTPSSVC, response,
+ DNSPacket::MAX_SIZE);
+-#elif defined(XP_MACOSX)
++#elif defined(XP_LINUX) || defined(XP_MACOSX)
+ len =
+ res_query(host.get(), ns_c_in,
nsIDNSService::RESOLVE_TYPE_HTTPSSVC,
+ response, DNSPacket::MAX_SIZE);


  • [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (a14f77534ac7a17b50f1a9631c187e2a4d4bd9c1), Pavel Vinogradov, 02/25/2024

Archive powered by MHonArc 2.6.24.

Top of Page