NHOrus
NHOrus
For current version from git, gtest subprojects need patching, too. Or removal as bundled dependency.
Put absolute path to ffmpeg in there.
in config: ``` [FFmpeg] ffmpeg = ffmpeg.exe ``` for example, in my config, I have ``` [FFmpeg] ffmpeg = D:/ffmpeg/bin/ffmpeg ```
One of the problems is usage of GNU basename instead of POSIX basename
Right solution would be something like: ```java File temporaryfile = File(name) String temppath = temporaryfile.getParent() String tempname = temporaryfile.getName().replace('.', File.separator).concat(".java") String filename = temppath + File.separator + tempname ``` But...
Elaborating: That line replaces all the dots in the path string with slashes, because it expects that only classname at the end of the name contains dots. Assumption that is...
Problem appears with C23, could be reproduced by compiling panel with GCC-14 or Clang-18 (or later) and `-std=c23` or `-std=gnu23` CFLAG appended
``` diff -ru a/bdb/Makefile b/bdb/Makefile --- a/bdb/Makefile 2024-06-05 17:06:40.098823516 -0000 +++ b/bdb/Makefile 2024-06-05 17:06:45.520796235 -0000 @@ -23,9 +23,14 @@ #*---------------------------------------------------------------------*/ #* Booting bdb on a bare system */ #*---------------------------------------------------------------------*/ -boot:...
Basically, I throw explicit dependencies until it stops trying to compile in wrong order. And I also removing cd dir; make antipattern - there's make -C for that. Only thing...
Changes made