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:           Tue Sep  1 15:55:09 UTC 2026

Modified Files:
        pkgsrc/www/firefox: distinfo
Added Files:
        pkgsrc/www/firefox/patches:
            patch-toolkit_components_remote_nsXRemoteServer.cpp

Log Message:
www/firefox: Fix build error, Success is not declared

Reported by Thomas Klausner and Marc Baudoin. Thank you.


To generate a diff of this commit:
cvs rdiff -u -r1.592 -r1.593 pkgsrc/www/firefox/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/www/firefox/patches/patch-toolkit_components_remote_nsXRemoteServer.cpp

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.592 pkgsrc/www/firefox/distinfo:1.593
--- pkgsrc/www/firefox/distinfo:1.592   Sun Aug 30 10:19:31 2026
+++ pkgsrc/www/firefox/distinfo Tue Sep  1 15:55:09 2026
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.592 2026/08/30 10:19:31 ryoon Exp $
+$NetBSD: distinfo,v 1.593 2026/09/01 15:55:09 ryoon Exp $
 
 BLAKE2s (firefox-154.0.1.source.tar.xz) = af7f275f0ba5056d1e749692e880f5067e56234752ed63f63124a5bf2621e512
 SHA512 (firefox-154.0.1.source.tar.xz) = 9141e34978c2ecbe1b267b3cc63136142625734618e67cbbbf6536e1427af66d01f19851200eba0db7c715991f39e7d5d0200abb9e2cd7c15d58a8a411b1b412
@@ -68,6 +68,7 @@ SHA1 (patch-third__party_sqlite3_ext_moz
 SHA1 (patch-third__party_sqlite3_src_moz.build) = b26856a4b87aa12211575d9982f62dc899474b52
 SHA1 (patch-third__party_wasm2c_src_c-writer.cc) = 38eb2ee0e00722aa1380540b83648b43723719aa
 SHA1 (patch-third__party_wasm2c_src_prebuilt_wasm2c__source__includes.cc) = 99d0db944f0c2d0c623460991efd423d9127c988
+SHA1 (patch-toolkit_components_remote_nsXRemoteServer.cpp) = abb0e5c49c1aa21907e7a1358114fa60b377fdb8
 SHA1 (patch-toolkit_components_terminator_nsTerminator.cpp) = e905e38ef1b88d764c695c019f15609350c1c43b
 SHA1 (patch-toolkit_moz.configure) = 1306e7ac3c3939886aff38a58dd3162e6517409b
 SHA1 (patch-toolkit_mozapps_installer_packager.mk) = c77481a1f8fe1e237b7fe87e3e586ca886ac1d3d

Added files:

Index: pkgsrc/www/firefox/patches/patch-toolkit_components_remote_nsXRemoteServer.cpp
diff -u /dev/null pkgsrc/www/firefox/patches/patch-toolkit_components_remote_nsXRemoteServer.cpp:1.1
--- /dev/null   Tue Sep  1 15:55:09 2026
+++ pkgsrc/www/firefox/patches/patch-toolkit_components_remote_nsXRemoteServer.cpp      Tue Sep  1 15:55:09 2026
@@ -0,0 +1,15 @@
+$NetBSD: patch-toolkit_components_remote_nsXRemoteServer.cpp,v 1.1 2026/09/01 15:55:09 ryoon Exp $
+
+* Fix error, Success is not defined,
+
+--- toolkit/components/remote/nsXRemoteServer.cpp.orig 2026-09-01 13:28:58.404435470 +0000
++++ toolkit/components/remote/nsXRemoteServer.cpp
+@@ -110,7 +110,7 @@ bool nsXRemoteServer::HandleNewProperty(XID aWindowId,
+ 
+     // Failed to get property off the window or
+     // got a part only
+-    if (result != Success || bytes_after != 0) {
++    if (result != X11Success || bytes_after != 0) {
+       return false;
+     }
+ 



Home | Main Index | Thread Index | Old Index