Date: Wed, 06 Mar 2024 09:19:46 +0000 From: bugzilla-noreply@freebsd.org To: gecko@FreeBSD.org Subject: [Bug 277021] www/firefox: error on start after updating to 123.0 (rc1, rc2) Message-ID: <bug-277021-21738-M0iUCjm7aD@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-277021-21738@https.bugs.freebsd.org/bugzilla/> References: <bug-277021-21738@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D277021 --- Comment #84 from Tatsuki Makino <tatsuki_makino@hotmail.com> --- The problem with aom-related symbols (ld.lld: warning: undefined symbol: ao= m_*) could be fixed with www/firefox/files/patch-bug1559213 modification. This file seems to be an attempt to use libaom in conjunction with the activation of MOZ_AV1. If so, we would have to add the libaom flags and libraries at the same time= in patch for media/ffvpx/libavcodec/moz.build. Like this :) + if CONFIG["MOZ_SYSTEM_AV1"]: + CFLAGS +=3D CONFIG['MOZ_SYSTEM_LIBDAV1D_CFLAGS'] + OS_LIBS +=3D CONFIG['MOZ_SYSTEM_LIBDAV1D_LIBS'] + CFLAGS +=3D CONFIG['MOZ_SYSTEM_LIBAOM_CFLAGS'] + OS_LIBS +=3D CONFIG['MOZ_SYSTEM_LIBAOM_LIBS'] + else: + USE_LIBS +=3D [ + 'dav1d', + 'media_libdav1d_asm', + 'aom', + ] But, this is my fantasy. I have not tested it yet :) --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-277021-21738-M0iUCjm7aD>