head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2026.08.27.01.23.16; 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-media_ffvpx_libavutil_arm_bswap.h,v 1.4 2026/01/19 12:06:04 ryoon Exp $ avutil/arm/bswap.h is preferred over the system's due to Firefox's include path order. This breaks and others, so make sure to pull in the system header when this happens. --- media/ffvpx/libavutil/arm/bswap.h.orig 2025-12-31 13:17:28.000000000 +0000 +++ media/ffvpx/libavutil/arm/bswap.h @@@@ -16,6 +16,10 @@@@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#if defined(__NetBSD__) +#include "/usr/include/arm/bswap.h" +#endif + #ifndef AVUTIL_ARM_BSWAP_H #define AVUTIL_ARM_BSWAP_H @@@@ -23,6 +27,8 @@@@ #include "config.h" #include "libavutil/attributes.h" +#ifndef __aarch64__ + #ifdef __ARMCC_VERSION #if HAVE_ARMV6 @@@@ -46,5 +52,7 @@@@ static av_always_inline av_const unsigned av_bswap16(u } #endif #endif /* __ARMCC_VERSION */ + +#endif /* __aarch64__ */ #endif /* AVUTIL_ARM_BSWAP_H */ @