Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Nov 2025 12:45:28 +0000
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: ba6e4050b72a - main - www/firefox: fix build on powerpc64*
Message-ID:  <691dbbe8.25316.519b71ba@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=ba6e4050b72aa341f1dbcbe03448e3a6fcf7af23

commit ba6e4050b72aa341f1dbcbe03448e3a6fcf7af23
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2025-11-18 19:28:00 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2025-11-19 12:45:13 +0000

    www/firefox: fix build on powerpc64*
    
    Currently x_error_trap.cc is added twice to sources on powerpc64*, which
    causes an error.
---
 .../files/patch-dom_media_webrtc_libwebrtc__overrides_moz.build  | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/www/firefox/files/patch-dom_media_webrtc_libwebrtc__overrides_moz.build b/www/firefox/files/patch-dom_media_webrtc_libwebrtc__overrides_moz.build
index d9dde78484f2..ac01cff0e211 100644
--- a/www/firefox/files/patch-dom_media_webrtc_libwebrtc__overrides_moz.build
+++ b/www/firefox/files/patch-dom_media_webrtc_libwebrtc__overrides_moz.build
@@ -7,7 +7,7 @@ diff --git dom/media/webrtc/libwebrtc_overrides/moz.build dom/media/webrtc/libwe
 index ed9c450e5649..1ac213e48b28 100644
 --- dom/media/webrtc/libwebrtc_overrides/moz.build
 +++ dom/media/webrtc/libwebrtc_overrides/moz.build
-@@ -34,7 +34,7 @@ UNIFIED_SOURCES += [
+@@ -49,13 +49,13 @@
      "call/call_basic_stats.cc",
  ]
  
@@ -16,3 +16,10 @@ index ed9c450e5649..1ac213e48b28 100644
      CXXFLAGS += CONFIG["MOZ_X11_CFLAGS"]
      UNIFIED_SOURCES += [
          "modules/desktop_capture/linux/x11/x_error_trap.cc",
+     ]
+ 
+-if CONFIG["TARGET_CPU"] in ("loongarch64", "ppc64"):
++if CONFIG["TARGET_CPU"] in ("loongarch64"):
+     UNIFIED_SOURCES += [
+         "modules/desktop_capture/linux/x11/x_error_trap.cc",
+     ]


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?691dbbe8.25316.519b71ba>