Date: Wed, 21 Aug 2024 19:49:22 +0000 From: bugzilla-noreply@freebsd.org To: desktop@FreeBSD.org Subject: [Bug 275914] www/webkit2-gtk{3,4}: Flavorize?: Deal with 4.0, 4.1 and 6.0 SONAMEs Message-ID: <bug-275914-39348-S7Nndq57rQ@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-275914-39348@https.bugs.freebsd.org/bugzilla/> References: <bug-275914-39348@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=3D275914 --- Comment #36 from shamaz.mazum@gmail.com --- (In reply to Nuno Teixeira from comment #35) With all respect, I am 90% sure, you are doing something wrong. /wrkdirs/usr/ports/www/webkit2-gtk3/work/webkitgtk-2.42.4/Source/WebCore/pl= atform/MediaSample.h:65:83: note: copy constructor of '(unnamed union at /wrkdirs/usr/ports/www/webkit2-gtk3/work/webkitgtk-2.42.4/Source /WebCore/platform/MediaSample.h:61:5)' is implicitly deleted because variant field 'byteRangeSample' has a non-trivial copy constructor std::pair<MTPluginByteSourceRef, std::reference_wrapper<const TrackInfo>> byteRangeSample; =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20 ^ 1 error generated. This says exactly that the patch wasn't applied. Can you show the output of the following program compiled with that compile= r? #include <iostream> #include <utility> #include <type_traits> int main () { bool trivial =3D std::is_trivially_copy_constructible<std::pair<int, in= t>>(); std::cout << "std::pair copy constructor is " << (trivial ? "trivial" : "non-trivial") << std::endl; return 0; } --=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-275914-39348-S7Nndq57rQ>