- May 23, 2024
-
-
In file included from ../../modules/demux/adaptive/logic/RateBasedAdaptationLogic.h:29, from ../../modules/demux/adaptive/logic/RateBasedAdaptationLogic.cpp:28: ../../modules/demux/adaptive/logic/../tools/MovingAverage.hpp:32:33: warning: template-id not allowed for constructor in C++20 [-Wtemplate-id-cdtor] 32 | MovingAverageSum<T>(T i): sum(0), prev(i) { } | ^ ../../modules/demux/adaptive/logic/../tools/MovingAverage.hpp:32:33: note: remove the ‘< >’
-
-
-
-
-
In file included from ../../modules/access/dtv/access.c:27: ../../modules/access/dtv/access.c: In function ‘GetSingleDelivery’: ../../modules/access/dtv/access.c:922:21: error: argument 1 in call to function ‘__builtin_stdc_trailing_zeros’ has enumerated type 922 | return 1 << stdc_trailing_zeros(d); | ^~~~~~~~~~~~~~~~~~~ ../../modules/access/dtv/access.c:923:1: warning: control reaches end of non-void function [-Wreturn-type] 923 | } | ^
-
- May 22, 2024
-
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
-
The asdcplib code contains a C++ template which refers to member variables that doesn't exist. Earlier, this hasn't been an issue, as the C++ template never is instantiated, but current Clang versions (the upcoming 19.x version) diagnoses such issues already before the class is instantiated, leading to compilation errors on the asdcplib code. This applies https://github.com/cinecert/asdcplib/pull/137 (which hasn't yet received any attention), fixing https://github.com/cinecert/asdcplib/issues/136.
-
- May 21, 2024
-
-
Thomas Guillem authored
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- May 19, 2024
-
-
KF6WindowSystem requires Qt6Gui, but not Qt6Core. And Qt6Gui does not require Qt6Core. The symbol `qt_version_tag` is available in Qt6Core.
-
DirectWrite should work better on Windows, and static linking to FreeType increases the size considerably.
-
Here, the root window is supposed to be the screen's root window.
-
-
-
A convenient control, designed to be used as a progress indicator. Contains a text alongside a busy indicator, with round rectangular semi-translucent background.
-
-
-
-
-
- May 18, 2024
-
-
Currently, when creating lua.pc, unwanted strings are added into the file, for example, inspecting a lua.pc file from $PREFIX/lib/pkgconfig/lua.pc gives: make[2]: Entering directory 'foo/bar' <intended lua.pc content here> make[2]: Leaving directory 'foo/bar' Mitigate this by using --no-print-directory flag when running the internal make command from its Makefile.
-
If $PREFIX/lib/pkgconfig/ directory already not created, lua puts lua.pc as $PREFIX/lib/pkgconfig file. Therefore $PREFIX/lib/pkgconfig cannot be created or used by any other contrib tools. This causes various other tools that need to put pkgconfig in that directory (including lua itself) fail to finish the building process. Fix this by creating a pkgconfig directory if it does not exist before lua build tries to copy pkgconfig there.
-