Bento4 is a C++ class library and tools designed to read/write ISO-MP4 files.
This format is defined in international specifications ISO/IEC:
14496-12
14496-14
14496-15
Sponsored by: Netzkommune GmbH
libaegisub/common/character_count.cpp:41:12: error: use of undeclared identifier 'BreakIterator'; did you mean 'UBreakIterator'?
bi.reset(BreakIterator::createCharacterInstance(Locale::getDefault(), status));
^~~~~~~~~~~~~
UBreakIterator
/usr/local/include/unicode/ubrk.h:28:35: note: 'UBreakIterator' declared here
typedef struct UBreakIterator UBreakIterator;
^
libaegisub/common/character_count.cpp:41:12: error: incomplete type 'UBreakIterator' named in nested name specifier
bi.reset(BreakIterator::createCharacterInstance(Locale::getDefault(), status));
^~~~~~~~~~~~~~~
/usr/local/include/unicode/ubrk.h:28:20: note: forward declaration of 'UBreakIterator'
typedef struct UBreakIterator UBreakIterator;
^
libaegisub/common/character_count.cpp:41:51: error: use of undeclared identifier 'Locale'; did you mean 'icu::Locale'?
bi.reset(BreakIterator::createCharacterInstance(Locale::getDefault(), status));
^~~~~~
icu::Locale
/usr/local/include/unicode/locid.h:188:20: note: 'icu::Locale' declared here
class U_COMMON_API Locale : public UObject {
^
libaegisub/common/character_count.cpp:63:46: error: use of undeclared identifier 'BreakIterator'; did you mean 'UBreakIterator'?
for (auto end = character_bi.next(); end != BreakIterator::DONE; pos = end, end = character_bi.next()) {
^~~~~~~~~~~~~
UBreakIterator
/usr/local/include/unicode/ubrk.h:28:35: note: 'UBreakIterator' declared here
typedef struct UBreakIterator UBreakIterator;
^
libaegisub/common/character_count.cpp:63:46: error: incomplete type 'UBreakIterator' named in nested name specifier
for (auto end = character_bi.next(); end != BreakIterator::DONE; pos = end, end = character_bi.next()) {
^~~~~~~~~~~~~~~
/usr/local/include/unicode/ubrk.h:28:20: note: forward declaration of 'UBreakIterator'
typedef struct UBreakIterator UBreakIterator;
^
libaegisub/common/character_count.cpp:148:14: error: use of undeclared identifier 'BreakIterator'; did you mean 'UBreakIterator'?
if (end == BreakIterator::DONE)
^~~~~~~~~~~~~
UBreakIterator
/usr/local/include/unicode/ubrk.h:28:35: note: 'UBreakIterator' declared here
typedef struct UBreakIterator UBreakIterator;
^
libaegisub/common/character_count.cpp:148:14: error: incomplete type 'UBreakIterator' named in nested name specifier
if (end == BreakIterator::DONE)
^~~~~~~~~~~~~~~
/usr/local/include/unicode/ubrk.h:28:20: note: forward declaration of 'UBreakIterator'
typedef struct UBreakIterator UBreakIterator;
^
https://ssl.icu-project.org/trac/changeset/40705
PR: 227042
Reported by: antoine (via exp-run)
For the qt5-* ports bsd.qt.mk sets EXTRACT_AFTER_ARGS, and
thereby does not get the normal default value of
--no-same-owner --no-same-permissions
passed when extracting. This lead to for example header files
being installed (i.e. copied), with permissions group write
permissions.
Manually append that to the bsd.qt.mk shenanigans (also do the
same in www/qt5-webchannel, which opts out of the bsd.qt.mk value)
PR: 227027
Reported by: grarpamp@gmail.com
Some ports do not honour $LD or -fuse-ld=bfd in $CFLAGS, but do invoke
ld via $PATH. Automatically set BINARY_ALIAS+=ld=${LD} when LLD_UNSAFE
is active to use ld.bfd for these ports.
Approved by: portmgr (antoine)
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D14876
This port fails when attempting to link with lld as the system linker.
PR: 226990
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation
Ports using libxine fail to link due to shared library protected
visibility symbol preemption issues. Set LLD_UNSAFE to use ld.bfd.
PR: 214864, 226981
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation
Ports using libxine fail to link due to shared library protected
visibility symbol preemption issues. Set LLD_UNSAFE to use ld.bfd.
PR: 214864, 226981
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation
Ports using libxine fail to link due to shared library protected
visibility symbol preemption issues. Set LLD_UNSAFE to use ld.bfd.
PR: 214864, 226981
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation
Convert multimedia/mythtv-frontend to a slave port of multimedia/mythtv
which should make future updates much easier.
Upstream security patches have been added to address known
vulnerabilities in the bundled ffmpeg 3.2.
PR: 225652 (initial patches to update to 29.0) [1]
Submitted by: <lucylangthorne55@gmail.com> [1]
Differential Revision: https://reviews.freebsd.org/D14563