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:   wiz
Date:           Sun Jul 14 16:06:00 UTC 2024

Modified Files:
        pkgsrc/www/firefox: distinfo
Added Files:
        pkgsrc/www/firefox/patches: patch-js_src_old-configure.in

Log Message:
firefox: fix unportable test(1) operator


To generate a diff of this commit:
cvs rdiff -u -r1.533 -r1.534 pkgsrc/www/firefox/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/www/firefox/patches/patch-js_src_old-configure.in

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.533 pkgsrc/www/firefox/distinfo:1.534
--- pkgsrc/www/firefox/distinfo:1.533   Sat Jul 13 22:10:30 2024
+++ pkgsrc/www/firefox/distinfo Sun Jul 14 16:06:00 2024
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.533 2024/07/13 22:10:30 ryoon Exp $
+$NetBSD: distinfo,v 1.534 2024/07/14 16:06:00 wiz Exp $
 
 BLAKE2s (firefox-128.0.source.tar.xz) = 15e583fae33ff3a002adafe157df40054e7e3ceb594f50ad7a0cb8d2c99622c0
 SHA512 (firefox-128.0.source.tar.xz) = 309c0e2a0bea5699e6daf4fa02300ad7fd118d2c02c35cb5fa97a5fcc6e250cc7aec34e50fe872b8fd516436bfcfe37ddf33c9d0f9291860388cd6f3f08ea9f1
@@ -22,6 +22,7 @@ SHA1 (patch-ipc_chromium_src_base_platfo
 SHA1 (patch-ipc_glue_GeckoChildProcessHost.cpp) = 63fbee04321f7ade20db4ccc1a1218b848344ce1
 SHA1 (patch-js-src-jit-arm64-vixl-MozCpu-vixl.cpp) = d90fca47d79551fd74214d47f8184670b901b792
 SHA1 (patch-js_src_jit_FlushICache.cpp) = d1e611eaf7d7be22abfac6b39fbcd99df3570e47
+SHA1 (patch-js_src_old-configure.in) = 589e24765615ede2c3c6abfe0b3529c5645193ed
 SHA1 (patch-js_src_util_NativeStack.cpp) = a0a16d8d8d78d3cc3f4d2a508586f1a7821f7dba
 SHA1 (patch-media_ffvpx_libavutil_arm_bswap.h) = de58daa0fd23d4fec50426602b65c9ea5862558a
 SHA1 (patch-media_libpng_pngpriv.h) = 8320a1f7534ed5c4914b597bb3d6117d0060318f

Added files:

Index: pkgsrc/www/firefox/patches/patch-js_src_old-configure.in
diff -u /dev/null pkgsrc/www/firefox/patches/patch-js_src_old-configure.in:1.1
--- /dev/null   Sun Jul 14 16:06:00 2024
+++ pkgsrc/www/firefox/patches/patch-js_src_old-configure.in    Sun Jul 14 16:06:00 2024
@@ -0,0 +1,15 @@
+$NetBSD: patch-js_src_old-configure.in,v 1.1 2024/07/14 16:06:00 wiz Exp $
+
+Fix unportable test(1) operator.
+
+--- js/src/old-configure.in.orig       2024-07-14 16:00:40.315149382 +0000
++++ js/src/old-configure.in
+@@ -257,7 +257,7 @@ case "$target" in
+ 
+ *-android*|*-linuxandroid*)
+     MOZ_OPTIMIZE_FLAGS="-O3"
+-    if test "$CC_TYPE" == gcc ; then
++    if test "$CC_TYPE" = gcc ; then
+        MOZ_OPTIMIZE_FLAGS="-fno-reorder-functions $MOZ_OPTIMIZE_FLAGS"
+     fi
+     ;;



Home | Main Index | Thread Index | Old Index