pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/firefox
Module Name: pkgsrc
Committed By: ryoon
Date: Thu Jul 16 15:18:46 UTC 2026
Modified Files:
pkgsrc/www/firefox: distinfo
pkgsrc/www/firefox/patches:
patch-third__party_rust_mtu_src_bindings_netbsd.rs
Log Message:
www/firefox: Try to fix builds under both of NetBSD/{i386,amd64}
To generate a diff of this commit:
cvs rdiff -u -r1.584 -r1.585 pkgsrc/www/firefox/distinfo
cvs rdiff -u -r1.1 -r1.2 \
pkgsrc/www/firefox/patches/patch-third__party_rust_mtu_src_bindings_netbsd.rs
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/www/firefox/distinfo
diff -u pkgsrc/www/firefox/distinfo:1.584 pkgsrc/www/firefox/distinfo:1.585
--- pkgsrc/www/firefox/distinfo:1.584 Thu Jul 16 13:11:48 2026
+++ pkgsrc/www/firefox/distinfo Thu Jul 16 15:18:46 2026
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.584 2026/07/16 13:11:48 ryoon Exp $
+$NetBSD: distinfo,v 1.585 2026/07/16 15:18:46 ryoon Exp $
BLAKE2s (firefox-152.0.6.source.tar.xz) = 825eccafa3d1b7735f684b375d7cda3420f31014c7e728f8a9450be3835318cf
SHA512 (firefox-152.0.6.source.tar.xz) = c4d877837d7007fb611c38d49d9b6dd3bc4c5c9ca900b54e722e140ce7ecd0924f69b5cedc7f8c1fe602e7efe1d7159b019de27999e29235cd631821bb13e6b0
@@ -57,7 +57,7 @@ SHA1 (patch-third__party_libwebrtc_rtc__
SHA1 (patch-third__party_libwebrtc_rtc__base_physical__socket__server.cc) = 6909c4da9e7b3785252e5bce9be0ff47ebb87e01
SHA1 (patch-third__party_libwebrtc_rtc__base_platform__thread__types.cc) = 8ae75100775037347008d168eedc151e0e993b0f
SHA1 (patch-third__party_python_dlmanager_check.py) = 69054522d8ced8cb47e65e5a8b1a87ed5ce6708e
-SHA1 (patch-third__party_rust_mtu_src_bindings_netbsd.rs) = 235919eb1efc80a153d8236c572c38847354e2e2
+SHA1 (patch-third__party_rust_mtu_src_bindings_netbsd.rs) = c22e6994a925fbcccf54ac8a7308382e54bd5d0c
SHA1 (patch-third__party_sqlite3_ext_moz.build) = 026483e9cdc61eda80b699978b1677e1b6d3ff6d
SHA1 (patch-third__party_sqlite3_src_moz.build) = b26856a4b87aa12211575d9982f62dc899474b52
SHA1 (patch-third__party_wasm2c_src_c-writer.cc) = 38eb2ee0e00722aa1380540b83648b43723719aa
Index: pkgsrc/www/firefox/patches/patch-third__party_rust_mtu_src_bindings_netbsd.rs
diff -u pkgsrc/www/firefox/patches/patch-third__party_rust_mtu_src_bindings_netbsd.rs:1.1 pkgsrc/www/firefox/patches/patch-third__party_rust_mtu_src_bindings_netbsd.rs:1.2
--- pkgsrc/www/firefox/patches/patch-third__party_rust_mtu_src_bindings_netbsd.rs:1.1 Thu Jul 16 13:11:49 2026
+++ pkgsrc/www/firefox/patches/patch-third__party_rust_mtu_src_bindings_netbsd.rs Thu Jul 16 15:18:46 2026
@@ -1,4 +1,4 @@
-$NetBSD: patch-third__party_rust_mtu_src_bindings_netbsd.rs,v 1.1 2026/07/16 13:11:49 ryoon Exp $
+$NetBSD: patch-third__party_rust_mtu_src_bindings_netbsd.rs,v 1.2 2026/07/16 15:18:46 ryoon Exp $
* Fix build under NetBSD/i386 10.
@@ -19,13 +19,13 @@ $NetBSD: patch-third__party_rust_mtu_src
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
-+ #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
++ #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
["Size of timespec"][::std::mem::size_of::<timespec>() - 16usize];
-+ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
++ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "64")))]
+ ["Size of timespec"][::std::mem::size_of::<timespec>() - 12usize];
-+ #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
++ #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
["Alignment of timespec"][::std::mem::align_of::<timespec>() - 8usize];
-+ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
++ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "64")))]
+ ["Alignment of timespec"][::std::mem::align_of::<timespec>() - 4usize];
["Offset of field: timespec::tv_sec"][::std::mem::offset_of!(timespec, tv_sec) - 0usize];
["Offset of field: timespec::tv_nsec"][::std::mem::offset_of!(timespec, tv_nsec) - 8usize];
@@ -34,13 +34,13 @@ $NetBSD: patch-third__party_rust_mtu_src
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
-+ #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
++ #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
["Size of if_data"][::std::mem::size_of::<if_data>() - 136usize];
-+ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
++ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "64")))]
+ ["Size of if_data"][::std::mem::size_of::<if_data>() - 132usize];
-+ #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
++ #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
["Alignment of if_data"][::std::mem::align_of::<if_data>() - 8usize];
-+ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
++ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "64")))]
+ ["Alignment of if_data"][::std::mem::align_of::<if_data>() - 4usize];
["Offset of field: if_data::ifi_type"][::std::mem::offset_of!(if_data, ifi_type) - 0usize];
["Offset of field: if_data::ifi_addrlen"]
@@ -49,9 +49,9 @@ $NetBSD: patch-third__party_rust_mtu_src
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
["Size of rt_metrics"][::std::mem::size_of::<rt_metrics>() - 80usize];
-+ #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
++ #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
["Alignment of rt_metrics"][::std::mem::align_of::<rt_metrics>() - 8usize];
-+ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
++ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "64")))]
+ ["Alignment of rt_metrics"][::std::mem::align_of::<rt_metrics>() - 4usize];
["Offset of field: rt_metrics::rmx_locks"]
[::std::mem::offset_of!(rt_metrics, rmx_locks) - 0usize];
@@ -60,9 +60,9 @@ $NetBSD: patch-third__party_rust_mtu_src
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
["Size of rt_msghdr"][::std::mem::size_of::<rt_msghdr>() - 120usize];
-+ #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
++ #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
["Alignment of rt_msghdr"][::std::mem::align_of::<rt_msghdr>() - 8usize];
-+ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
++ #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "64")))]
+ ["Alignment of rt_msghdr"][::std::mem::align_of::<rt_msghdr>() - 4usize];
["Offset of field: rt_msghdr::rtm_msglen"]
[::std::mem::offset_of!(rt_msghdr, rtm_msglen) - 0usize];
Home |
Main Index |
Thread Index |
Old Index