I tried to make patch
Now make install works on termux, but I am not sure how it affects other systems ср, 26 февр. 2025 г., 20:31 Andrew Randrianasulu <[email protected]>: > > > ср, 26 февр. 2025 г., 20:28 Andrew Randrianasulu <[email protected] > >: > >> So,I moved to compile git of cinelerra-gg as promised and run into this: >> >> BlendAlgebraStart:10:10: fatal error: 'values.h' file not found >> >> and few more error lines like this >> >> >> on make install for shared libs termux build (blds/termux_dyn.bld). >> >> For what exactly values.h is used? ;) >> > > https://groups.google.com/g/comp.lang.mumps/c/p6TZgGmowR0 > > > may be values.h can be replaced with float.h and limits.h on termux ? > > >
From d4c8c20160f1d37c1bae0fd07dc0336b1f7cda1b Mon Sep 17 00:00:00 2001 From: Andrew Randrianasulu <[email protected]> Date: Wed, 26 Feb 2025 20:35:32 +0300 Subject: [PATCH] Replace values.h with float.h in blendAlgebra/blendProgram plugins, for termux --- cinelerra-5.1/plugins/blendalgebra/BlendAlgebraStart | 2 +- cinelerra-5.1/plugins/blendprogram/BlendProgramStart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cinelerra-5.1/plugins/blendalgebra/BlendAlgebraStart b/cinelerra-5.1/plugins/blendalgebra/BlendAlgebraStart index 251f1549..f95b0801 100644 --- a/cinelerra-5.1/plugins/blendalgebra/BlendAlgebraStart +++ b/cinelerra-5.1/plugins/blendalgebra/BlendAlgebraStart @@ -7,7 +7,7 @@ #include <unistd.h> #include <string.h> #include <math.h> -#include <values.h> +#include <float.h> #include <limits.h> /* These six must match enum BC_CModel from guicast/bccmodels.h */ diff --git a/cinelerra-5.1/plugins/blendprogram/BlendProgramStart b/cinelerra-5.1/plugins/blendprogram/BlendProgramStart index 1eae23c1..783d2375 100644 --- a/cinelerra-5.1/plugins/blendprogram/BlendProgramStart +++ b/cinelerra-5.1/plugins/blendprogram/BlendProgramStart @@ -7,7 +7,7 @@ #include <unistd.h> #include <string.h> #include <math.h> -#include <values.h> +#include <float.h> #include <limits.h> /* These six must match enum BC_CModel from guicast/bccmodels.h */ -- 2.48.1
-- Cin mailing list [email protected] https://lists.cinelerra-gg.org/mailman/listinfo/cin

