Changes since 1.3:
- Turn off MK_DEBUG_FILES, it doesn't make sense for arduino.
- Changing "cd dir && make" with "make -C dir" solves parallel
build failures.
While we're here, remove RUN_DEPENDS; we're just installing files
that can be used devel/arduino or devel/arduino18. Also break up
long lines.
sys/sysctl.h needs to be included after sys/types.h.
For once_flag, threads.h needs to be included.
For call_once, absl/base/call_once.h needs to be included.
MFH: 2020Q3 (fix build blanket)
EDK2 is a modern, feature-rich, cross-platform firmware development
environment for the UEFI and PI specifications from www.uefi.org.
The port currently support 3 flavors: macchiatobin, rpi3 and rpi4.
August 08, 2020. KDE today announces the release of KDE Frameworks 5.73.0.
KDE Frameworks are over 70 addon libraries to Qt which provide a wide variety
of commonly needed functionality in mature, peer reviewed and well tested
libraries with friendly licensing terms. For an introduction see the KDE
Frameworks web page.
This release is part of a series of planned monthly releases making
improvements available to developers in a quick and predictable manner.
Changelog:
https://kde.org/announcements/kde-frameworks-5.73.0
PR: 248534
Exp-run by: antoine
Some mingling with headers is required to build abseil properly.
BoringSSL doesn't support powerpc and powerpc64 at all, only powerpc64le (ppc64le) is supported, so use system OpenSSL. BoringSSL is used because ALPN support is required, but it was implemented back in OpenSSL 1.0.2, which even stable/11 branch has. There's no need to use external SSL library at all.
Bump PORTREVISION because of package change.
PR: 248550
Approved by: vanilla (maintainer)
MFH: 2020Q3 (fix build blanket)
- this minor release includes a fix to handles graphic/poppler's changed
versioning scheme
PR: 248530
PR: 248419
Approved by: Samy Mahmoudi <samy.mahmoudi@gmail.com> (maintainer)
seatd is a seat management deamon, that does everything it needs to
do. Nothing more, nothing less. Depends only on libc.
libseat is a seat management library allowing applications to use
whatever seat management is available.
Supports:
- seatd
- (e)logind
- embedded seatd for standalone operation
Each backend can be compile-time included and is runtime auto-detected
or manually selected with the `LIBSEAT_BACKEND` environment variable.
Which backend is in use is transparent to the application, providing a
simple common interface.
WWW: https://git.sr.ht/~kennylevinsen/seatd
2020.08.09:
- Changed the parameter signature of the "RawVideoRTPSink" constructor and "createNew()"
functions so that the "width" parameter comes before the "height" parameter. This order
- "width", "height" - is more common, and is the order used when these parameters are
defined in RFC 4175.
IMPORTANT NOTE: Because the types of these two parameters are the same, existing application
code that uses "RawVideoRTPSink" will compile without error; however, it will not work
properly unless the order of the parameters in the call to "RawVideoRTPSink::createNew()"
is changed.
The sole consumer multimedia/vlc does not use RawVideoRTPSink, so no patching is required.
- diffing the distfile used when creating the initial update in r544379 with the one
on the server now leads to:
live/liveMedia/Makefile.tail:
-include/RawVideoRTPSink.hh: include/VideoRTPSink.hh include/RawVideoFrameParameters.hh
+include/RawVideoRTPSink.hh: include/VideoRTPSink.hh RawVideoFrameParameters.hh
The moved header file is identical.
In file included from /usr/local/include/obs/graphics/../util/sse-intrin.h:63:
In file included from /usr/lib/clang/10.0.1/include/xmmintrin.h:13:
/usr/lib/clang/10.0.1/include/mmintrin.h:33:5: error: use of undeclared identifier '__builtin_ia32_emms'; did you mean '__builtin_isless'?
I cannot figure out how to easily fix this in the included CMakefile.txt.
Approved by: portmgr (tier-2 blanket)