пн, 16 дек. 2024 г., 15:01 Mat via Cin <[email protected]>:
> I tried this on fairly vanilla Ubuntu 24.04 in a Vbox VM, which was > never used for CinGG compilations. > > 1. Getting the source from git, applying your patch, then running > "blds/bld-prepare.sh ubuntu24" gave some errors. These were caused the > the first wrong line of the ubuntu24 section, after the backslash there > was text (starting with texinfo) which should be on the next line. After > fixing that, bld_prepare ran OK. > hopefully like attached patch? (doing this from Termux so no obvious way to test) > 2. "./autogen.sh" ran OK. > > 3. "./configure" ran OK by the looks of it. There are quite a few number > of "no" answers in the HAVE section (attached), but if any of those are > required for CinGG to run they should be in the prepare script, I think. > > 4. "make" ran to completion, gave me a single cin executable in the bin > directory. Running that gave quite a few errors, then a segfault. I've > attached the errors that came up. > > MatN > > > On Mon, 16 Dec 2024 09:00:38 +0300 > Andrew Randrianasulu via Cin <[email protected]> wrote: > > > I have Ubuntu Studio 24.04.x on slow usb drive. > > > > I tried to get cingg sources there and compile her. It seems few > > packages changed their name (fftw3) or disappeared (python2) so I > > edited new case for our bld_prepare.sh script. > > > > git am patch attached, but it will be nice if anyone tested that on > > another ubuntu 24.04.x system > > -- > Cin mailing list > [email protected] > https://lists.cinelerra-gg.org/mailman/listinfo/cin >
From 5d8edfbd63f3c91b595838e7136b997a5d84d32b Mon Sep 17 00:00:00 2001 From: Andrew Randrianasulu <[email protected]> Date: Mon, 16 Dec 2024 16:10:22 +0300 Subject: [PATCH 2/2] Actually fix bld_prepare.sh for ubuntu24 case by MatN --- cinelerra-5.1/blds/bld_prepare.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cinelerra-5.1/blds/bld_prepare.sh b/cinelerra-5.1/blds/bld_prepare.sh index a90e3cab..c2953216 100755 --- a/cinelerra-5.1/blds/bld_prepare.sh +++ b/cinelerra-5.1/blds/bld_prepare.sh @@ -119,7 +119,8 @@ case "$dir" in ;; #ub24.04 "ubuntu24") - apt-get -y install apt-file sox nasm yasm g++ build-essential libz-dev \ texinfo libpng-dev freeglut3-dev libxv-dev libasound2-dev libbz2-dev \ + apt-get -y install apt-file sox nasm yasm g++ build-essential libz-dev \ + texinfo libpng-dev freeglut3-dev libxv-dev libasound2-dev libbz2-dev \ libncurses5-dev libxinerama-dev libfreetype6-dev libxft-dev libgif-dev \ libtiff5-dev exuberant-ctags ttf-bitstream-vera xfonts-75dpi xfonts-100dpi \ fonts-dejavu libopenexr-dev libavc1394-dev festival-dev lv2-dev libfftw3-dev gdb \ -- 2.47.1
-- Cin mailing list [email protected] https://lists.cinelerra-gg.org/mailman/listinfo/cin

