head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.08.27.01.23.17; author gutteridge; state Exp; branches; next ; commitid jHXIs10wmSYxkdTG; desc @@ 1.1 log @firefox153: import Firefox 153.1 as www/firefox153 Mozilla Firefox is a free, open-source and cross-platform web browser for Windows, Linux, MacOS X and many other operating systems. It is fast and easy to use, and offers many advantages over other web browsers, such as tabbed browsing and the ability to block pop-up windows. Firefox also offers excellent bookmark and history management, and it can be extended by developers using industry standards such as XML, CSS, JavaScript, C++, etc. Many extensions are available. Note: Due to upstream's trademark policies, this package identifies as "Nightly" rather than "Firefox" by default. This package provides Firefox 153 Extended Support Release. @ text @$NetBSD: patch-mozglue_misc_Now.cpp,v 1.1 2026/07/23 13:33:41 ryoon Exp $ * If CLOCK_BOOTTIME is not available, return 0 instead of Nothing(). This fixes incorrect assert at AudioSessionManager.cpp:57 introduced in 153.0. --- mozglue/misc/Now.cpp.orig 2026-07-23 01:36:06.678846874 +0000 +++ mozglue/misc/Now.cpp @@@@ -89,16 +89,13 @@@@ Maybe NowIncludingSuspendMs() { } Maybe NowIncludingSuspendMs() { -# ifndef CLOCK_BOOTTIME - return Nothing(); -# else struct timespec ts = {0}; - +# ifdef CLOCK_BOOTTIME if (clock_gettime(CLOCK_BOOTTIME, &ts)) { return Nothing(); } - return Some(TimespecToMilliseconds(ts)); # endif + return Some(TimespecToMilliseconds(ts)); } #else // catch all @