Building Cingg from git using system FFmpeg and libs (Slowroll)
After getting the generic built environment for Cingg on openSUSE-Slowroll in place, it's time to continue with the steps to get Cingg built from git using the system FFmpeg and libs. First a reference to and from the previous thread https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008652.html ---------------- from the manual 1.3.8 Unbundled Builds "There are some generic build scripts included in the CINELERRA-GG GIT repository for users who want to do unbundled builds with ffmpeg already available on their system. This has been tested on Arch, Ubuntu 18, FreeBSD, Windows10 and Leap 15 (rpm) at the time this was documented. The names of the build scripts are: arch.bld, bsd.bld, deb.bld, rpm.bld, and cygwin.bld. These scripts are in the blds subdirectory." from 1.3.3 in the manual): Notes about Building from Git in your Customized Environment Getting a build to work in a custom environment is not easy. If you have already installed libraries which are normally in the thirdparty build, getting them to be recognized means you have to install the devel version so the header files which match the library interfaces exist. If you want to build using only the thirdparty libraries installed in your system, just include "–without-thirdparty" to your configure script. For example: ./configure --with-single-user --disable-static-build --without-thirdparty Below is the list of thirdparty builds, but this list may have changed over time. Table 1.1: List of thirdparty builds a52dec yes djbfft yes ffmpeg yes fftw auto flac auto giflib yes ilmbase auto lame auto libavc1394 auto libraw1394 auto libiec61883 auto libdv auto .......snip The yes means force build and auto means probe and use the system version if the build operation is not static. To get your customized build to work, you need to change the probe options for the conflicting libraries from yes to auto, or even rework the configure.ac script. There may be several libraries which need special treatment. An example of a problem you might encounter with your customized installation is with a52dec which has probes line (CHECK_LIB/CHECK_HEADERS) in configure.ac, but djbfft does not. In this case, djbfft is only built because a52dec is built, so if your system has a52dec, set a52dec to auto and see if that problem is solved by retrying the build with: ./configure --with-single-user -enable-a52dec=auto . With persistence, you can get results, but it may take several tries to stabilize the build. If you need help, email the log and config.log, which is usually sufficient to determine why a build failed. If you have already installed the libfdk_aac development package on your computer because you prefer this version over the default aac, you will have to do the following to get this alternative operational. The libfdk_aac library is not a part of CINELERRA-GG by default because it is not license free. export FFMPEG_EXTRA_CFG=" --enable-libfdk-aac --enable-nonfree" export EXTRA_LIBS=" -lfdk-aac" for f in `grep -lw aac cinelerra-5.1/ffmpeg/audio/*`; do sed -e 's/\<aac\>/libfdk_aac/' -i $f done -------------- FFmpeg from Packman (thirdparty for Slowroll) has the following capabilities enabled and typical Hwaccel methods available: ffmpeg -hwaccels ffmpeg version 7.0 Copyright (c) 2000-2024 the FFmpeg developers built with gcc 14 (SUSE Linux) configuration: --prefix=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --incdir=/usr/include/ffmpeg --extra-cflags='-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto -ffat-lto-objects -g' --optflags='-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto -ffat-lto-objects -g' --disable-htmlpages --enable-pic --disable-stripping --enable-shared --disable-static --enable-gpl --enable-version3 --enable-libsmbclient --disable-openssl --enable-gnutls --enable-ladspa --enable-libshaderc --enable-vulkan --enable-libplacebo --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libdc1394 --enable-libdrm --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libjack --enable-libjxl --enable-librist --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopenh264-dlopen --enable-libopus --enable-libpulse --enable-librav1e --enable-librubberband --enable-libsvtav1 --enable-libsoxr --enable-libspeex --enable-libssh --enable-libsrt --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libxml2 --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lto --enable-lv2 --enable-libvpl --enable-vaapi --enable-vdpau --enable-version3 --enable-libfdk-aac-dlopen --enable-nonfree --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-libx264 --enable-libx265 --enable-libxvid libavutil 59. 8.100 / 59. 8.100 libavcodec 61. 3.100 / 61. 3.100 libavformat 61. 1.100 / 61. 1.100 libavdevice 61. 1.100 / 61. 1.100 libavfilter 10. 1.100 / 10. 1.100 libswscale 8. 1.100 / 8. 1.100 libswresample 5. 1.100 / 5. 1.100 libpostproc 58. 1.100 / 58. 1.100 Hardware acceleration methods: vdpau cuda vaapi qsv drm vulkan ------------------- Suggestions to modified/additional procedure steps to build Cingg from git using the system FFmpeg and libs continued from the previous thread? https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008655.html
вс, 22 сент. 2024 г., 13:56 Terje J. Hanssen via Cin < [email protected]>:
After getting the generic built environment for Cingg on openSUSE-Slowroll in place, it's time to continue with the steps to get Cingg built from git using the system FFmpeg and libs.
First a reference to and from the previous thread https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008652.html
---------------- from the manual 1.3.8 Unbundled Builds "There are some generic build scripts included in the CINELERRA-GG GIT repository for users who want to do unbundled builds with ffmpeg already available on their system. This has been tested on Arch, Ubuntu 18, FreeBSD, Windows10 and Leap 15 (rpm) at the time this was documented. The names of the build scripts are: arch.bld, bsd.bld, deb.bld, rpm.bld, and cygwin.bld. These scripts are in the blds subdirectory."
from 1.3.3 in the manual): Notes about Building from Git in your Customized Environment Getting a build to work in a custom environment is not easy. If you have already installed libraries which are normally in the thirdparty build, getting them to be recognized means you have to install the devel version so the header files which match the library interfaces exist. If you want to build using only the thirdparty libraries installed in your system, just include "–without-thirdparty" to your configure script. For example:
./configure --with-single-user --disable-static-build --without-thirdparty
Below is the list of thirdparty builds, but this list may have changed over time.
Table 1.1: List of thirdparty builds
a52dec yes djbfft yes ffmpeg yes fftw auto flac auto giflib yes ilmbase auto lame auto libavc1394 auto libraw1394 auto libiec61883 auto libdv auto .......snip
The yes means force build and auto means probe and use the system version if the build operation is not static. To get your customized build to work, you need to change the probe options for the conflicting libraries from yes to auto, or even rework the configure.ac script. There may be several libraries which need special treatment.
An example of a problem you might encounter with your customized installation is with a52dec which has probes line (CHECK_LIB/CHECK_HEADERS) in configure.ac, but djbfft does not. In this case, djbfft is only built because a52dec is built, so if your system has a52dec, set a52dec to auto and see if that problem is solved by retrying the build with:
./configure --with-single-user -enable-a52dec=auto .
With persistence, you can get results, but it may take several tries to stabilize the build. If you need help, email the log and config.log, which is usually sufficient to determine why a build failed.
If you have already installed the libfdk_aac development package on your computer because you prefer this version over the default aac, you will have to do the following to get this alternative operational. The libfdk_aac library is not a part of CINELERRA-GG by default because it is not license free.
export FFMPEG_EXTRA_CFG=" --enable-libfdk-aac --enable-nonfree" export EXTRA_LIBS=" -lfdk-aac" for f in `grep -lw aac cinelerra-5.1/ffmpeg/audio/*`; do sed -e 's/\<aac\>/libfdk_aac/' -i $f done --------------
FFmpeg from Packman (thirdparty for Slowroll) has the following capabilities enabled and typical Hwaccel methods available:
ffmpeg -hwaccels ffmpeg version 7.0 Copyright (c) 2000-2024 the FFmpeg developers built with gcc 14 (SUSE Linux) configuration: --prefix=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --incdir=/usr/include/ffmpeg --extra-cflags='-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto -ffat-lto-objects -g' --optflags='-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto -ffat-lto-objects -g' --disable-htmlpages --enable-pic --disable-stripping --enable-shared --disable-static --enable-gpl --enable-version3 --enable-libsmbclient --disable-openssl --enable-gnutls --enable-ladspa --enable-libshaderc --enable-vulkan --enable-libplacebo --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libdc1394 --enable-libdrm --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libjack --enable-libjxl --enable-librist --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopenh264-dlopen --enable-libopus --enable-libpulse --enable-librav1e --enable-librubberband --enable-libsvtav1 --enable-libsoxr --enable-libspeex --enable-libssh --enable-libsrt --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libxml2 --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lto --enable-lv2 --enable-libvpl --enable-vaapi --enable-vdpau --enable-version3 --enable-libfdk-aac-dlopen --enable-nonfree --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-libx264 --enable-libx265 --enable-libxvid libavutil 59. 8.100 / 59. 8.100 libavcodec 61. 3.100 / 61. 3.100 libavformat 61. 1.100 / 61. 1.100 libavdevice 61. 1.100 / 61. 1.100 libavfilter 10. 1.100 / 10. 1.100 libswscale 8. 1.100 / 8. 1.100 libswresample 5. 1.100 / 5. 1.100 libpostproc 58. 1.100 / 58. 1.100 Hardware acceleration methods: vdpau cuda vaapi qsv drm vulkan
-------------------
Suggestions to modified/additional procedure steps to build Cingg from git using the system FFmpeg and libs continued from the previous thread? https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008655.html
try ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx you might move just-build cingg+plugins in "bin" directory somewhere away in case you will want to make more tests with it, then run "make clean" configure line as above, make, make install
-- Cin mailing list [email protected] https://lists.cinelerra-gg.org/mailman/listinfo/cin
Den 22.09.2024 15:56, skrev Andrew Randrianasulu:
вс, 22 сент. 2024 г., 13:56 Terje J. Hanssen via Cin <[email protected]>:
After getting the generic built environment for Cingg on openSUSE-Slowroll in place, it's time to continue with the steps to get Cingg built from git using the system FFmpeg and libs.
First a reference to and from the previous thread https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008652.html
...snip
-------------------
Suggestions to modified/additional procedure steps to build Cingg from git using the system FFmpeg and libs continued from the previous thread? https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008655.html
try
./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
you might move just-build cingg+plugins in "bin" directory somewhere away in case you will want to make more tests with it, then run "make clean" configure line as above, make, make install
I'm late due to some other matter today. # cd /home/cinelerra/cinelerra-5.1/bin Moved cin and plugins to a backup directory I take a checkpoint here, in case I did something wrong: 4) ./configure wasn't found, so I ran 3) ./autogen.sh first as we did in the previous thread ? Output as follows below: # cd /home/cinelerra/cinelerra-5.1 # make clean for dir in thirdparty libzmpeg3 mpeg2enc mplexlo db guicast cinelerra plugins doc po; do make -C $dir clean; done make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' for f in a52dec djbfft ffmpeg fftw flac giflib ladspa lame libavc1394 libraw1394 libiec61883 libdv libjpeg opus openjpeg libogg libsndfile libtheora libuuid libvorbis mjpegtools openexr openExr ilmBase tiff twolame x264 x265 libvpx lv2 sratom serd sord lilv suil libaom dav1d libwebp ffnvcodec libdpx; do rm -rf $f*; done rm -rf /home/cinelerra/cinelerra-5.1/thirdparty/../thirdparty/build make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' rm -rf x86_64 tags make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mplexlo' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mplexlo' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Nothing to be done for 'clean'. make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast' rm -rf x86_64 make -C xfer clean make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' rm -rf x86_64 xfer*.[Ch] make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/cinelerra' rm -rf x86_64 rm -f shuttle_keys.h make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/plugins' rm -rf 1080to480/x86_64 1080to540/x86_64 720to480/x86_64 aging/x86_64 alpha/x86_64 scaleratio/x86_64 audioscope/x86_64 bandslide/x86_64 bandwipe/x86_64 bluebanana/x86_64 blur/x86_64 boxblur/x86_64 brightness/x86_64 burn/x86_64 C41/x86_64 chorus/x86_64 chromakey/x86_64 chromakeyhsv/x86_64 chromakeyavid/x86_64 color3way/x86_64 colorbalance/x86_64 colorspace/x86_64 compressor/x86_64 compressormulti/x86_64 crikey/x86_64 crop/x86_64 crossfade/x86_64 dcoffset/x86_64 decimate/x86_64 deinterlace/x86_64 deinterlace-cv/x86_64 delayaudio/x86_64 delayvideo/x86_64 denoise/x86_64 denoisefft/x86_64 denoiseseltempavg/x86_64 denoisevideo/x86_64 descratch/x86_64 despike/x86_64 diffkey/x86_64 dissolve/x86_64 dot/x86_64 downsample/x86_64 edge/x86_64 echo/x86_64 echocancel/x86_64 fieldframe/x86_64 flanger/x86_64 flash/x86_64 flip/x86_64 foreground/x86_64 framefield/x86_64 freeverb/x86_64 freezeframe/x86_64 gain/x86_64 gamma/x86_64 gradient/x86_64 graphic/x86_64 histeq/x86_64 histogram/x86_64 histogram_bezier/x86_64 holo/x86_64 huesaturation/x86_64 interpolate/x86_64 interpolateaudio/x86_64 interpolatevideo/x86_64 invertaudio/x86_64 invertvideo/x86_64 irissquare/x86_64 ivtc/x86_64 lens/x86_64 level/x86_64 libeffecttv/x86_64 linearblur/x86_64 liveaudio/x86_64 livevideo/x86_64 loopaudio/x86_64 loopvideo/x86_64 mirror/x86_64 motion/x86_64 motion51/x86_64 motion2point/x86_64 motionblur/x86_64 normalize/x86_64 oilpainting/x86_64 overlay/x86_64 overlayaudio/x86_64 parametric/x86_64 perspective/x86_64 photoscale/x86_64 posterize/x86_64 pitch/x86_64 polar/x86_64 radialblur/x86_64 reframe/x86_64 reframert/x86_64 removegaps/x86_64 reroute/x86_64 resample/x86_64 resamplert/x86_64 reverb/x86_64 reverseaudio/x86_64 reversevideo/x86_64 rgb601/x86_64 rgbshift/x86_64 rotate/x86_64 rumbler/x86_64 scale/x86_64 sketcher/x86_64 shapewipe/x86_64 sharpen/x86_64 shiftinterlace/x86_64 slide/x86_64 spectrogram/x86_64 speed_pc/x86_64 spherecam/x86_64 svg/x86_64 swapchannels/x86_64 swapframes/x86_64 swatch/x86_64 synthesizer/x86_64 threshold/x86_64 timeavg/x86_64 timeblur/x86_64 timefront/x86_64 timelapsehelper/x86_64 timestretch/x86_64 timestretchrt/x86_64 titler/x86_64 tracer/x86_64 translate/x86_64 tremolo/x86_64 unsharp/x86_64 videoscope/x86_64 wave/x86_64 whirl/x86_64 wipe/x86_64 yuv/x86_64 yuv411/x86_64 yuvshift/x86_64 zoom/x86_64 zoomblur/x86_64 theme_blond_cv/x86_64 theme_blue_dot/x86_64 theme_bright/x86_64 theme_hulk/x86_64 theme_neophyte/x86_64 theme_pinklady/x86_64 theme_suv/x86_64 theme_unflat/x86_64 theme_cakewalk/x86_64 cdripper/x86_64 theme_blond/x86_64 theme_blue/x86_64 rm -rf /home/cinelerra/cinelerra-5.1/plugins/../bin/plugins /home/cinelerra/cinelerra-5.1/plugins/../bin/ladspa make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/plugins' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/doc' rm -f cinelerra.html arrow.png autokeyframe.png camera.png channel.png crop.png cut.png expandpatch_checked.png eyedrop.png fitautos.png ibeam.png left_justify.png loadmode_cat.png loadmode_nested.png loadmode_newcat.png loadmode_new.png loadmode_newtracks.png loadmode_none.png loadmode_paste.png loadmode_resource.png magnify.png mask.png mutepatch_up.png paste.png projector.png protect.png recordpatch.png record.png rewind.png show_meters.png singleframe.png titlesafe.png toolwindow.png top_justify.png wrench.png make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/doc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/po' rm -f de.mo es.mo eu.mo fr.mo it.mo nb.mo pt.mo sl.mo hi.mo hu.mo ko.mo vi.mo zh.mo el.mo ja.mo uk.mo ru.mo make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/po' rm -rf thirdparty/opencv* rm -rf bin cinelerra/tags ./autogen.sh clean + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in config.sub config.status missing + rm -rf autom4te.cache m4 + '[' clean = clean ']' + exit 0 /home/cinelerra/cinelerra-5.1 # 4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx -bash: ./configure: No such file or directory 3) # ./autogen.sh + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in config.sub config.status missing + rm -rf autom4te.cache m4 + '[' '' = clean ']' + mkdir m4 + autoreconf --install libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'm4'. libtoolize: copying file 'm4/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. libtoolize: copying file 'm4/libtool.m4' libtoolize: copying file 'm4/ltoptions.m4' libtoolize: copying file 'm4/ltsugar.m4' libtoolize: copying file 'm4/ltversion.m4' libtoolize: copying file 'm4/lt~obsolete.m4' configure.ac:10: installing 'm4/compile' configure.ac:10: installing 'm4/config.guess' configure.ac:10: installing 'm4/config.sub' configure.ac:9: installing 'm4/install-sh' configure.ac:9: installing 'm4/missing' ++ uname -o + '[' GNU/Linux = Android ']' + '[' -e /system/bin/app_process ']' localhost:/home/cinelerra/cinelerra-5.1 # 4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx configure: loading site script /usr/share/site/x86_64-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether sleep supports fractional seconds... yes checking filesystem timestamp resolution... 0.01 checking whether build environment is sane... yes checking for a race-free mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking xargs -n works... yes checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking how to print strings... printf checking whether make supports the include directive... yes (GNU style) checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... none needed checking whether gcc understands -c and -o together... yes checking dependency style of gcc... none checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/x86_64-suse-linux/bin/ld checking if the linker (/usr/x86_64-suse-linux/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/x86_64-suse-linux/bin/ld option to reload object files... -r checking for file... file checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for a working dd... /usr/bin/dd checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 checking for mt... mt checking if mt is a manifest tool... no checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking dependency style of gcc... none checking for g++... g++ checking whether the compiler supports GNU C++... yes checking whether g++ accepts -g... yes checking for g++ option to enable C++11 features... none needed checking dependency style of g++... none checking how to run the C++ preprocessor... g++ -E checking for ld used by g++... /usr/x86_64-suse-linux/bin/ld -m elf_x86_64 checking if the linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... yes checking if g++ static flag -static works... no checking if g++ supports -c -o file.o... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for makeinfo... ${SHELL} '/home/cinelerra/cinelerra-5.1/m4/missing' makeinfo checking for gettext... gettext checking for libtool... $(SHELL) $(top_builddir)/libtool checking for gtk_init in -lm... yes checking for nasm... yes checking nasm x264 compatible... yes checking for yasm... yes checking for objcopy... yes checking for pactl... yes checking for gcc options needed to detect all undeclared functions... none needed checking whether X_HAVE_UTF8_STRING is declared... yes checking for XOpenDisplay in -lX11... yes checking for X11/X.h... yes checking X11 headers... yes checking for X11/keysym.h... yes checking X11 headers... yes checking for XShmQueryExtension in -lXext... yes checking for X11/Xlib.h... yes checking Xlib XShm extention... yes checking for XineramaQueryExtension in -lXinerama... yes checking for X11/extensions/Xinerama.h... yes checking Xinerama headers... yes checking for XFixesQueryVersion in -lXfixes... yes checking for BZ2_bzDecompress in -lbz2... yes checking for FcInit in -lfontconfig... yes checking for FT_Init_FreeType in -lfreetype... yes checking for lzma_version_number in -llzma... yes checking for png_read_png in -lpng... yes checking for pthread_create in -lpthread... yes checking for gzopen in -lz... yes checking for fftw_execute in -lfftw3... yes checking for fftw3.h... yes checking fftw headers... yes checking for uuid_clear in -luuid... yes checking for uuid/uuid.h... yes checking uuid headers... yes checking for linux/cdrom.h... yes checking linux cdrom headers... yes checking for sys/ioctl.h... yes checking linux sys... yes checking for FLAC__stream_decoder_new in -lFLAC... yes checking for FLAC/stream_decoder.h... yes checking FLAC headers... yes checking for lame_init in -lmp3lame... no checking for jpeg_start_decompress in -ljpeg... yes checking for stdio.h... (cached) yes checking jpeg headers... yes checking for opj_version in -lopenjp2... no checking for sf_open in -lsndfile... yes checking for sndfile.h... yes checking sndfile headers... yes checking for ImfOpenInputFile in -lIlmImf... no checking for ImfOpenInputFile in -lImath... no checking for vpx_codec_decode in -lvpx... no checking for mjpeg_info in -lmjpegutils... no checking for TIFFOpen in -ltiff... yes checking for tiff.h... yes checking tiff headers... yes checking for twolame_encode_buffer_float32_interleaved in -ltwolame... no checking for x264_encoder_encode in -lx264... yes checking for stdint.h... (cached) yes checking x264 headers... yes checking for x265_encoder_encode in -lx265... yes checking for x265.h... yes checking x265 headers... yes checking for opus_multistream_decoder_create in -lopus... yes checking for opus/opus_multistream.h... yes checking libopus headers... yes checking for aom_codec_version in -laom... no checking for dav1d_version in -ldav1d... no checking for WebPGetEncoderVersion in -lwebp... no checking for a52_init in -la52... no checking for encore.h... no checking encore headers... no checking for DGifOpen in -lgif... yes checking for gif_lib.h... yes checking gif lib headers... yes checking for jbg_dec_init in -ljbig... yes checking for vdp_device_create_x11 in -lvdpau... yes checking for vaInitialize in -lva... yes checking for va/va_x11.h... yes checking va x11 headers... yes checking for vaGetDisplay in -lva-x11... yes checking for va/va_drm.h... yes checking va drm headers... yes checking for vaGetDisplayDRM in -lva-drm... yes checking for glUseProgram in -lGL... yes checking for gluOrtho2D in -lGLU... yes checking for GL/gl.h... yes checking opengl headers... yes checking for XvQueryExtension in -lXv... yes checking for X11/Xlib.h... (cached) yes checking Xlib Xv extention... yes checking for sys/soundcard.h... yes checking oss headers... yes checking for XftInit in -lXft... yes checking for X11/Xlib.h... (cached) yes checking Xft/freetype headers... yes checking for snd_pcm_open in -lasound... yes checking for alsa/asoundlib.h... yes checking asound headers... yes checking for ogg_stream_init in -logg... yes checking for ogg/ogg.h... yes checking ogg headers... yes checking for theora_info_init in -ltheora... yes checking for theora/theoraenc.h... yes checking threora headers... yes checking for vorbis_encode_init in -lvorbisenc... yes checking for vorbis/vorbisenc.h... yes checking vorbis encoders headers... yes checking for ov_open in -lvorbisfile... yes checking for vorbis/vorbisfile.h... yes checking vorbis file headers... yes checking for avc1394_init_target in -lavc1394... yes checking for libavc1394/avc1394.h... yes checking libavc1394 headers... yes checking for rom1394_get_bus_id in -lrom1394... yes checking for libavc1394/rom1394.h... yes checking librom1394 headers... yes checking for iec61883_mpeg2_recv_init in -liec61883... yes checking for libiec61883/iec61883.h... yes checking libiec61883 headers... yes checking for raw1394_iso_recv_init in -lraw1394... yes checking for libraw1394/raw1394.h... yes checking libraw1394 headers... yes checking for dv_init in -ldv... yes checking for libdv/dv.h... yes checking libdv headers... yes checking for linux/dvb/dmx.h... yes checking dvb device headers... yes checking for linux/kernel.h... yes checking v4l2 system headers... yes checking for X11/Xlib.h... (cached) yes checking XF86VM headers... yes checking for esd.h... no checking esound headers... no checking for audiofile.h... no checking audiofile headers... no checking for pa_simple_new in -lpulse-simple... yes checking for pulse/simple.h... yes checking pulse-simple headers... yes checking for pa_context_new in -lpulse... yes checking for pulse/error.h... yes checking pulse headers... yes checking for linux/isofs.h... no checking isofs headers... no checking for X11/keysymdef.h... yes checking x11 keysym defs... yes checking for libusb_init in -lusb-1.0... yes checking for libusb-1.0/libusb.h... yes checking libusb headers... yes checking for lv2 availability... checking for lilv_world_new in -llilv-0... yes checking for sord_world_new in -lsord-0... yes checking for serd_reader_new in -lserd-0... yes checking for sratom_new in -lsratom-0... yes checking for lilv/lilv.h... yes checking lilv headers... yes checking for serd/serd.h... yes checking serd headers... yes checking for sord/sord.h... yes checking sord headers... yes checking for sratom/sratom.h... yes checking sratom headers... yes checking for suil_instance_new in -lsuil-0... yes checking for suil/suil.h... yes checking suil headers... yes checking for /usr/local/cuda/include/cuda.h... no checking cuda sdk... no checking for dlopen in -ldl... yes checking for numa_alloc in -lnuma... yes checking for openexr available... yes Reason Package ------ ------- disabled encore disabled audiofile disabled esound disabled libsvtav1 shared -ltheoraenc shared -ltheoradec shared -logg shared -lvorbis shared -lvorbisfile shared -logg shared -lImath shared -lIlmThread shared -lIex shared -lpthread shared -lfftw3 shared -lFLAC shared -lgif shared -lavc1394 shared -lrom1394 shared -lraw1394 shared -liec61883 shared -ldv shared -ljpeg shared -logg shared -lsndfile shared -ltheora shared -luuid shared -lvorbisenc shared -lvorbisfile shared -ltiff shared -lx264 shared -lx265 shared -lopus shared -llilv-0 shared -lsratom-0 shared -lserd-0 shared -lsord-0 shared -lsuil-0 system -lX11 system -lXext system -lXinerama system -lXfixes system -lbz2 system -lfontconfig system -lfreetype system -llzma system -lpng system -lpthread system -lz system -ljbig system -lvdpau system -lva system -lva-x11 system -lva-drm system -lGL system -lGLU system -lXv system -lXft system -lasound system -lpulse-simple system -lpulse system -lusb-1.0 system -ldl system -lnuma using: with-gl using: with-xft using: with-xxf86vm using: with-oss using: with-alsa using: with-firewire using: with-ogg using: with-dv using: with-dvb using: with-ladspa using: with-video4linux2 using: without-esound using: with-pulse using: with-pactl using: with-openexr using: with-lv2 using: without-commercial using: with-giflib using: with-libzmpeg using: without-libdpx using: with-shuttle using: with-shuttle_usb using: with-xv using: with-vaapi using: with-vdpau using: without-cuda using: with-nv using: with-wintv using: with-x10tv using: with-jobs = 32 using: exec-name = cin using: with-cinlib = $$CIN_PATH using: with-cindat = $$CIN_PATH using: with-config-dir = $$HOME/.bcast5 using: with-nested-dir = $$HOME/Videos using: with-snap-dir = $$HOME/Pictures using: with-browser = firefox using: with-plugin-dir = $$CIN_LIB/plugins using: with-ladspa-dir = $$CIN_LIB/ladspa using: with-opencv = no using: with-git-ffmpeg = no using: with-noelision = auto using: with-booby = no using: with-clang = no using: thirdparty build = no using: single-user = yes using: static-build = no using: ladspa-build = yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands # ./autogen.sh + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in config.sub config.status missing + rm -rf autom4te.cache m4 + '[' '' = clean ']' + mkdir m4 + autoreconf --install libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'm4'. libtoolize: copying file 'm4/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. libtoolize: copying file 'm4/libtool.m4' libtoolize: copying file 'm4/ltoptions.m4' libtoolize: copying file 'm4/ltsugar.m4' libtoolize: copying file 'm4/ltversion.m4' libtoolize: copying file 'm4/lt~obsolete.m4' configure.ac:10: installing 'm4/compile' configure.ac:10: installing 'm4/config.guess' configure.ac:10: installing 'm4/config.sub' configure.ac:9: installing 'm4/install-sh' configure.ac:9: installing 'm4/missing' ++ uname -o + '[' GNU/Linux = Android ']' + '[' -e /system/bin/app_process ']' localhost:/home/cinelerra/cinelerra-5.1 # 4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx configure: loading site script /usr/share/site/x86_64-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether sleep supports fractional seconds... yes checking filesystem timestamp resolution... 0.01 checking whether build environment is sane... yes checking for a race-free mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking xargs -n works... yes checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking how to print strings... printf checking whether make supports the include directive... yes (GNU style) checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... none needed checking whether gcc understands -c and -o together... yes checking dependency style of gcc... none checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/x86_64-suse-linux/bin/ld checking if the linker (/usr/x86_64-suse-linux/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/x86_64-suse-linux/bin/ld option to reload object files... -r checking for file... file checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for a working dd... /usr/bin/dd checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 checking for mt... mt checking if mt is a manifest tool... no checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking dependency style of gcc... none checking for g++... g++ checking whether the compiler supports GNU C++... yes checking whether g++ accepts -g... yes checking for g++ option to enable C++11 features... none needed checking dependency style of g++... none checking how to run the C++ preprocessor... g++ -E checking for ld used by g++... /usr/x86_64-suse-linux/bin/ld -m elf_x86_64 checking if the linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... yes checking if g++ static flag -static works... no checking if g++ supports -c -o file.o... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for makeinfo... ${SHELL} '/home/cinelerra/cinelerra-5.1/m4/missing' makeinfo checking for gettext... gettext checking for libtool... $(SHELL) $(top_builddir)/libtool checking for gtk_init in -lm... yes checking for nasm... yes checking nasm x264 compatible... yes checking for yasm... yes checking for objcopy... yes checking for pactl... yes checking for gcc options needed to detect all undeclared functions... none needed checking whether X_HAVE_UTF8_STRING is declared... yes checking for XOpenDisplay in -lX11... yes checking for X11/X.h... yes checking X11 headers... yes checking for X11/keysym.h... yes checking X11 headers... yes checking for XShmQueryExtension in -lXext... yes checking for X11/Xlib.h... yes checking Xlib XShm extention... yes checking for XineramaQueryExtension in -lXinerama... yes checking for X11/extensions/Xinerama.h... yes checking Xinerama headers... yes checking for XFixesQueryVersion in -lXfixes... yes checking for BZ2_bzDecompress in -lbz2... yes checking for FcInit in -lfontconfig... yes checking for FT_Init_FreeType in -lfreetype... yes checking for lzma_version_number in -llzma... yes checking for png_read_png in -lpng... yes checking for pthread_create in -lpthread... yes checking for gzopen in -lz... yes checking for fftw_execute in -lfftw3... yes checking for fftw3.h... yes checking fftw headers... yes checking for uuid_clear in -luuid... yes checking for uuid/uuid.h... yes checking uuid headers... yes checking for linux/cdrom.h... yes checking linux cdrom headers... yes checking for sys/ioctl.h... yes checking linux sys... yes checking for FLAC__stream_decoder_new in -lFLAC... yes checking for FLAC/stream_decoder.h... yes checking FLAC headers... yes checking for lame_init in -lmp3lame... no checking for jpeg_start_decompress in -ljpeg... yes checking for stdio.h... (cached) yes checking jpeg headers... yes checking for opj_version in -lopenjp2... no checking for sf_open in -lsndfile... yes checking for sndfile.h... yes checking sndfile headers... yes checking for ImfOpenInputFile in -lIlmImf... no checking for ImfOpenInputFile in -lImath... no checking for vpx_codec_decode in -lvpx... no checking for mjpeg_info in -lmjpegutils... no checking for TIFFOpen in -ltiff... yes checking for tiff.h... yes checking tiff headers... yes checking for twolame_encode_buffer_float32_interleaved in -ltwolame... no checking for x264_encoder_encode in -lx264... yes checking for stdint.h... (cached) yes checking x264 headers... yes checking for x265_encoder_encode in -lx265... yes checking for x265.h... yes checking x265 headers... yes checking for opus_multistream_decoder_create in -lopus... yes checking for opus/opus_multistream.h... yes checking libopus headers... yes checking for aom_codec_version in -laom... no checking for dav1d_version in -ldav1d... no checking for WebPGetEncoderVersion in -lwebp... no checking for a52_init in -la52... no checking for encore.h... no checking encore headers... no checking for DGifOpen in -lgif... yes checking for gif_lib.h... yes checking gif lib headers... yes checking for jbg_dec_init in -ljbig... yes checking for vdp_device_create_x11 in -lvdpau... yes checking for vaInitialize in -lva... yes checking for va/va_x11.h... yes checking va x11 headers... yes checking for vaGetDisplay in -lva-x11... yes checking for va/va_drm.h... yes checking va drm headers... yes checking for vaGetDisplayDRM in -lva-drm... yes checking for glUseProgram in -lGL... yes checking for gluOrtho2D in -lGLU... yes checking for GL/gl.h... yes checking opengl headers... yes checking for XvQueryExtension in -lXv... yes checking for X11/Xlib.h... (cached) yes checking Xlib Xv extention... yes checking for sys/soundcard.h... yes checking oss headers... yes checking for XftInit in -lXft... yes checking for X11/Xlib.h... (cached) yes checking Xft/freetype headers... yes checking for snd_pcm_open in -lasound... yes checking for alsa/asoundlib.h... yes checking asound headers... yes checking for ogg_stream_init in -logg... yes checking for ogg/ogg.h... yes checking ogg headers... yes checking for theora_info_init in -ltheora... yes checking for theora/theoraenc.h... yes checking threora headers... yes checking for vorbis_encode_init in -lvorbisenc... yes checking for vorbis/vorbisenc.h... yes checking vorbis encoders headers... yes checking for ov_open in -lvorbisfile... yes checking for vorbis/vorbisfile.h... yes checking vorbis file headers... yes checking for avc1394_init_target in -lavc1394... yes checking for libavc1394/avc1394.h... yes checking libavc1394 headers... yes checking for rom1394_get_bus_id in -lrom1394... yes checking for libavc1394/rom1394.h... yes checking librom1394 headers... yes checking for iec61883_mpeg2_recv_init in -liec61883... yes checking for libiec61883/iec61883.h... yes checking libiec61883 headers... yes checking for raw1394_iso_recv_init in -lraw1394... yes checking for libraw1394/raw1394.h... yes checking libraw1394 headers... yes checking for dv_init in -ldv... yes checking for libdv/dv.h... yes checking libdv headers... yes checking for linux/dvb/dmx.h... yes checking dvb device headers... yes checking for linux/kernel.h... yes checking v4l2 system headers... yes checking for X11/Xlib.h... (cached) yes checking XF86VM headers... yes checking for esd.h... no checking esound headers... no checking for audiofile.h... no checking audiofile headers... no checking for pa_simple_new in -lpulse-simple... yes checking for pulse/simple.h... yes checking pulse-simple headers... yes checking for pa_context_new in -lpulse... yes checking for pulse/error.h... yes checking pulse headers... yes checking for linux/isofs.h... no checking isofs headers... no checking for X11/keysymdef.h... yes checking x11 keysym defs... yes checking for libusb_init in -lusb-1.0... yes checking for libusb-1.0/libusb.h... yes checking libusb headers... yes checking for lv2 availability... checking for lilv_world_new in -llilv-0... yes checking for sord_world_new in -lsord-0... yes checking for serd_reader_new in -lserd-0... yes checking for sratom_new in -lsratom-0... yes checking for lilv/lilv.h... yes checking lilv headers... yes checking for serd/serd.h... yes checking serd headers... yes checking for sord/sord.h... yes checking sord headers... yes checking for sratom/sratom.h... yes checking sratom headers... yes checking for suil_instance_new in -lsuil-0... yes checking for suil/suil.h... yes checking suil headers... yes checking for /usr/local/cuda/include/cuda.h... no checking cuda sdk... no checking for dlopen in -ldl... yes checking for numa_alloc in -lnuma... yes checking for openexr available... yes Reason Package ------ ------- disabled encore disabled audiofile disabled esound disabled libsvtav1 shared -ltheoraenc shared -ltheoradec shared -logg shared -lvorbis shared -lvorbisfile shared -logg shared -lImath shared -lIlmThread shared -lIex shared -lpthread shared -lfftw3 shared -lFLAC shared -lgif shared -lavc1394 shared -lrom1394 shared -lraw1394 shared -liec61883 shared -ldv shared -ljpeg shared -logg shared -lsndfile shared -ltheora shared -luuid shared -lvorbisenc shared -lvorbisfile shared -ltiff shared -lx264 shared -lx265 shared -lopus shared -llilv-0 shared -lsratom-0 shared -lserd-0 shared -lsord-0 shared -lsuil-0 system -lX11 system -lXext system -lXinerama system -lXfixes system -lbz2 system -lfontconfig system -lfreetype system -llzma system -lpng system -lpthread system -lz system -ljbig system -lvdpau system -lva system -lva-x11 system -lva-drm system -lGL system -lGLU system -lXv system -lXft system -lasound system -lpulse-simple system -lpulse system -lusb-1.0 system -ldl system -lnuma using: with-gl using: with-xft using: with-xxf86vm using: with-oss using: with-alsa using: with-firewire using: with-ogg using: with-dv using: with-dvb using: with-ladspa using: with-video4linux2 using: without-esound using: with-pulse using: with-pactl using: with-openexr using: with-lv2 using: without-commercial using: with-giflib using: with-libzmpeg using: without-libdpx using: with-shuttle using: with-shuttle_usb using: with-xv using: with-vaapi using: with-vdpau using: without-cuda using: with-nv using: with-wintv using: with-x10tv using: with-jobs = 32 using: exec-name = cin using: with-cinlib = $$CIN_PATH using: with-cindat = $$CIN_PATH using: with-config-dir = $$HOME/.bcast5 using: with-nested-dir = $$HOME/Videos using: with-snap-dir = $$HOME/Pictures using: with-browser = firefox using: with-plugin-dir = $$CIN_LIB/plugins using: with-ladspa-dir = $$CIN_LIB/ladspa using: with-opencv = no using: with-git-ffmpeg = no using: with-noelision = auto using: with-booby = no using: with-clang = no using: thirdparty build = no using: single-user = yes using: static-build = no using: ladspa-build = yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands localhost:/home/cinelerra/cinelerra-5.1 #
пн, 23 сент. 2024 г., 00:12 Terje J. Hanssen <[email protected]>:
Den 22.09.2024 15:56, skrev Andrew Randrianasulu:
вс, 22 сент. 2024 г., 13:56 Terje J. Hanssen via Cin < [email protected]>:
After getting the generic built environment for Cingg on openSUSE-Slowroll in place, it's time to continue with the steps to get Cingg built from git using the system FFmpeg and libs.
First a reference to and from the previous thread https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008652.html
...snip
-------------------
Suggestions to modified/additional procedure steps to build Cingg from git using the system FFmpeg and libs continued from the previous thread? https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008655.html
try
./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
you might move just-build cingg+plugins in "bin" directory somewhere away in case you will want to make more tests with it, then run "make clean" configure line as above, make, make install
I'm late due to some other matter today.
# cd /home/cinelerra/cinelerra-5.1/bin Moved cin and plugins to a backup directory
I take a checkpoint here, in case I did something wrong: 4) ./configure wasn't found, so I ran 3) ./autogen.sh first as we did in the previous thread ?
yes.
Output as follows below:
# cd /home/cinelerra/cinelerra-5.1
# make clean for dir in thirdparty libzmpeg3 mpeg2enc mplexlo db guicast cinelerra plugins doc po; do make -C $dir clean; done make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' for f in a52dec djbfft ffmpeg fftw flac giflib ladspa lame libavc1394 libraw1394 libiec61883 libdv libjpeg opus openjpeg libogg libsndfile libtheora libuuid libvorbis mjpegtools openexr openExr ilmBase tiff twolame x264 x265 libvpx lv2 sratom serd sord lilv suil libaom dav1d libwebp ffnvcodec libdpx; do rm -rf $f*; done rm -rf /home/cinelerra/cinelerra-5.1/thirdparty/../thirdparty/build make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' rm -rf x86_64 tags make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mplexlo' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mplexlo' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Nothing to be done for 'clean'. make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast' rm -rf x86_64 make -C xfer clean make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' rm -rf x86_64 xfer*.[Ch] make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/cinelerra' rm -rf x86_64 rm -f shuttle_keys.h make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/plugins' rm -rf 1080to480/x86_64 1080to540/x86_64 720to480/x86_64 aging/x86_64 alpha/x86_64 scaleratio/x86_64 audioscope/x86_64 bandslide/x86_64 bandwipe/x86_64 bluebanana/x86_64 blur/x86_64 boxblur/x86_64 brightness/x86_64 burn/x86_64 C41/x86_64 chorus/x86_64 chromakey/x86_64 chromakeyhsv/x86_64 chromakeyavid/x86_64 color3way/x86_64 colorbalance/x86_64 colorspace/x86_64 compressor/x86_64 compressormulti/x86_64 crikey/x86_64 crop/x86_64 crossfade/x86_64 dcoffset/x86_64 decimate/x86_64 deinterlace/x86_64 deinterlace-cv/x86_64 delayaudio/x86_64 delayvideo/x86_64 denoise/x86_64 denoisefft/x86_64 denoiseseltempavg/x86_64 denoisevideo/x86_64 descratch/x86_64 despike/x86_64 diffkey/x86_64 dissolve/x86_64 dot/x86_64 downsample/x86_64 edge/x86_64 echo/x86_64 echocancel/x86_64 fieldframe/x86_64 flanger/x86_64 flash/x86_64 flip/x86_64 foreground/x86_64 framefield/x86_64 freeverb/x86_64 freezeframe/x86_64 gain/x86_64 gamma/x86_64 gradient/x86_64 graphic/x86_64 histeq/x86_64 histogram/x86_64 histogram_bezier/x86_64 holo/x86_64 huesaturation/x86_64 interpolate/x86_64 interpolateaudio/x86_64 interpolatevideo/x86_64 invertaudio/x86_64 invertvideo/x86_64 irissquare/x86_64 ivtc/x86_64 lens/x86_64 level/x86_64 libeffecttv/x86_64 linearblur/x86_64 liveaudio/x86_64 livevideo/x86_64 loopaudio/x86_64 loopvideo/x86_64 mirror/x86_64 motion/x86_64 motion51/x86_64 motion2point/x86_64 motionblur/x86_64 normalize/x86_64 oilpainting/x86_64 overlay/x86_64 overlayaudio/x86_64 parametric/x86_64 perspective/x86_64 photoscale/x86_64 posterize/x86_64 pitch/x86_64 polar/x86_64 radialblur/x86_64 reframe/x86_64 reframert/x86_64 removegaps/x86_64 reroute/x86_64 resample/x86_64 resamplert/x86_64 reverb/x86_64 reverseaudio/x86_64 reversevideo/x86_64 rgb601/x86_64 rgbshift/x86_64 rotate/x86_64 rumbler/x86_64 scale/x86_64 sketcher/x86_64 shapewipe/x86_64 sharpen/x86_64 shiftinterlace/x86_64 slide/x86_64 spectrogram/x86_64 speed_pc/x86_64 spherecam/x86_64 svg/x86_64 swapchannels/x86_64 swapframes/x86_64 swatch/x86_64 synthesizer/x86_64 threshold/x86_64 timeavg/x86_64 timeblur/x86_64 timefront/x86_64 timelapsehelper/x86_64 timestretch/x86_64 timestretchrt/x86_64 titler/x86_64 tracer/x86_64 translate/x86_64 tremolo/x86_64 unsharp/x86_64 videoscope/x86_64 wave/x86_64 whirl/x86_64 wipe/x86_64 yuv/x86_64 yuv411/x86_64 yuvshift/x86_64 zoom/x86_64 zoomblur/x86_64 theme_blond_cv/x86_64 theme_blue_dot/x86_64 theme_bright/x86_64 theme_hulk/x86_64 theme_neophyte/x86_64 theme_pinklady/x86_64 theme_suv/x86_64 theme_unflat/x86_64 theme_cakewalk/x86_64 cdripper/x86_64 theme_blond/x86_64 theme_blue/x86_64 rm -rf /home/cinelerra/cinelerra-5.1/plugins/../bin/plugins /home/cinelerra/cinelerra-5.1/plugins/../bin/ladspa make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/plugins' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/doc' rm -f cinelerra.html arrow.png autokeyframe.png camera.png channel.png crop.png cut.png expandpatch_checked.png eyedrop.png fitautos.png ibeam.png left_justify.png loadmode_cat.png loadmode_nested.png loadmode_newcat.png loadmode_new.png loadmode_newtracks.png loadmode_none.png loadmode_paste.png loadmode_resource.png magnify.png mask.png mutepatch_up.png paste.png projector.png protect.png recordpatch.png record.png rewind.png show_meters.png singleframe.png titlesafe.png toolwindow.png top_justify.png wrench.png make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/doc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/po' rm -f de.mo es.mo eu.mo fr.mo it.mo nb.mo pt.mo sl.mo hi.mo hu.mo ko.mo vi.mo zh.mo el.mo ja.mo uk.mo ru.mo make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/po' rm -rf thirdparty/opencv* rm -rf bin cinelerra/tags ./autogen.sh clean + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in config.sub config.status missing + rm -rf autom4te.cache m4 + '[' clean = clean ']' + exit 0
/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx -bash: ./configure: No such file or directory
3) # ./autogen.sh + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in config.sub config.status missing + rm -rf autom4te.cache m4 + '[' '' = clean ']' + mkdir m4 + autoreconf --install libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'm4'. libtoolize: copying file 'm4/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. libtoolize: copying file 'm4/libtool.m4' libtoolize: copying file 'm4/ltoptions.m4' libtoolize: copying file 'm4/ltsugar.m4' libtoolize: copying file 'm4/ltversion.m4' libtoolize: copying file 'm4/lt~obsolete.m4' configure.ac:10: installing 'm4/compile' configure.ac:10: installing 'm4/config.guess' configure.ac:10: installing 'm4/config.sub' configure.ac:9: installing 'm4/install-sh' configure.ac:9: installing 'm4/missing' ++ uname -o + '[' GNU/Linux = Android ']' + '[' -e /system/bin/app_process ']'
localhost:/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx configure: loading site script /usr/share/site/x86_64-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether sleep supports fractional seconds... yes checking filesystem timestamp resolution... 0.01 checking whether build environment is sane... yes checking for a race-free mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking xargs -n works... yes checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking how to print strings... printf checking whether make supports the include directive... yes (GNU style) checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... none needed checking whether gcc understands -c and -o together... yes checking dependency style of gcc... none checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/x86_64-suse-linux/bin/ld checking if the linker (/usr/x86_64-suse-linux/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/x86_64-suse-linux/bin/ld option to reload object files... -r checking for file... file checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for a working dd... /usr/bin/dd checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 checking for mt... mt checking if mt is a manifest tool... no checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking dependency style of gcc... none checking for g++... g++ checking whether the compiler supports GNU C++... yes checking whether g++ accepts -g... yes checking for g++ option to enable C++11 features... none needed checking dependency style of g++... none checking how to run the C++ preprocessor... g++ -E checking for ld used by g++... /usr/x86_64-suse-linux/bin/ld -m elf_x86_64 checking if the linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... yes checking if g++ static flag -static works... no checking if g++ supports -c -o file.o... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for makeinfo... ${SHELL} '/home/cinelerra/cinelerra-5.1/m4/missing' makeinfo checking for gettext... gettext checking for libtool... $(SHELL) $(top_builddir)/libtool checking for gtk_init in -lm... yes checking for nasm... yes checking nasm x264 compatible... yes checking for yasm... yes checking for objcopy... yes checking for pactl... yes checking for gcc options needed to detect all undeclared functions... none needed checking whether X_HAVE_UTF8_STRING is declared... yes checking for XOpenDisplay in -lX11... yes checking for X11/X.h... yes checking X11 headers... yes checking for X11/keysym.h... yes checking X11 headers... yes checking for XShmQueryExtension in -lXext... yes checking for X11/Xlib.h... yes checking Xlib XShm extention... yes checking for XineramaQueryExtension in -lXinerama... yes checking for X11/extensions/Xinerama.h... yes checking Xinerama headers... yes checking for XFixesQueryVersion in -lXfixes... yes checking for BZ2_bzDecompress in -lbz2... yes checking for FcInit in -lfontconfig... yes checking for FT_Init_FreeType in -lfreetype... yes checking for lzma_version_number in -llzma... yes checking for png_read_png in -lpng... yes checking for pthread_create in -lpthread... yes checking for gzopen in -lz... yes checking for fftw_execute in -lfftw3... yes checking for fftw3.h... yes checking fftw headers... yes checking for uuid_clear in -luuid... yes checking for uuid/uuid.h... yes checking uuid headers... yes checking for linux/cdrom.h... yes checking linux cdrom headers... yes checking for sys/ioctl.h... yes checking linux sys... yes checking for FLAC__stream_decoder_new in -lFLAC... yes checking for FLAC/stream_decoder.h... yes checking FLAC headers... yes checking for lame_init in -lmp3lame... no checking for jpeg_start_decompress in -ljpeg... yes checking for stdio.h... (cached) yes checking jpeg headers... yes checking for opj_version in -lopenjp2... no checking for sf_open in -lsndfile... yes checking for sndfile.h... yes checking sndfile headers... yes checking for ImfOpenInputFile in -lIlmImf... no checking for ImfOpenInputFile in -lImath... no checking for vpx_codec_decode in -lvpx... no checking for mjpeg_info in -lmjpegutils... no checking for TIFFOpen in -ltiff... yes checking for tiff.h... yes checking tiff headers... yes checking for twolame_encode_buffer_float32_interleaved in -ltwolame... no checking for x264_encoder_encode in -lx264... yes checking for stdint.h... (cached) yes checking x264 headers... yes checking for x265_encoder_encode in -lx265... yes checking for x265.h... yes checking x265 headers... yes checking for opus_multistream_decoder_create in -lopus... yes checking for opus/opus_multistream.h... yes checking libopus headers... yes checking for aom_codec_version in -laom... no checking for dav1d_version in -ldav1d... no checking for WebPGetEncoderVersion in -lwebp... no checking for a52_init in -la52... no checking for encore.h... no checking encore headers... no checking for DGifOpen in -lgif... yes checking for gif_lib.h... yes checking gif lib headers... yes checking for jbg_dec_init in -ljbig... yes checking for vdp_device_create_x11 in -lvdpau... yes checking for vaInitialize in -lva... yes checking for va/va_x11.h... yes checking va x11 headers... yes checking for vaGetDisplay in -lva-x11... yes checking for va/va_drm.h... yes checking va drm headers... yes checking for vaGetDisplayDRM in -lva-drm... yes checking for glUseProgram in -lGL... yes checking for gluOrtho2D in -lGLU... yes checking for GL/gl.h... yes checking opengl headers... yes checking for XvQueryExtension in -lXv... yes checking for X11/Xlib.h... (cached) yes checking Xlib Xv extention... yes checking for sys/soundcard.h... yes checking oss headers... yes checking for XftInit in -lXft... yes checking for X11/Xlib.h... (cached) yes checking Xft/freetype headers... yes checking for snd_pcm_open in -lasound... yes checking for alsa/asoundlib.h... yes checking asound headers... yes checking for ogg_stream_init in -logg... yes checking for ogg/ogg.h... yes checking ogg headers... yes checking for theora_info_init in -ltheora... yes checking for theora/theoraenc.h... yes checking threora headers... yes checking for vorbis_encode_init in -lvorbisenc... yes checking for vorbis/vorbisenc.h... yes checking vorbis encoders headers... yes checking for ov_open in -lvorbisfile... yes checking for vorbis/vorbisfile.h... yes checking vorbis file headers... yes checking for avc1394_init_target in -lavc1394... yes checking for libavc1394/avc1394.h... yes checking libavc1394 headers... yes checking for rom1394_get_bus_id in -lrom1394... yes checking for libavc1394/rom1394.h... yes checking librom1394 headers... yes checking for iec61883_mpeg2_recv_init in -liec61883... yes checking for libiec61883/iec61883.h... yes checking libiec61883 headers... yes checking for raw1394_iso_recv_init in -lraw1394... yes checking for libraw1394/raw1394.h... yes checking libraw1394 headers... yes checking for dv_init in -ldv... yes checking for libdv/dv.h... yes checking libdv headers... yes checking for linux/dvb/dmx.h... yes checking dvb device headers... yes checking for linux/kernel.h... yes checking v4l2 system headers... yes checking for X11/Xlib.h... (cached) yes checking XF86VM headers... yes checking for esd.h... no checking esound headers... no checking for audiofile.h... no checking audiofile headers... no checking for pa_simple_new in -lpulse-simple... yes checking for pulse/simple.h... yes checking pulse-simple headers... yes checking for pa_context_new in -lpulse... yes checking for pulse/error.h... yes checking pulse headers... yes checking for linux/isofs.h... no checking isofs headers... no checking for X11/keysymdef.h... yes checking x11 keysym defs... yes checking for libusb_init in -lusb-1.0... yes checking for libusb-1.0/libusb.h... yes checking libusb headers... yes checking for lv2 availability... checking for lilv_world_new in -llilv-0... yes checking for sord_world_new in -lsord-0... yes checking for serd_reader_new in -lserd-0... yes checking for sratom_new in -lsratom-0... yes checking for lilv/lilv.h... yes checking lilv headers... yes checking for serd/serd.h... yes checking serd headers... yes checking for sord/sord.h... yes checking sord headers... yes checking for sratom/sratom.h... yes checking sratom headers... yes checking for suil_instance_new in -lsuil-0... yes checking for suil/suil.h... yes checking suil headers... yes checking for /usr/local/cuda/include/cuda.h... no checking cuda sdk... no checking for dlopen in -ldl... yes checking for numa_alloc in -lnuma... yes checking for openexr available... yes Reason Package ------ ------- disabled encore disabled audiofile disabled esound disabled libsvtav1 shared -ltheoraenc shared -ltheoradec shared -logg shared -lvorbis shared -lvorbisfile shared -logg shared -lImath shared -lIlmThread shared -lIex shared -lpthread shared -lfftw3 shared -lFLAC shared -lgif shared -lavc1394 shared -lrom1394 shared -lraw1394 shared -liec61883 shared -ldv shared -ljpeg shared -logg shared -lsndfile shared -ltheora shared -luuid shared -lvorbisenc shared -lvorbisfile shared -ltiff shared -lx264 shared -lx265 shared -lopus shared -llilv-0 shared -lsratom-0 shared -lserd-0 shared -lsord-0 shared -lsuil-0 system -lX11 system -lXext system -lXinerama system -lXfixes system -lbz2 system -lfontconfig system -lfreetype system -llzma system -lpng system -lpthread system -lz system -ljbig system -lvdpau system -lva system -lva-x11 system -lva-drm system -lGL system -lGLU system -lXv system -lXft system -lasound system -lpulse-simple system -lpulse system -lusb-1.0 system -ldl system -lnuma
using: with-gl using: with-xft using: with-xxf86vm using: with-oss using: with-alsa using: with-firewire using: with-ogg using: with-dv using: with-dvb using: with-ladspa using: with-video4linux2 using: without-esound using: with-pulse using: with-pactl using: with-openexr using: with-lv2 using: without-commercial using: with-giflib using: with-libzmpeg using: without-libdpx using: with-shuttle using: with-shuttle_usb using: with-xv using: with-vaapi using: with-vdpau using: without-cuda using: with-nv using: with-wintv using: with-x10tv using: with-jobs = 32 using: exec-name = cin using: with-cinlib = $$CIN_PATH using: with-cindat = $$CIN_PATH using: with-config-dir = $$HOME/.bcast5 using: with-nested-dir = $$HOME/Videos using: with-snap-dir = $$HOME/Pictures using: with-browser = firefox using: with-plugin-dir = $$CIN_LIB/plugins using: with-ladspa-dir = $$CIN_LIB/ladspa using: with-opencv = no using: with-git-ffmpeg = no using: with-noelision = auto using: with-booby = no using: with-clang = no
using: thirdparty build = no using: single-user = yes using: static-build = no using: ladspa-build = yes
checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands # ./autogen.sh + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in config.sub config.status missing + rm -rf autom4te.cache m4 + '[' '' = clean ']' + mkdir m4 + autoreconf --install libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'm4'. libtoolize: copying file 'm4/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. libtoolize: copying file 'm4/libtool.m4' libtoolize: copying file 'm4/ltoptions.m4' libtoolize: copying file 'm4/ltsugar.m4' libtoolize: copying file 'm4/ltversion.m4' libtoolize: copying file 'm4/lt~obsolete.m4' configure.ac:10: installing 'm4/compile' configure.ac:10: installing 'm4/config.guess' configure.ac:10: installing 'm4/config.sub' configure.ac:9: installing 'm4/install-sh' configure.ac:9: installing 'm4/missing' ++ uname -o + '[' GNU/Linux = Android ']' + '[' -e /system/bin/app_process ']'
localhost:/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx configure: loading site script /usr/share/site/x86_64-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether sleep supports fractional seconds... yes checking filesystem timestamp resolution... 0.01 checking whether build environment is sane... yes checking for a race-free mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking xargs -n works... yes checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking how to print strings... printf checking whether make supports the include directive... yes (GNU style) checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... none needed checking whether gcc understands -c and -o together... yes checking dependency style of gcc... none checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/x86_64-suse-linux/bin/ld checking if the linker (/usr/x86_64-suse-linux/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/x86_64-suse-linux/bin/ld option to reload object files... -r checking for file... file checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for a working dd... /usr/bin/dd checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 checking for mt... mt checking if mt is a manifest tool... no checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking dependency style of gcc... none checking for g++... g++ checking whether the compiler supports GNU C++... yes checking whether g++ accepts -g... yes checking for g++ option to enable C++11 features... none needed checking dependency style of g++... none checking how to run the C++ preprocessor... g++ -E checking for ld used by g++... /usr/x86_64-suse-linux/bin/ld -m elf_x86_64 checking if the linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... yes checking if g++ static flag -static works... no checking if g++ supports -c -o file.o... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for makeinfo... ${SHELL} '/home/cinelerra/cinelerra-5.1/m4/missing' makeinfo checking for gettext... gettext checking for libtool... $(SHELL) $(top_builddir)/libtool checking for gtk_init in -lm... yes checking for nasm... yes checking nasm x264 compatible... yes checking for yasm... yes checking for objcopy... yes checking for pactl... yes checking for gcc options needed to detect all undeclared functions... none needed checking whether X_HAVE_UTF8_STRING is declared... yes checking for XOpenDisplay in -lX11... yes checking for X11/X.h... yes checking X11 headers... yes checking for X11/keysym.h... yes checking X11 headers... yes checking for XShmQueryExtension in -lXext... yes checking for X11/Xlib.h... yes checking Xlib XShm extention... yes checking for XineramaQueryExtension in -lXinerama... yes checking for X11/extensions/Xinerama.h... yes checking Xinerama headers... yes checking for XFixesQueryVersion in -lXfixes... yes checking for BZ2_bzDecompress in -lbz2... yes checking for FcInit in -lfontconfig... yes checking for FT_Init_FreeType in -lfreetype... yes checking for lzma_version_number in -llzma... yes checking for png_read_png in -lpng... yes checking for pthread_create in -lpthread... yes checking for gzopen in -lz... yes checking for fftw_execute in -lfftw3... yes checking for fftw3.h... yes checking fftw headers... yes checking for uuid_clear in -luuid... yes checking for uuid/uuid.h... yes checking uuid headers... yes checking for linux/cdrom.h... yes checking linux cdrom headers... yes checking for sys/ioctl.h... yes checking linux sys... yes checking for FLAC__stream_decoder_new in -lFLAC... yes checking for FLAC/stream_decoder.h... yes checking FLAC headers... yes checking for lame_init in -lmp3lame... no checking for jpeg_start_decompress in -ljpeg... yes checking for stdio.h... (cached) yes checking jpeg headers... yes checking for opj_version in -lopenjp2... no checking for sf_open in -lsndfile... yes checking for sndfile.h... yes checking sndfile headers... yes checking for ImfOpenInputFile in -lIlmImf... no checking for ImfOpenInputFile in -lImath... no checking for vpx_codec_decode in -lvpx... no checking for mjpeg_info in -lmjpegutils... no checking for TIFFOpen in -ltiff... yes checking for tiff.h... yes checking tiff headers... yes checking for twolame_encode_buffer_float32_interleaved in -ltwolame... no checking for x264_encoder_encode in -lx264... yes checking for stdint.h... (cached) yes checking x264 headers... yes checking for x265_encoder_encode in -lx265... yes checking for x265.h... yes checking x265 headers... yes checking for opus_multistream_decoder_create in -lopus... yes checking for opus/opus_multistream.h... yes checking libopus headers... yes checking for aom_codec_version in -laom... no checking for dav1d_version in -ldav1d... no checking for WebPGetEncoderVersion in -lwebp... no checking for a52_init in -la52... no checking for encore.h... no checking encore headers... no checking for DGifOpen in -lgif... yes checking for gif_lib.h... yes checking gif lib headers... yes checking for jbg_dec_init in -ljbig... yes checking for vdp_device_create_x11 in -lvdpau... yes checking for vaInitialize in -lva... yes checking for va/va_x11.h... yes checking va x11 headers... yes checking for vaGetDisplay in -lva-x11... yes checking for va/va_drm.h... yes checking va drm headers... yes checking for vaGetDisplayDRM in -lva-drm... yes checking for glUseProgram in -lGL... yes checking for gluOrtho2D in -lGLU... yes checking for GL/gl.h... yes checking opengl headers... yes checking for XvQueryExtension in -lXv... yes checking for X11/Xlib.h... (cached) yes checking Xlib Xv extention... yes checking for sys/soundcard.h... yes checking oss headers... yes checking for XftInit in -lXft... yes checking for X11/Xlib.h... (cached) yes checking Xft/freetype headers... yes checking for snd_pcm_open in -lasound... yes checking for alsa/asoundlib.h... yes checking asound headers... yes checking for ogg_stream_init in -logg... yes checking for ogg/ogg.h... yes checking ogg headers... yes checking for theora_info_init in -ltheora... yes checking for theora/theoraenc.h... yes checking threora headers... yes checking for vorbis_encode_init in -lvorbisenc... yes checking for vorbis/vorbisenc.h... yes checking vorbis encoders headers... yes checking for ov_open in -lvorbisfile... yes checking for vorbis/vorbisfile.h... yes checking vorbis file headers... yes checking for avc1394_init_target in -lavc1394... yes checking for libavc1394/avc1394.h... yes checking libavc1394 headers... yes checking for rom1394_get_bus_id in -lrom1394... yes checking for libavc1394/rom1394.h... yes checking librom1394 headers... yes checking for iec61883_mpeg2_recv_init in -liec61883... yes checking for libiec61883/iec61883.h... yes checking libiec61883 headers... yes checking for raw1394_iso_recv_init in -lraw1394... yes checking for libraw1394/raw1394.h... yes checking libraw1394 headers... yes checking for dv_init in -ldv... yes checking for libdv/dv.h... yes checking libdv headers... yes checking for linux/dvb/dmx.h... yes checking dvb device headers... yes checking for linux/kernel.h... yes checking v4l2 system headers... yes checking for X11/Xlib.h... (cached) yes checking XF86VM headers... yes checking for esd.h... no checking esound headers... no checking for audiofile.h... no checking audiofile headers... no checking for pa_simple_new in -lpulse-simple... yes checking for pulse/simple.h... yes checking pulse-simple headers... yes checking for pa_context_new in -lpulse... yes checking for pulse/error.h... yes checking pulse headers... yes checking for linux/isofs.h... no checking isofs headers... no checking for X11/keysymdef.h... yes checking x11 keysym defs... yes checking for libusb_init in -lusb-1.0... yes checking for libusb-1.0/libusb.h... yes checking libusb headers... yes checking for lv2 availability... checking for lilv_world_new in -llilv-0... yes checking for sord_world_new in -lsord-0... yes checking for serd_reader_new in -lserd-0... yes checking for sratom_new in -lsratom-0... yes checking for lilv/lilv.h... yes checking lilv headers... yes checking for serd/serd.h... yes checking serd headers... yes checking for sord/sord.h... yes checking sord headers... yes checking for sratom/sratom.h... yes checking sratom headers... yes checking for suil_instance_new in -lsuil-0... yes checking for suil/suil.h... yes checking suil headers... yes checking for /usr/local/cuda/include/cuda.h... no checking cuda sdk... no checking for dlopen in -ldl... yes checking for numa_alloc in -lnuma... yes checking for openexr available... yes Reason Package ------ ------- disabled encore disabled audiofile disabled esound disabled libsvtav1 shared -ltheoraenc shared -ltheoradec shared -logg shared -lvorbis shared -lvorbisfile shared -logg shared -lImath shared -lIlmThread shared -lIex shared -lpthread shared -lfftw3 shared -lFLAC shared -lgif shared -lavc1394 shared -lrom1394 shared -lraw1394 shared -liec61883 shared -ldv shared -ljpeg shared -logg shared -lsndfile shared -ltheora shared -luuid shared -lvorbisenc shared -lvorbisfile shared -ltiff shared -lx264 shared -lx265 shared -lopus shared -llilv-0 shared -lsratom-0 shared -lserd-0 shared -lsord-0 shared -lsuil-0 system -lX11 system -lXext system -lXinerama system -lXfixes system -lbz2 system -lfontconfig system -lfreetype system -llzma system -lpng system -lpthread system -lz system -ljbig system -lvdpau system -lva system -lva-x11 system -lva-drm system -lGL system -lGLU system -lXv system -lXft system -lasound system -lpulse-simple system -lpulse system -lusb-1.0 system -ldl system -lnuma
using: with-gl using: with-xft using: with-xxf86vm using: with-oss using: with-alsa using: with-firewire using: with-ogg using: with-dv using: with-dvb using: with-ladspa using: with-video4linux2 using: without-esound using: with-pulse using: with-pactl using: with-openexr using: with-lv2 using: without-commercial using: with-giflib using: with-libzmpeg using: without-libdpx using: with-shuttle using: with-shuttle_usb using: with-xv using: with-vaapi using: with-vdpau using: without-cuda using: with-nv using: with-wintv using: with-x10tv using: with-jobs = 32 using: exec-name = cin using: with-cinlib = $$CIN_PATH using: with-cindat = $$CIN_PATH using: with-config-dir = $$HOME/.bcast5 using: with-nested-dir = $$HOME/Videos using: with-snap-dir = $$HOME/Pictures using: with-browser = firefox using: with-plugin-dir = $$CIN_LIB/plugins using: with-ladspa-dir = $$CIN_LIB/ladspa using: with-opencv = no using: with-git-ffmpeg = no using: with-noelision = auto using: with-booby = no using: with-clang = no
using: thirdparty build = no using: single-user = yes using: static-build = no using: ladspa-build = yes
checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands
localhost:/home/cinelerra/cinelerra-5.1 #
looks good, now try make ? (may be with output redirection so it will be easier to see if any error occured)
Den 22.09.2024 23:40, skrev Andrew Randrianasulu:
пн, 23 сент. 2024 г., 00:12 Terje J. Hanssen <[email protected]>:
Den 22.09.2024 15:56, skrev Andrew Randrianasulu:
вс, 22 сент. 2024 г., 13:56 Terje J. Hanssen via Cin <[email protected]>:
After getting the generic built environment for Cingg on openSUSE-Slowroll in place, it's time to continue with the steps to get Cingg built from git using the system FFmpeg and libs.
First a reference to and from the previous thread https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008652.html
...snip
-------------------
Suggestions to modified/additional procedure steps to build Cingg from git using the system FFmpeg and libs continued from the previous thread? https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008655.html
try
./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
you might move just-build cingg+plugins in "bin" directory somewhere away in case you will want to make more tests with it, then run "make clean" configure line as above, make, make install
I'm late due to some other matter today.
# cd /home/cinelerra/cinelerra-5.1/bin Moved cin and plugins to a backup directory
I take a checkpoint here, in case I did something wrong: 4) ./configure wasn't found, so I ran 3) ./autogen.sh first as we did in the previous thread ?
yes.
Output as follows below:
# cd /home/cinelerra/cinelerra-5.1
# make clean for dir in thirdparty libzmpeg3 mpeg2enc mplexlo db guicast cinelerra plugins doc po; do make -C $dir clean; done make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' for f in a52dec djbfft ffmpeg fftw flac giflib ladspa lame libavc1394 libraw1394 libiec61883 libdv libjpeg opus openjpeg libogg libsndfile libtheora libuuid libvorbis mjpegtools openexr openExr ilmBase tiff twolame x264 x265 libvpx lv2 sratom serd sord lilv suil libaom dav1d libwebp ffnvcodec libdpx; do rm -rf $f*; done rm -rf /home/cinelerra/cinelerra-5.1/thirdparty/../thirdparty/build make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' rm -rf x86_64 tags make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mplexlo' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mplexlo' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Nothing to be done for 'clean'. make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast' rm -rf x86_64 make -C xfer clean make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' rm -rf x86_64 xfer*.[Ch] make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/cinelerra' rm -rf x86_64 rm -f shuttle_keys.h make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/plugins' rm -rf 1080to480/x86_64 1080to540/x86_64 720to480/x86_64 aging/x86_64 alpha/x86_64 scaleratio/x86_64 audioscope/x86_64 bandslide/x86_64 bandwipe/x86_64 bluebanana/x86_64 blur/x86_64 boxblur/x86_64 brightness/x86_64 burn/x86_64 C41/x86_64 chorus/x86_64 chromakey/x86_64 chromakeyhsv/x86_64 chromakeyavid/x86_64 color3way/x86_64 colorbalance/x86_64 colorspace/x86_64 compressor/x86_64 compressormulti/x86_64 crikey/x86_64 crop/x86_64 crossfade/x86_64 dcoffset/x86_64 decimate/x86_64 deinterlace/x86_64 deinterlace-cv/x86_64 delayaudio/x86_64 delayvideo/x86_64 denoise/x86_64 denoisefft/x86_64 denoiseseltempavg/x86_64 denoisevideo/x86_64 descratch/x86_64 despike/x86_64 diffkey/x86_64 dissolve/x86_64 dot/x86_64 downsample/x86_64 edge/x86_64 echo/x86_64 echocancel/x86_64 fieldframe/x86_64 flanger/x86_64 flash/x86_64 flip/x86_64 foreground/x86_64 framefield/x86_64 freeverb/x86_64 freezeframe/x86_64 gain/x86_64 gamma/x86_64 gradient/x86_64 graphic/x86_64 histeq/x86_64 histogram/x86_64 histogram_bezier/x86_64 holo/x86_64 huesaturation/x86_64 interpolate/x86_64 interpolateaudio/x86_64 interpolatevideo/x86_64 invertaudio/x86_64 invertvideo/x86_64 irissquare/x86_64 ivtc/x86_64 lens/x86_64 level/x86_64 libeffecttv/x86_64 linearblur/x86_64 liveaudio/x86_64 livevideo/x86_64 loopaudio/x86_64 loopvideo/x86_64 mirror/x86_64 motion/x86_64 motion51/x86_64 motion2point/x86_64 motionblur/x86_64 normalize/x86_64 oilpainting/x86_64 overlay/x86_64 overlayaudio/x86_64 parametric/x86_64 perspective/x86_64 photoscale/x86_64 posterize/x86_64 pitch/x86_64 polar/x86_64 radialblur/x86_64 reframe/x86_64 reframert/x86_64 removegaps/x86_64 reroute/x86_64 resample/x86_64 resamplert/x86_64 reverb/x86_64 reverseaudio/x86_64 reversevideo/x86_64 rgb601/x86_64 rgbshift/x86_64 rotate/x86_64 rumbler/x86_64 scale/x86_64 sketcher/x86_64 shapewipe/x86_64 sharpen/x86_64 shiftinterlace/x86_64 slide/x86_64 spectrogram/x86_64 speed_pc/x86_64 spherecam/x86_64 svg/x86_64 swapchannels/x86_64 swapframes/x86_64 swatch/x86_64 synthesizer/x86_64 threshold/x86_64 timeavg/x86_64 timeblur/x86_64 timefront/x86_64 timelapsehelper/x86_64 timestretch/x86_64 timestretchrt/x86_64 titler/x86_64 tracer/x86_64 translate/x86_64 tremolo/x86_64 unsharp/x86_64 videoscope/x86_64 wave/x86_64 whirl/x86_64 wipe/x86_64 yuv/x86_64 yuv411/x86_64 yuvshift/x86_64 zoom/x86_64 zoomblur/x86_64 theme_blond_cv/x86_64 theme_blue_dot/x86_64 theme_bright/x86_64 theme_hulk/x86_64 theme_neophyte/x86_64 theme_pinklady/x86_64 theme_suv/x86_64 theme_unflat/x86_64 theme_cakewalk/x86_64 cdripper/x86_64 theme_blond/x86_64 theme_blue/x86_64 rm -rf /home/cinelerra/cinelerra-5.1/plugins/../bin/plugins /home/cinelerra/cinelerra-5.1/plugins/../bin/ladspa make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/plugins' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/doc' rm -f cinelerra.html arrow.png autokeyframe.png camera.png channel.png crop.png cut.png expandpatch_checked.png eyedrop.png fitautos.png ibeam.png left_justify.png loadmode_cat.png loadmode_nested.png loadmode_newcat.png loadmode_new.png loadmode_newtracks.png loadmode_none.png loadmode_paste.png loadmode_resource.png magnify.png mask.png mutepatch_up.png paste.png projector.png protect.png recordpatch.png record.png rewind.png show_meters.png singleframe.png titlesafe.png toolwindow.png top_justify.png wrench.png make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/doc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/po' rm -f de.mo es.mo eu.mo fr.mo it.mo nb.mo pt.mo sl.mo hi.mo hu.mo ko.mo vi.mo zh.mo el.mo ja.mo uk.mo ru.mo make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/po' rm -rf thirdparty/opencv* rm -rf bin cinelerra/tags ./autogen.sh clean + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in <http://config.h.in> config.sub config.status missing + rm -rf autom4te.cache m4 + '[' clean = clean ']' + exit 0
/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx -bash: ./configure: No such file or directory
3) # ./autogen.sh + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in <http://config.h.in> config.sub config.status missing + rm -rf autom4te.cache m4 + '[' '' = clean ']' + mkdir m4 + autoreconf --install libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'm4'. libtoolize: copying file 'm4/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. libtoolize: copying file 'm4/libtool.m4' libtoolize: copying file 'm4/ltoptions.m4' libtoolize: copying file 'm4/ltsugar.m4' libtoolize: copying file 'm4/ltversion.m4' libtoolize: copying file 'm4/lt~obsolete.m4' configure.ac:10 <http://configure.ac:10>: installing 'm4/compile' configure.ac:10 <http://configure.ac:10>: installing 'm4/config.guess' configure.ac:10 <http://configure.ac:10>: installing 'm4/config.sub' configure.ac:9 <http://configure.ac:9>: installing 'm4/install-sh' configure.ac:9 <http://configure.ac:9>: installing 'm4/missing' ++ uname -o + '[' GNU/Linux = Android ']' + '[' -e /system/bin/app_process ']'
localhost:/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx configure: loading site script /usr/share/site/x86_64-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether sleep supports fractional seconds... yes checking filesystem timestamp resolution... 0.01 ....snip
checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands
localhost:/home/cinelerra/cinelerra-5.1 #
looks good, now try make ? (may be with output redirection so it will be easier to see if any error occured)
# make > make.log 2>&1 Compilation terminated with Error (many 46 | #include "a52.h"), so I put the output log below: mkdir -p bin bin/applications bin/pixmaps bin/lv2 make -j32 all-recursive make[1]: Entering directory '/home/cinelerra/cinelerra-5.1' Making all in thirdparty make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[2]: warning: -j32 forced in submake: resetting jobserver mode. make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' Making all in libbthread-master make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/libbthread-master' make[2]: warning: -j32 forced in submake: resetting jobserver mode. g++ -c -o jpt.o just-pt.cc -I. ar crs jpt.a jpt.o make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/libbthread-master' Making all in libzmpeg3 make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[2]: warning: -j32 forced in submake: resetting jobserver mode. cc -c `cat x86_64/c_flags` audio/ac3.C -o x86_64/audio/ac3.o cc -c `cat x86_64/c_flags` audio/dct.C -o x86_64/audio/dct.o cc -c `cat x86_64/c_flags` audio/huffman.C -o x86_64/audio/huffman.o cc -c `cat x86_64/c_flags` audio/layer2.C -o x86_64/audio/layer2.o cc -c `cat x86_64/c_flags` audio/layer3.C -o x86_64/audio/layer3.o cc -c `cat x86_64/c_flags` audio/audio.C -o x86_64/audio/audio.o cc -c `cat x86_64/c_flags` audio/pcm.C -o x86_64/audio/pcm.o cc -c `cat x86_64/c_flags` audio/synthesizers.C -o x86_64/audio/synthesizers.o cc -c `cat x86_64/c_flags` audio/tables.C -o x86_64/audio/tables.o cc -c `cat x86_64/c_flags` libzmpeg3.C -o x86_64/libzmpeg3.o cc -c `cat x86_64/c_flags` atrack.C -o x86_64/atrack.o cc -c `cat x86_64/c_flags` bits.C -o x86_64/bits.o cc -c `cat x86_64/c_flags` css.C -o x86_64/css.o cc -c `cat x86_64/c_flags` demux.C -o x86_64/demux.o cc -c `cat x86_64/c_flags` strack.C -o x86_64/strack.o cc -c `cat x86_64/c_flags` title.C -o x86_64/title.o cc -c `cat x86_64/c_flags` vtrack.C -o x86_64/vtrack.o cc -c `cat x86_64/c_flags` zio.C -o x86_64/zio.o cc -c `cat x86_64/c_flags` dvb.C -o x86_64/dvb.o cc -c `cat x86_64/c_flags` huf.C -o x86_64/huf.o cc -c `cat x86_64/c_flags` xfont.C -o x86_64/xfont.o cc -c `cat x86_64/c_flags` video/getpicture.C -o x86_64/video/getpicture.o cc -c `cat x86_64/c_flags` video/headers.C -o x86_64/video/headers.o cc -c `cat x86_64/c_flags` video/idct.C -o x86_64/video/idct.o cc -c `cat x86_64/c_flags` video/macroblocks.C -o x86_64/video/macroblocks.o cc -c `cat x86_64/c_flags` video/mmxtest.C -o x86_64/video/mmxtest.o cc -c `cat x86_64/c_flags` video/motion.C -o x86_64/video/motion.o cc -c `cat x86_64/c_flags` video/cache.C -o x86_64/video/cache.o cc -c `cat x86_64/c_flags` video/video.C -o x86_64/video/video.o cc -c `cat x86_64/c_flags` video/output.C -o x86_64/video/output.o cc -c `cat x86_64/c_flags` video/reconstruct.C -o x86_64/video/reconstruct.o cc -c `cat x86_64/c_flags` video/seek.C -o x86_64/video/seek.o In file included from audio/layer2.C:7: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ In file included from audio/synthesizers.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. compilation terminated. In file included from zio.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/layer2.o] Error 1 make[2]: *** Waiting for unfinished jobs.... In file included from strack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from dvb.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/synthesizers.o] Error 1 make[2]: *** [Makefile:129: x86_64/strack.o] Error 1 make[2]: *** [Makefile:129: x86_64/zio.o] Error 1 make[2]: *** [Makefile:129: x86_64/dvb.o] Error 1 In file included from bits.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from audio/dct.C:29: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from audio/audio.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from title.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from demux.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/dct.o] Error 1 make[2]: *** [Makefile:129: x86_64/audio/audio.o] Error 1 make[2]: *** [Makefile:129: x86_64/bits.o] Error 1 In file included from audio/layer3.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/layer3.o] Error 1 make[2]: *** [Makefile:129: x86_64/demux.o] Error 1 make[2]: *** [Makefile:129: x86_64/title.o] Error 1 In file included from vtrack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/vtrack.o] Error 1 In file included from audio/ac3.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/ac3.o] Error 1 In file included from css.C:2: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/css.o] Error 1 In file included from audio/pcm.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/getpicture.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/pcm.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/getpicture.o] Error 1 In file included from video/idct.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from libzmpeg3.C:7: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/idct.o] Error 1 make[2]: *** [Makefile:129: x86_64/libzmpeg3.o] Error 1 In file included from audio/tables.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/tables.o] Error 1 In file included from huf.C:3: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/huf.o] Error 1 In file included from audio/huffman.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/huffman.o] Error 1 In file included from video/mmxtest.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from xfont.C:7: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/mmxtest.o] Error 1 In file included from atrack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/xfont.o] Error 1 make[2]: *** [Makefile:129: x86_64/atrack.o] Error 1 In file included from video/macroblocks.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/macroblocks.o] Error 1 In file included from video/video.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/video.o] Error 1 In file included from video/headers.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/output.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/reconstruct.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/headers.o] Error 1 In file included from video/motion.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/output.o] Error 1 In file included from video/seek.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/reconstruct.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/motion.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/seek.o] Error 1 In file included from video/cache.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/cache.o] Error 1 make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2
пн, 23 сент. 2024 г., 01:05 Terje J. Hanssen <[email protected]>:
Den 22.09.2024 23:40, skrev Andrew Randrianasulu:
пн, 23 сент. 2024 г., 00:12 Terje J. Hanssen <[email protected]>:
Den 22.09.2024 15:56, skrev Andrew Randrianasulu:
вс, 22 сент. 2024 г., 13:56 Terje J. Hanssen via Cin < [email protected]>:
After getting the generic built environment for Cingg on openSUSE-Slowroll in place, it's time to continue with the steps to get Cingg built from git using the system FFmpeg and libs.
First a reference to and from the previous thread https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008652.html
...snip
-------------------
Suggestions to modified/additional procedure steps to build Cingg from git using the system FFmpeg and libs continued from the previous thread? https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008655.html
try
./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
you might move just-build cingg+plugins in "bin" directory somewhere away in case you will want to make more tests with it, then run "make clean" configure line as above, make, make install
I'm late due to some other matter today.
# cd /home/cinelerra/cinelerra-5.1/bin Moved cin and plugins to a backup directory
I take a checkpoint here, in case I did something wrong: 4) ./configure wasn't found, so I ran 3) ./autogen.sh first as we did in the previous thread ?
yes.
Output as follows below:
# cd /home/cinelerra/cinelerra-5.1
# make clean for dir in thirdparty libzmpeg3 mpeg2enc mplexlo db guicast cinelerra plugins doc po; do make -C $dir clean; done make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' for f in a52dec djbfft ffmpeg fftw flac giflib ladspa lame libavc1394 libraw1394 libiec61883 libdv libjpeg opus openjpeg libogg libsndfile libtheora libuuid libvorbis mjpegtools openexr openExr ilmBase tiff twolame x264 x265 libvpx lv2 sratom serd sord lilv suil libaom dav1d libwebp ffnvcodec libdpx; do rm -rf $f*; done rm -rf /home/cinelerra/cinelerra-5.1/thirdparty/../thirdparty/build make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' rm -rf x86_64 tags make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mplexlo' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mplexlo' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Nothing to be done for 'clean'. make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast' rm -rf x86_64 make -C xfer clean make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' rm -rf x86_64 xfer*.[Ch] make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/cinelerra' rm -rf x86_64 rm -f shuttle_keys.h make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/plugins' rm -rf 1080to480/x86_64 1080to540/x86_64 720to480/x86_64 aging/x86_64 alpha/x86_64 scaleratio/x86_64 audioscope/x86_64 bandslide/x86_64 bandwipe/x86_64 bluebanana/x86_64 blur/x86_64 boxblur/x86_64 brightness/x86_64 burn/x86_64 C41/x86_64 chorus/x86_64 chromakey/x86_64 chromakeyhsv/x86_64 chromakeyavid/x86_64 color3way/x86_64 colorbalance/x86_64 colorspace/x86_64 compressor/x86_64 compressormulti/x86_64 crikey/x86_64 crop/x86_64 crossfade/x86_64 dcoffset/x86_64 decimate/x86_64 deinterlace/x86_64 deinterlace-cv/x86_64 delayaudio/x86_64 delayvideo/x86_64 denoise/x86_64 denoisefft/x86_64 denoiseseltempavg/x86_64 denoisevideo/x86_64 descratch/x86_64 despike/x86_64 diffkey/x86_64 dissolve/x86_64 dot/x86_64 downsample/x86_64 edge/x86_64 echo/x86_64 echocancel/x86_64 fieldframe/x86_64 flanger/x86_64 flash/x86_64 flip/x86_64 foreground/x86_64 framefield/x86_64 freeverb/x86_64 freezeframe/x86_64 gain/x86_64 gamma/x86_64 gradient/x86_64 graphic/x86_64 histeq/x86_64 histogram/x86_64 histogram_bezier/x86_64 holo/x86_64 huesaturation/x86_64 interpolate/x86_64 interpolateaudio/x86_64 interpolatevideo/x86_64 invertaudio/x86_64 invertvideo/x86_64 irissquare/x86_64 ivtc/x86_64 lens/x86_64 level/x86_64 libeffecttv/x86_64 linearblur/x86_64 liveaudio/x86_64 livevideo/x86_64 loopaudio/x86_64 loopvideo/x86_64 mirror/x86_64 motion/x86_64 motion51/x86_64 motion2point/x86_64 motionblur/x86_64 normalize/x86_64 oilpainting/x86_64 overlay/x86_64 overlayaudio/x86_64 parametric/x86_64 perspective/x86_64 photoscale/x86_64 posterize/x86_64 pitch/x86_64 polar/x86_64 radialblur/x86_64 reframe/x86_64 reframert/x86_64 removegaps/x86_64 reroute/x86_64 resample/x86_64 resamplert/x86_64 reverb/x86_64 reverseaudio/x86_64 reversevideo/x86_64 rgb601/x86_64 rgbshift/x86_64 rotate/x86_64 rumbler/x86_64 scale/x86_64 sketcher/x86_64 shapewipe/x86_64 sharpen/x86_64 shiftinterlace/x86_64 slide/x86_64 spectrogram/x86_64 speed_pc/x86_64 spherecam/x86_64 svg/x86_64 swapchannels/x86_64 swapframes/x86_64 swatch/x86_64 synthesizer/x86_64 threshold/x86_64 timeavg/x86_64 timeblur/x86_64 timefront/x86_64 timelapsehelper/x86_64 timestretch/x86_64 timestretchrt/x86_64 titler/x86_64 tracer/x86_64 translate/x86_64 tremolo/x86_64 unsharp/x86_64 videoscope/x86_64 wave/x86_64 whirl/x86_64 wipe/x86_64 yuv/x86_64 yuv411/x86_64 yuvshift/x86_64 zoom/x86_64 zoomblur/x86_64 theme_blond_cv/x86_64 theme_blue_dot/x86_64 theme_bright/x86_64 theme_hulk/x86_64 theme_neophyte/x86_64 theme_pinklady/x86_64 theme_suv/x86_64 theme_unflat/x86_64 theme_cakewalk/x86_64 cdripper/x86_64 theme_blond/x86_64 theme_blue/x86_64 rm -rf /home/cinelerra/cinelerra-5.1/plugins/../bin/plugins /home/cinelerra/cinelerra-5.1/plugins/../bin/ladspa make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/plugins' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/doc' rm -f cinelerra.html arrow.png autokeyframe.png camera.png channel.png crop.png cut.png expandpatch_checked.png eyedrop.png fitautos.png ibeam.png left_justify.png loadmode_cat.png loadmode_nested.png loadmode_newcat.png loadmode_new.png loadmode_newtracks.png loadmode_none.png loadmode_paste.png loadmode_resource.png magnify.png mask.png mutepatch_up.png paste.png projector.png protect.png recordpatch.png record.png rewind.png show_meters.png singleframe.png titlesafe.png toolwindow.png top_justify.png wrench.png make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/doc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/po' rm -f de.mo es.mo eu.mo fr.mo it.mo nb.mo pt.mo sl.mo hi.mo hu.mo ko.mo vi.mo zh.mo el.mo ja.mo uk.mo ru.mo make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/po' rm -rf thirdparty/opencv* rm -rf bin cinelerra/tags ./autogen.sh clean + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in config.sub config.status missing + rm -rf autom4te.cache m4 + '[' clean = clean ']' + exit 0
/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx -bash: ./configure: No such file or directory
3) # ./autogen.sh + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in config.sub config.status missing + rm -rf autom4te.cache m4 + '[' '' = clean ']' + mkdir m4 + autoreconf --install libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'm4'. libtoolize: copying file 'm4/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. libtoolize: copying file 'm4/libtool.m4' libtoolize: copying file 'm4/ltoptions.m4' libtoolize: copying file 'm4/ltsugar.m4' libtoolize: copying file 'm4/ltversion.m4' libtoolize: copying file 'm4/lt~obsolete.m4' configure.ac:10: installing 'm4/compile' configure.ac:10: installing 'm4/config.guess' configure.ac:10: installing 'm4/config.sub' configure.ac:9: installing 'm4/install-sh' configure.ac:9: installing 'm4/missing' ++ uname -o + '[' GNU/Linux = Android ']' + '[' -e /system/bin/app_process ']'
localhost:/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx configure: loading site script /usr/share/site/x86_64-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether sleep supports fractional seconds... yes checking filesystem timestamp resolution... 0.01 ....snip
checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands
localhost:/home/cinelerra/cinelerra-5.1 #
looks good, now try make ? (may be with output redirection so it will be easier to see if any error occured)
# make > make.log 2>&1
Compilation terminated with Error (many 46 | #include "a52.h"), so I put the output log below:
mkdir -p bin bin/applications bin/pixmaps bin/lv2 make -j32 all-recursive make[1]: Entering directory '/home/cinelerra/cinelerra-5.1' Making all in thirdparty make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[2]: warning: -j32 forced in submake: resetting jobserver mode. make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' Making all in libbthread-master make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/libbthread-master' make[2]: warning: -j32 forced in submake: resetting jobserver mode. g++ -c -o jpt.o just-pt.cc -I. ar crs jpt.a jpt.o make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/libbthread-master' Making all in libzmpeg3 make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[2]: warning: -j32 forced in submake: resetting jobserver mode. cc -c `cat x86_64/c_flags` audio/ac3.C -o x86_64/audio/ac3.o cc -c `cat x86_64/c_flags` audio/dct.C -o x86_64/audio/dct.o cc -c `cat x86_64/c_flags` audio/huffman.C -o x86_64/audio/huffman.o cc -c `cat x86_64/c_flags` audio/layer2.C -o x86_64/audio/layer2.o cc -c `cat x86_64/c_flags` audio/layer3.C -o x86_64/audio/layer3.o cc -c `cat x86_64/c_flags` audio/audio.C -o x86_64/audio/audio.o cc -c `cat x86_64/c_flags` audio/pcm.C -o x86_64/audio/pcm.o cc -c `cat x86_64/c_flags` audio/synthesizers.C -o x86_64/audio/synthesizers.o cc -c `cat x86_64/c_flags` audio/tables.C -o x86_64/audio/tables.o cc -c `cat x86_64/c_flags` libzmpeg3.C -o x86_64/libzmpeg3.o cc -c `cat x86_64/c_flags` atrack.C -o x86_64/atrack.o cc -c `cat x86_64/c_flags` bits.C -o x86_64/bits.o cc -c `cat x86_64/c_flags` css.C -o x86_64/css.o cc -c `cat x86_64/c_flags` demux.C -o x86_64/demux.o cc -c `cat x86_64/c_flags` strack.C -o x86_64/strack.o cc -c `cat x86_64/c_flags` title.C -o x86_64/title.o cc -c `cat x86_64/c_flags` vtrack.C -o x86_64/vtrack.o cc -c `cat x86_64/c_flags` zio.C -o x86_64/zio.o cc -c `cat x86_64/c_flags` dvb.C -o x86_64/dvb.o cc -c `cat x86_64/c_flags` huf.C -o x86_64/huf.o cc -c `cat x86_64/c_flags` xfont.C -o x86_64/xfont.o cc -c `cat x86_64/c_flags` video/getpicture.C -o x86_64/video/getpicture.o cc -c `cat x86_64/c_flags` video/headers.C -o x86_64/video/headers.o cc -c `cat x86_64/c_flags` video/idct.C -o x86_64/video/idct.o cc -c `cat x86_64/c_flags` video/macroblocks.C -o x86_64/video/macroblocks.o cc -c `cat x86_64/c_flags` video/mmxtest.C -o x86_64/video/mmxtest.o cc -c `cat x86_64/c_flags` video/motion.C -o x86_64/video/motion.o cc -c `cat x86_64/c_flags` video/cache.C -o x86_64/video/cache.o cc -c `cat x86_64/c_flags` video/video.C -o x86_64/video/video.o cc -c `cat x86_64/c_flags` video/output.C -o x86_64/video/output.o cc -c `cat x86_64/c_flags` video/reconstruct.C -o x86_64/video/reconstruct.o cc -c `cat x86_64/c_flags` video/seek.C -o x86_64/video/seek.o In file included from audio/layer2.C:7: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ In file included from audio/synthesizers.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. compilation terminated. In file included from zio.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/layer2.o] Error 1 make[2]: *** Waiting for unfinished jobs.... In file included from strack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from dvb.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/synthesizers.o] Error 1 make[2]: *** [Makefile:129: x86_64/strack.o] Error 1 make[2]: *** [Makefile:129: x86_64/zio.o] Error 1 make[2]: *** [Makefile:129: x86_64/dvb.o] Error 1 In file included from bits.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from audio/dct.C:29: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from audio/audio.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from title.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from demux.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/dct.o] Error 1 make[2]: *** [Makefile:129: x86_64/audio/audio.o] Error 1 make[2]: *** [Makefile:129: x86_64/bits.o] Error 1 In file included from audio/layer3.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/layer3.o] Error 1 make[2]: *** [Makefile:129: x86_64/demux.o] Error 1 make[2]: *** [Makefile:129: x86_64/title.o] Error 1 In file included from vtrack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/vtrack.o] Error 1 In file included from audio/ac3.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/ac3.o] Error 1 In file included from css.C:2: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/css.o] Error 1 In file included from audio/pcm.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/getpicture.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/pcm.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/getpicture.o] Error 1 In file included from video/idct.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from libzmpeg3.C:7: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/idct.o] Error 1 make[2]: *** [Makefile:129: x86_64/libzmpeg3.o] Error 1 In file included from audio/tables.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/tables.o] Error 1 In file included from huf.C:3: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/huf.o] Error 1 In file included from audio/huffman.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/huffman.o] Error 1 In file included from video/mmxtest.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from xfont.C:7: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/mmxtest.o] Error 1 In file included from atrack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/xfont.o] Error 1 make[2]: *** [Makefile:129: x86_64/atrack.o] Error 1 In file included from video/macroblocks.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/macroblocks.o] Error 1 In file included from video/video.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/video.o] Error 1 In file included from video/headers.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/output.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/reconstruct.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/headers.o] Error 1 In file included from video/motion.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/output.o] Error 1 In file included from video/seek.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/reconstruct.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/motion.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/seek.o] Error 1 In file included from video/cache.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/cache.o] Error 1 make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2
my bad! try to install liba52-devel and mjpegtools-devel and may be twolame-devel too.
Den 23.09.2024 00:21, skrev Andrew Randrianasulu:
пн, 23 сент. 2024 г., 01:05 Terje J. Hanssen <[email protected]>:
Den 22.09.2024 23:40, skrev Andrew Randrianasulu:
пн, 23 сент. 2024 г., 00:12 Terje J. Hanssen <[email protected]>:
Den 22.09.2024 15:56, skrev Andrew Randrianasulu:
вс, 22 сент. 2024 г., 13:56 Terje J. Hanssen via Cin <[email protected]>:
After getting the generic built environment for Cingg on openSUSE-Slowroll in place, it's time to continue with the steps to get Cingg built from git using the system FFmpeg and libs.
First a reference to and from the previous thread https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008652.html
...snip
-------------------
Suggestions to modified/additional procedure steps to build Cingg from git using the system FFmpeg and libs continued from the previous thread? https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008655.html
try
./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
you might move just-build cingg+plugins in "bin" directory somewhere away in case you will want to make more tests with it, then run "make clean" configure line as above, make, make install
I'm late due to some other matter today.
# cd /home/cinelerra/cinelerra-5.1/bin Moved cin and plugins to a backup directory
I take a checkpoint here, in case I did something wrong: 4) ./configure wasn't found, so I ran 3) ./autogen.sh first as we did in the previous thread ?
yes.
Output as follows below:
# cd /home/cinelerra/cinelerra-5.1
# make clean for dir in thirdparty libzmpeg3 mpeg2enc mplexlo db guicast cinelerra plugins doc po; do make -C $dir clean; done make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' for f in a52dec djbfft ffmpeg fftw flac giflib ladspa lame libavc1394 libraw1394 libiec61883 libdv libjpeg opus openjpeg libogg libsndfile libtheora libuuid libvorbis mjpegtools openexr openExr ilmBase tiff twolame x264 x265 libvpx lv2 sratom serd sord lilv suil libaom dav1d libwebp ffnvcodec libdpx; do rm -rf $f*; done rm -rf /home/cinelerra/cinelerra-5.1/thirdparty/../thirdparty/build make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' rm -rf x86_64 tags make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mplexlo' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mplexlo' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Nothing to be done for 'clean'. make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast' rm -rf x86_64 make -C xfer clean make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' rm -rf x86_64 xfer*.[Ch] make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/cinelerra' rm -rf x86_64 rm -f shuttle_keys.h make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/plugins' rm -rf 1080to480/x86_64 1080to540/x86_64 720to480/x86_64 aging/x86_64 alpha/x86_64 scaleratio/x86_64 audioscope/x86_64 bandslide/x86_64 bandwipe/x86_64 bluebanana/x86_64 blur/x86_64 boxblur/x86_64 brightness/x86_64 burn/x86_64 C41/x86_64 chorus/x86_64 chromakey/x86_64 chromakeyhsv/x86_64 chromakeyavid/x86_64 color3way/x86_64 colorbalance/x86_64 colorspace/x86_64 compressor/x86_64 compressormulti/x86_64 crikey/x86_64 crop/x86_64 crossfade/x86_64 dcoffset/x86_64 decimate/x86_64 deinterlace/x86_64 deinterlace-cv/x86_64 delayaudio/x86_64 delayvideo/x86_64 denoise/x86_64 denoisefft/x86_64 denoiseseltempavg/x86_64 denoisevideo/x86_64 descratch/x86_64 despike/x86_64 diffkey/x86_64 dissolve/x86_64 dot/x86_64 downsample/x86_64 edge/x86_64 echo/x86_64 echocancel/x86_64 fieldframe/x86_64 flanger/x86_64 flash/x86_64 flip/x86_64 foreground/x86_64 framefield/x86_64 freeverb/x86_64 freezeframe/x86_64 gain/x86_64 gamma/x86_64 gradient/x86_64 graphic/x86_64 histeq/x86_64 histogram/x86_64 histogram_bezier/x86_64 holo/x86_64 huesaturation/x86_64 interpolate/x86_64 interpolateaudio/x86_64 interpolatevideo/x86_64 invertaudio/x86_64 invertvideo/x86_64 irissquare/x86_64 ivtc/x86_64 lens/x86_64 level/x86_64 libeffecttv/x86_64 linearblur/x86_64 liveaudio/x86_64 livevideo/x86_64 loopaudio/x86_64 loopvideo/x86_64 mirror/x86_64 motion/x86_64 motion51/x86_64 motion2point/x86_64 motionblur/x86_64 normalize/x86_64 oilpainting/x86_64 overlay/x86_64 overlayaudio/x86_64 parametric/x86_64 perspective/x86_64 photoscale/x86_64 posterize/x86_64 pitch/x86_64 polar/x86_64 radialblur/x86_64 reframe/x86_64 reframert/x86_64 removegaps/x86_64 reroute/x86_64 resample/x86_64 resamplert/x86_64 reverb/x86_64 reverseaudio/x86_64 reversevideo/x86_64 rgb601/x86_64 rgbshift/x86_64 rotate/x86_64 rumbler/x86_64 scale/x86_64 sketcher/x86_64 shapewipe/x86_64 sharpen/x86_64 shiftinterlace/x86_64 slide/x86_64 spectrogram/x86_64 speed_pc/x86_64 spherecam/x86_64 svg/x86_64 swapchannels/x86_64 swapframes/x86_64 swatch/x86_64 synthesizer/x86_64 threshold/x86_64 timeavg/x86_64 timeblur/x86_64 timefront/x86_64 timelapsehelper/x86_64 timestretch/x86_64 timestretchrt/x86_64 titler/x86_64 tracer/x86_64 translate/x86_64 tremolo/x86_64 unsharp/x86_64 videoscope/x86_64 wave/x86_64 whirl/x86_64 wipe/x86_64 yuv/x86_64 yuv411/x86_64 yuvshift/x86_64 zoom/x86_64 zoomblur/x86_64 theme_blond_cv/x86_64 theme_blue_dot/x86_64 theme_bright/x86_64 theme_hulk/x86_64 theme_neophyte/x86_64 theme_pinklady/x86_64 theme_suv/x86_64 theme_unflat/x86_64 theme_cakewalk/x86_64 cdripper/x86_64 theme_blond/x86_64 theme_blue/x86_64 rm -rf /home/cinelerra/cinelerra-5.1/plugins/../bin/plugins /home/cinelerra/cinelerra-5.1/plugins/../bin/ladspa make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/plugins' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/doc' rm -f cinelerra.html arrow.png autokeyframe.png camera.png channel.png crop.png cut.png expandpatch_checked.png eyedrop.png fitautos.png ibeam.png left_justify.png loadmode_cat.png loadmode_nested.png loadmode_newcat.png loadmode_new.png loadmode_newtracks.png loadmode_none.png loadmode_paste.png loadmode_resource.png magnify.png mask.png mutepatch_up.png paste.png projector.png protect.png recordpatch.png record.png rewind.png show_meters.png singleframe.png titlesafe.png toolwindow.png top_justify.png wrench.png make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/doc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/po' rm -f de.mo es.mo eu.mo fr.mo it.mo nb.mo pt.mo sl.mo hi.mo hu.mo ko.mo vi.mo zh.mo el.mo ja.mo uk.mo ru.mo make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/po' rm -rf thirdparty/opencv* rm -rf bin cinelerra/tags ./autogen.sh clean + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in <http://config.h.in> config.sub config.status missing + rm -rf autom4te.cache m4 + '[' clean = clean ']' + exit 0
/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx -bash: ./configure: No such file or directory
3) # ./autogen.sh + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in <http://config.h.in> config.sub config.status missing + rm -rf autom4te.cache m4 + '[' '' = clean ']' + mkdir m4 + autoreconf --install libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'm4'. libtoolize: copying file 'm4/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. libtoolize: copying file 'm4/libtool.m4' libtoolize: copying file 'm4/ltoptions.m4' libtoolize: copying file 'm4/ltsugar.m4' libtoolize: copying file 'm4/ltversion.m4' libtoolize: copying file 'm4/lt~obsolete.m4' configure.ac:10 <http://configure.ac:10>: installing 'm4/compile' configure.ac:10 <http://configure.ac:10>: installing 'm4/config.guess' configure.ac:10 <http://configure.ac:10>: installing 'm4/config.sub' configure.ac:9 <http://configure.ac:9>: installing 'm4/install-sh' configure.ac:9 <http://configure.ac:9>: installing 'm4/missing' ++ uname -o + '[' GNU/Linux = Android ']' + '[' -e /system/bin/app_process ']'
localhost:/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx configure: loading site script /usr/share/site/x86_64-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether sleep supports fractional seconds... yes checking filesystem timestamp resolution... 0.01 ....snip
checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands
localhost:/home/cinelerra/cinelerra-5.1 #
looks good, now try make ? (may be with output redirection so it will be easier to see if any error occured)
# make > make.log 2>&1
Compilation terminated with Error (many 46 | #include "a52.h"), so I put the output log below:
mkdir -p bin bin/applications bin/pixmaps bin/lv2 make -j32 all-recursive make[1]: Entering directory '/home/cinelerra/cinelerra-5.1' Making all in thirdparty make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[2]: warning: -j32 forced in submake: resetting jobserver mode. make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' Making all in libbthread-master make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/libbthread-master' make[2]: warning: -j32 forced in submake: resetting jobserver mode. g++ -c -o jpt.o just-pt.cc -I. ar crs jpt.a jpt.o make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/libbthread-master' Making all in libzmpeg3 make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[2]: warning: -j32 forced in submake: resetting jobserver mode. cc -c `cat x86_64/c_flags` audio/ac3.C -o x86_64/audio/ac3.o cc -c `cat x86_64/c_flags` audio/dct.C -o x86_64/audio/dct.o cc -c `cat x86_64/c_flags` audio/huffman.C -o x86_64/audio/huffman.o cc -c `cat x86_64/c_flags` audio/layer2.C -o x86_64/audio/layer2.o cc -c `cat x86_64/c_flags` audio/layer3.C -o x86_64/audio/layer3.o cc -c `cat x86_64/c_flags` audio/audio.C -o x86_64/audio/audio.o cc -c `cat x86_64/c_flags` audio/pcm.C -o x86_64/audio/pcm.o cc -c `cat x86_64/c_flags` audio/synthesizers.C -o x86_64/audio/synthesizers.o cc -c `cat x86_64/c_flags` audio/tables.C -o x86_64/audio/tables.o cc -c `cat x86_64/c_flags` libzmpeg3.C -o x86_64/libzmpeg3.o cc -c `cat x86_64/c_flags` atrack.C -o x86_64/atrack.o cc -c `cat x86_64/c_flags` bits.C -o x86_64/bits.o cc -c `cat x86_64/c_flags` css.C -o x86_64/css.o cc -c `cat x86_64/c_flags` demux.C -o x86_64/demux.o cc -c `cat x86_64/c_flags` strack.C -o x86_64/strack.o cc -c `cat x86_64/c_flags` title.C -o x86_64/title.o cc -c `cat x86_64/c_flags` vtrack.C -o x86_64/vtrack.o cc -c `cat x86_64/c_flags` zio.C -o x86_64/zio.o cc -c `cat x86_64/c_flags` dvb.C -o x86_64/dvb.o cc -c `cat x86_64/c_flags` huf.C -o x86_64/huf.o cc -c `cat x86_64/c_flags` xfont.C -o x86_64/xfont.o cc -c `cat x86_64/c_flags` video/getpicture.C -o x86_64/video/getpicture.o cc -c `cat x86_64/c_flags` video/headers.C -o x86_64/video/headers.o cc -c `cat x86_64/c_flags` video/idct.C -o x86_64/video/idct.o cc -c `cat x86_64/c_flags` video/macroblocks.C -o x86_64/video/macroblocks.o cc -c `cat x86_64/c_flags` video/mmxtest.C -o x86_64/video/mmxtest.o cc -c `cat x86_64/c_flags` video/motion.C -o x86_64/video/motion.o cc -c `cat x86_64/c_flags` video/cache.C -o x86_64/video/cache.o cc -c `cat x86_64/c_flags` video/video.C -o x86_64/video/video.o cc -c `cat x86_64/c_flags` video/output.C -o x86_64/video/output.o cc -c `cat x86_64/c_flags` video/reconstruct.C -o x86_64/video/reconstruct.o cc -c `cat x86_64/c_flags` video/seek.C -o x86_64/video/seek.o In file included from audio/layer2.C:7: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ In file included from audio/synthesizers.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. compilation terminated. In file included from zio.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/layer2.o] Error 1 make[2]: *** Waiting for unfinished jobs.... In file included from strack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from dvb.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/synthesizers.o] Error 1 make[2]: *** [Makefile:129: x86_64/strack.o] Error 1 make[2]: *** [Makefile:129: x86_64/zio.o] Error 1 make[2]: *** [Makefile:129: x86_64/dvb.o] Error 1 In file included from bits.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from audio/dct.C:29: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from audio/audio.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from title.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from demux.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/dct.o] Error 1 make[2]: *** [Makefile:129: x86_64/audio/audio.o] Error 1 make[2]: *** [Makefile:129: x86_64/bits.o] Error 1 In file included from audio/layer3.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/layer3.o] Error 1 make[2]: *** [Makefile:129: x86_64/demux.o] Error 1 make[2]: *** [Makefile:129: x86_64/title.o] Error 1 In file included from vtrack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/vtrack.o] Error 1 In file included from audio/ac3.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/ac3.o] Error 1 In file included from css.C:2: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/css.o] Error 1 In file included from audio/pcm.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/getpicture.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/pcm.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/getpicture.o] Error 1 In file included from video/idct.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from libzmpeg3.C:7: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/idct.o] Error 1 make[2]: *** [Makefile:129: x86_64/libzmpeg3.o] Error 1 In file included from audio/tables.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/tables.o] Error 1 In file included from huf.C:3: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/huf.o] Error 1 In file included from audio/huffman.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/huffman.o] Error 1 In file included from video/mmxtest.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from xfont.C:7: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/mmxtest.o] Error 1 In file included from atrack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/xfont.o] Error 1 make[2]: *** [Makefile:129: x86_64/atrack.o] Error 1 In file included from video/macroblocks.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/macroblocks.o] Error 1 In file included from video/video.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/video.o] Error 1 In file included from video/headers.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/output.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/reconstruct.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/headers.o] Error 1 In file included from video/motion.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/output.o] Error 1 In file included from video/seek.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/reconstruct.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/motion.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/seek.o] Error 1 In file included from video/cache.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/cache.o] Error 1 make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2
my bad! try to install liba52-devel and liba52-devel libtwolame-develand may be twolame-devel too.
Installed liba52-devel and libtwolame-devel, did't find any available mjpegtools-devel (had mjegtools installed), didn't install mjpegtools-debuginfo and -debugsource) Three make Error 1, One Error 2: From make.log: .....snip g++ `cat x86_64/c_flags` -DMSGQUAL=aboutprefs -c aboutprefs.C -o x86_64/aboutprefs.o g++ `cat x86_64/c_flags` -DMSGQUAL=adeviceprefs -c adeviceprefs.C -o x86_64/adeviceprefs.o g++ `cat x86_64/c_flags` -DMSGQUAL=aedit -c aedit.C -o x86_64/aedit.o In file included from formattools.h:32, from file.h:37, from aboutprefs.C:24: ffmpeg.h:48:10: fatal error: libavformat/avformat.h: No such file or directory 48 | #include "libavformat/avformat.h" | ^~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. make[2]: *** [Makefile:597: x86_64/aboutprefs.o] Error 1 make[2]: *** Waiting for unfinished jobs.... In file included from formattools.h:32, from file.h:37, from aedit.C:28: ffmpeg.h:48:10: fatal error: libavformat/avformat.h: No such file or directory 48 | #include "libavformat/avformat.h" | ^~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. make[2]: *** [Makefile:597: x86_64/aedit.o] Error 1 In file included from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcsubwindow.h:26, from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcbar.h:26, from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/guicast.h:27, from adeviceprefs.h:31, from adeviceprefs.C:23: /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcwindowbase.h:222:22: warning: ‘virtual void BC_WindowBase::create_objects()’ was hidden [-Woverloaded-virtual=] 222 | virtual void create_objects() { return; }; | ^~~~~~~~~~~~~~ In file included from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/guicast.h:62: /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/errorbox.h:35:14: note: by ‘void ErrorBox::create_objects(const char*)’ 35 | void create_objects(const char *text); | ^~~~~~~~~~~~~~ /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcwindowbase.h:222:22: warning: ‘virtual void BC_WindowBase::create_objects()’ was hidden [-Woverloaded-virtual=] 222 | virtual void create_objects() { return; }; | ^~~~~~~~~~~~~~ In file included from preferencesthread.h:30, from appearanceprefs.h:30, from preferences.h:37, from adeviceprefs.C:33: question.h:34:14: note: by ‘void QuestionWindow::create_objects(const char*, int)’ 34 | void create_objects(const char *string, int use_cancel); | ^~~~~~~~~~~~~~ make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2
пн, 23 сент. 2024 г., 01:39 Terje J. Hanssen <[email protected]>:
Den 23.09.2024 00:21, skrev Andrew Randrianasulu:
пн, 23 сент. 2024 г., 01:05 Terje J. Hanssen <[email protected]>:
Den 22.09.2024 23:40, skrev Andrew Randrianasulu:
пн, 23 сент. 2024 г., 00:12 Terje J. Hanssen <[email protected]>:
Den 22.09.2024 15:56, skrev Andrew Randrianasulu:
вс, 22 сент. 2024 г., 13:56 Terje J. Hanssen via Cin < [email protected]>:
After getting the generic built environment for Cingg on openSUSE-Slowroll in place, it's time to continue with the steps to get Cingg built from git using the system FFmpeg and libs.
First a reference to and from the previous thread https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008652.html
...snip
-------------------
Suggestions to modified/additional procedure steps to build Cingg from git using the system FFmpeg and libs continued from the previous thread? https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008655.html
try
./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
you might move just-build cingg+plugins in "bin" directory somewhere away in case you will want to make more tests with it, then run "make clean" configure line as above, make, make install
I'm late due to some other matter today.
# cd /home/cinelerra/cinelerra-5.1/bin Moved cin and plugins to a backup directory
I take a checkpoint here, in case I did something wrong: 4) ./configure wasn't found, so I ran 3) ./autogen.sh first as we did in the previous thread ?
yes.
Output as follows below:
# cd /home/cinelerra/cinelerra-5.1
# make clean for dir in thirdparty libzmpeg3 mpeg2enc mplexlo db guicast cinelerra plugins doc po; do make -C $dir clean; done make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' for f in a52dec djbfft ffmpeg fftw flac giflib ladspa lame libavc1394 libraw1394 libiec61883 libdv libjpeg opus openjpeg libogg libsndfile libtheora libuuid libvorbis mjpegtools openexr openExr ilmBase tiff twolame x264 x265 libvpx lv2 sratom serd sord lilv suil libaom dav1d libwebp ffnvcodec libdpx; do rm -rf $f*; done rm -rf /home/cinelerra/cinelerra-5.1/thirdparty/../thirdparty/build make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' rm -rf x86_64 tags make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mplexlo' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mplexlo' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Nothing to be done for 'clean'. make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast' rm -rf x86_64 make -C xfer clean make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' rm -rf x86_64 xfer*.[Ch] make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/cinelerra' rm -rf x86_64 rm -f shuttle_keys.h make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/plugins' rm -rf 1080to480/x86_64 1080to540/x86_64 720to480/x86_64 aging/x86_64 alpha/x86_64 scaleratio/x86_64 audioscope/x86_64 bandslide/x86_64 bandwipe/x86_64 bluebanana/x86_64 blur/x86_64 boxblur/x86_64 brightness/x86_64 burn/x86_64 C41/x86_64 chorus/x86_64 chromakey/x86_64 chromakeyhsv/x86_64 chromakeyavid/x86_64 color3way/x86_64 colorbalance/x86_64 colorspace/x86_64 compressor/x86_64 compressormulti/x86_64 crikey/x86_64 crop/x86_64 crossfade/x86_64 dcoffset/x86_64 decimate/x86_64 deinterlace/x86_64 deinterlace-cv/x86_64 delayaudio/x86_64 delayvideo/x86_64 denoise/x86_64 denoisefft/x86_64 denoiseseltempavg/x86_64 denoisevideo/x86_64 descratch/x86_64 despike/x86_64 diffkey/x86_64 dissolve/x86_64 dot/x86_64 downsample/x86_64 edge/x86_64 echo/x86_64 echocancel/x86_64 fieldframe/x86_64 flanger/x86_64 flash/x86_64 flip/x86_64 foreground/x86_64 framefield/x86_64 freeverb/x86_64 freezeframe/x86_64 gain/x86_64 gamma/x86_64 gradient/x86_64 graphic/x86_64 histeq/x86_64 histogram/x86_64 histogram_bezier/x86_64 holo/x86_64 huesaturation/x86_64 interpolate/x86_64 interpolateaudio/x86_64 interpolatevideo/x86_64 invertaudio/x86_64 invertvideo/x86_64 irissquare/x86_64 ivtc/x86_64 lens/x86_64 level/x86_64 libeffecttv/x86_64 linearblur/x86_64 liveaudio/x86_64 livevideo/x86_64 loopaudio/x86_64 loopvideo/x86_64 mirror/x86_64 motion/x86_64 motion51/x86_64 motion2point/x86_64 motionblur/x86_64 normalize/x86_64 oilpainting/x86_64 overlay/x86_64 overlayaudio/x86_64 parametric/x86_64 perspective/x86_64 photoscale/x86_64 posterize/x86_64 pitch/x86_64 polar/x86_64 radialblur/x86_64 reframe/x86_64 reframert/x86_64 removegaps/x86_64 reroute/x86_64 resample/x86_64 resamplert/x86_64 reverb/x86_64 reverseaudio/x86_64 reversevideo/x86_64 rgb601/x86_64 rgbshift/x86_64 rotate/x86_64 rumbler/x86_64 scale/x86_64 sketcher/x86_64 shapewipe/x86_64 sharpen/x86_64 shiftinterlace/x86_64 slide/x86_64 spectrogram/x86_64 speed_pc/x86_64 spherecam/x86_64 svg/x86_64 swapchannels/x86_64 swapframes/x86_64 swatch/x86_64 synthesizer/x86_64 threshold/x86_64 timeavg/x86_64 timeblur/x86_64 timefront/x86_64 timelapsehelper/x86_64 timestretch/x86_64 timestretchrt/x86_64 titler/x86_64 tracer/x86_64 translate/x86_64 tremolo/x86_64 unsharp/x86_64 videoscope/x86_64 wave/x86_64 whirl/x86_64 wipe/x86_64 yuv/x86_64 yuv411/x86_64 yuvshift/x86_64 zoom/x86_64 zoomblur/x86_64 theme_blond_cv/x86_64 theme_blue_dot/x86_64 theme_bright/x86_64 theme_hulk/x86_64 theme_neophyte/x86_64 theme_pinklady/x86_64 theme_suv/x86_64 theme_unflat/x86_64 theme_cakewalk/x86_64 cdripper/x86_64 theme_blond/x86_64 theme_blue/x86_64 rm -rf /home/cinelerra/cinelerra-5.1/plugins/../bin/plugins /home/cinelerra/cinelerra-5.1/plugins/../bin/ladspa make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/plugins' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/doc' rm -f cinelerra.html arrow.png autokeyframe.png camera.png channel.png crop.png cut.png expandpatch_checked.png eyedrop.png fitautos.png ibeam.png left_justify.png loadmode_cat.png loadmode_nested.png loadmode_newcat.png loadmode_new.png loadmode_newtracks.png loadmode_none.png loadmode_paste.png loadmode_resource.png magnify.png mask.png mutepatch_up.png paste.png projector.png protect.png recordpatch.png record.png rewind.png show_meters.png singleframe.png titlesafe.png toolwindow.png top_justify.png wrench.png make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/doc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/po' rm -f de.mo es.mo eu.mo fr.mo it.mo nb.mo pt.mo sl.mo hi.mo hu.mo ko.mo vi.mo zh.mo el.mo ja.mo uk.mo ru.mo make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/po' rm -rf thirdparty/opencv* rm -rf bin cinelerra/tags ./autogen.sh clean + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in config.sub config.status missing + rm -rf autom4te.cache m4 + '[' clean = clean ']' + exit 0
/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx -bash: ./configure: No such file or directory
3) # ./autogen.sh + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in config.sub config.status missing + rm -rf autom4te.cache m4 + '[' '' = clean ']' + mkdir m4 + autoreconf --install libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'm4'. libtoolize: copying file 'm4/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. libtoolize: copying file 'm4/libtool.m4' libtoolize: copying file 'm4/ltoptions.m4' libtoolize: copying file 'm4/ltsugar.m4' libtoolize: copying file 'm4/ltversion.m4' libtoolize: copying file 'm4/lt~obsolete.m4' configure.ac:10: installing 'm4/compile' configure.ac:10: installing 'm4/config.guess' configure.ac:10: installing 'm4/config.sub' configure.ac:9: installing 'm4/install-sh' configure.ac:9: installing 'm4/missing' ++ uname -o + '[' GNU/Linux = Android ']' + '[' -e /system/bin/app_process ']'
localhost:/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx configure: loading site script /usr/share/site/x86_64-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether sleep supports fractional seconds... yes checking filesystem timestamp resolution... 0.01 ....snip
checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands
localhost:/home/cinelerra/cinelerra-5.1 #
looks good, now try make ? (may be with output redirection so it will be easier to see if any error occured)
# make > make.log 2>&1
Compilation terminated with Error (many 46 | #include "a52.h"), so I put the output log below:
mkdir -p bin bin/applications bin/pixmaps bin/lv2 make -j32 all-recursive make[1]: Entering directory '/home/cinelerra/cinelerra-5.1' Making all in thirdparty make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[2]: warning: -j32 forced in submake: resetting jobserver mode. make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' Making all in libbthread-master make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/libbthread-master' make[2]: warning: -j32 forced in submake: resetting jobserver mode. g++ -c -o jpt.o just-pt.cc -I. ar crs jpt.a jpt.o make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/libbthread-master' Making all in libzmpeg3 make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[2]: warning: -j32 forced in submake: resetting jobserver mode. cc -c `cat x86_64/c_flags` audio/ac3.C -o x86_64/audio/ac3.o cc -c `cat x86_64/c_flags` audio/dct.C -o x86_64/audio/dct.o cc -c `cat x86_64/c_flags` audio/huffman.C -o x86_64/audio/huffman.o cc -c `cat x86_64/c_flags` audio/layer2.C -o x86_64/audio/layer2.o cc -c `cat x86_64/c_flags` audio/layer3.C -o x86_64/audio/layer3.o cc -c `cat x86_64/c_flags` audio/audio.C -o x86_64/audio/audio.o cc -c `cat x86_64/c_flags` audio/pcm.C -o x86_64/audio/pcm.o cc -c `cat x86_64/c_flags` audio/synthesizers.C -o x86_64/audio/synthesizers.o cc -c `cat x86_64/c_flags` audio/tables.C -o x86_64/audio/tables.o cc -c `cat x86_64/c_flags` libzmpeg3.C -o x86_64/libzmpeg3.o cc -c `cat x86_64/c_flags` atrack.C -o x86_64/atrack.o cc -c `cat x86_64/c_flags` bits.C -o x86_64/bits.o cc -c `cat x86_64/c_flags` css.C -o x86_64/css.o cc -c `cat x86_64/c_flags` demux.C -o x86_64/demux.o cc -c `cat x86_64/c_flags` strack.C -o x86_64/strack.o cc -c `cat x86_64/c_flags` title.C -o x86_64/title.o cc -c `cat x86_64/c_flags` vtrack.C -o x86_64/vtrack.o cc -c `cat x86_64/c_flags` zio.C -o x86_64/zio.o cc -c `cat x86_64/c_flags` dvb.C -o x86_64/dvb.o cc -c `cat x86_64/c_flags` huf.C -o x86_64/huf.o cc -c `cat x86_64/c_flags` xfont.C -o x86_64/xfont.o cc -c `cat x86_64/c_flags` video/getpicture.C -o x86_64/video/getpicture.o cc -c `cat x86_64/c_flags` video/headers.C -o x86_64/video/headers.o cc -c `cat x86_64/c_flags` video/idct.C -o x86_64/video/idct.o cc -c `cat x86_64/c_flags` video/macroblocks.C -o x86_64/video/macroblocks.o cc -c `cat x86_64/c_flags` video/mmxtest.C -o x86_64/video/mmxtest.o cc -c `cat x86_64/c_flags` video/motion.C -o x86_64/video/motion.o cc -c `cat x86_64/c_flags` video/cache.C -o x86_64/video/cache.o cc -c `cat x86_64/c_flags` video/video.C -o x86_64/video/video.o cc -c `cat x86_64/c_flags` video/output.C -o x86_64/video/output.o cc -c `cat x86_64/c_flags` video/reconstruct.C -o x86_64/video/reconstruct.o cc -c `cat x86_64/c_flags` video/seek.C -o x86_64/video/seek.o In file included from audio/layer2.C:7: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ In file included from audio/synthesizers.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. compilation terminated. In file included from zio.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/layer2.o] Error 1 make[2]: *** Waiting for unfinished jobs.... In file included from strack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from dvb.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/synthesizers.o] Error 1 make[2]: *** [Makefile:129: x86_64/strack.o] Error 1 make[2]: *** [Makefile:129: x86_64/zio.o] Error 1 make[2]: *** [Makefile:129: x86_64/dvb.o] Error 1 In file included from bits.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from audio/dct.C:29: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from audio/audio.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from title.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from demux.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/dct.o] Error 1 make[2]: *** [Makefile:129: x86_64/audio/audio.o] Error 1 make[2]: *** [Makefile:129: x86_64/bits.o] Error 1 In file included from audio/layer3.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/layer3.o] Error 1 make[2]: *** [Makefile:129: x86_64/demux.o] Error 1 make[2]: *** [Makefile:129: x86_64/title.o] Error 1 In file included from vtrack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/vtrack.o] Error 1 In file included from audio/ac3.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/ac3.o] Error 1 In file included from css.C:2: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/css.o] Error 1 In file included from audio/pcm.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/getpicture.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/pcm.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/getpicture.o] Error 1 In file included from video/idct.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from libzmpeg3.C:7: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/idct.o] Error 1 make[2]: *** [Makefile:129: x86_64/libzmpeg3.o] Error 1 In file included from audio/tables.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/tables.o] Error 1 In file included from huf.C:3: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/huf.o] Error 1 In file included from audio/huffman.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/huffman.o] Error 1 In file included from video/mmxtest.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from xfont.C:7: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/mmxtest.o] Error 1 In file included from atrack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/xfont.o] Error 1 make[2]: *** [Makefile:129: x86_64/atrack.o] Error 1 In file included from video/macroblocks.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/macroblocks.o] Error 1 In file included from video/video.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/video.o] Error 1 In file included from video/headers.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/output.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/reconstruct.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/headers.o] Error 1 In file included from video/motion.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/output.o] Error 1 In file included from video/seek.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/reconstruct.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/motion.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/seek.o] Error 1 In file included from video/cache.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/cache.o] Error 1 make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2
my bad! try to install liba52-devel and liba52-devel libtwolame-develand may be twolame-devel too.
Installed liba52-devel and libtwolame-devel, did't find any available mjpegtools-devel (had mjegtools installed), didn't install mjpegtools-debuginfo and -debugsource)
Three make Error 1, One Error 2:
From make.log:
.....snip g++ `cat x86_64/c_flags` -DMSGQUAL=aboutprefs -c aboutprefs.C -o x86_64/aboutprefs.o g++ `cat x86_64/c_flags` -DMSGQUAL=adeviceprefs -c adeviceprefs.C -o x86_64/adeviceprefs.o g++ `cat x86_64/c_flags` -DMSGQUAL=aedit -c aedit.C -o x86_64/aedit.o In file included from formattools.h:32, from file.h:37, from aboutprefs.C:24: ffmpeg.h:48:10: fatal error: libavformat/avformat.h: No such file or directory 48 | #include "libavformat/avformat.h" | ^~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. make[2]: *** [Makefile:597: x86_64/aboutprefs.o] Error 1 make[2]: *** Waiting for unfinished jobs.... In file included from formattools.h:32, from file.h:37, from aedit.C:28: ffmpeg.h:48:10: fatal error: libavformat/avformat.h: No such file or directory 48 | #include "libavformat/avformat.h" | ^~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. make[2]: *** [Makefile:597: x86_64/aedit.o] Error 1 In file included from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcsubwindow.h:26, from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcbar.h:26, from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/guicast.h:27, from adeviceprefs.h:31, from adeviceprefs.C:23: /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcwindowbase.h:222:22: warning: ‘virtual void BC_WindowBase::create_objects()’ was hidden [-Woverloaded-virtual=] 222 | virtual void create_objects() { return; }; | ^~~~~~~~~~~~~~ In file included from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/guicast.h:62: /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/errorbox.h:35:14: note: by ‘void ErrorBox::create_objects(const char*)’ 35 | void create_objects(const char *text); | ^~~~~~~~~~~~~~ /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcwindowbase.h:222:22: warning: ‘virtual void BC_WindowBase::create_objects()’ was hidden [-Woverloaded-virtual=] 222 | virtual void create_objects() { return; }; | ^~~~~~~~~~~~~~ In file included from preferencesthread.h:30, from appearanceprefs.h:30, from preferences.h:37, from adeviceprefs.C:33: question.h:34:14: note: by ‘void QuestionWindow::create_objects(const char*, int)’ 34 | void create_objects(const char *string, int use_cancel); | ^~~~~~~~~~~~~~ make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2
ah, ffmpeg includes not found ... does "pkg-config --cflags libavcodec" print anything? alternatively you can look with "ls" into /usr/include, may be current ffmpeg includes live there under ffmpeg7 directory? of course you need ffmpeg(7?)-devel package installed After you located includes try to re-run ./configure but set CFLAGS variable before it with -I/path_to_ffmpeg_includes directive, like CFLAGS=-I/usr/include/ffmpeg7 ./configure <..>
Den 23.09.2024 00:49, skrev Andrew Randrianasulu:
пн, 23 сент. 2024 г., 01:39 Terje J. Hanssen <[email protected]>:
Den 23.09.2024 00:21, skrev Andrew Randrianasulu:
пн, 23 сент. 2024 г., 01:05 Terje J. Hanssen <[email protected]>:
Den 22.09.2024 23:40, skrev Andrew Randrianasulu:
пн, 23 сент. 2024 г., 00:12 Terje J. Hanssen <[email protected]>:
Den 22.09.2024 15:56, skrev Andrew Randrianasulu:
вс, 22 сент. 2024 г., 13:56 Terje J. Hanssen via Cin <[email protected]>:
After getting the generic built environment for Cingg on openSUSE-Slowroll in place, it's time to continue with the steps to get Cingg built from git using the system FFmpeg and libs.
First a reference to and from the previous thread https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008652.html
...snip
-------------------
Suggestions to modified/additional procedure steps to build Cingg from git using the system FFmpeg and libs continued from the previous thread? https://lists.cinelerra-gg.org/pipermail/cin/2024-September/008655.html
try
./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
you might move just-build cingg+plugins in "bin" directory somewhere away in case you will want to make more tests with it, then run "make clean" configure line as above, make, make install
I'm late due to some other matter today.
# cd /home/cinelerra/cinelerra-5.1/bin Moved cin and plugins to a backup directory
I take a checkpoint here, in case I did something wrong: 4) ./configure wasn't found, so I ran 3) ./autogen.sh first as we did in the previous thread ?
yes.
Output as follows below:
# cd /home/cinelerra/cinelerra-5.1
# make clean for dir in thirdparty libzmpeg3 mpeg2enc mplexlo db guicast cinelerra plugins doc po; do make -C $dir clean; done make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' for f in a52dec djbfft ffmpeg fftw flac giflib ladspa lame libavc1394 libraw1394 libiec61883 libdv libjpeg opus openjpeg libogg libsndfile libtheora libuuid libvorbis mjpegtools openexr openExr ilmBase tiff twolame x264 x265 libvpx lv2 sratom serd sord lilv suil libaom dav1d libwebp ffnvcodec libdpx; do rm -rf $f*; done rm -rf /home/cinelerra/cinelerra-5.1/thirdparty/../thirdparty/build make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' rm -rf x86_64 tags make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mpeg2enc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/mplexlo' rm -rf x86_64 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/mplexlo' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Nothing to be done for 'clean'. make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/db' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast' rm -rf x86_64 make -C xfer clean make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' rm -rf x86_64 xfer*.[Ch] make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast/xfer' make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/guicast' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/cinelerra' rm -rf x86_64 rm -f shuttle_keys.h make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/plugins' rm -rf 1080to480/x86_64 1080to540/x86_64 720to480/x86_64 aging/x86_64 alpha/x86_64 scaleratio/x86_64 audioscope/x86_64 bandslide/x86_64 bandwipe/x86_64 bluebanana/x86_64 blur/x86_64 boxblur/x86_64 brightness/x86_64 burn/x86_64 C41/x86_64 chorus/x86_64 chromakey/x86_64 chromakeyhsv/x86_64 chromakeyavid/x86_64 color3way/x86_64 colorbalance/x86_64 colorspace/x86_64 compressor/x86_64 compressormulti/x86_64 crikey/x86_64 crop/x86_64 crossfade/x86_64 dcoffset/x86_64 decimate/x86_64 deinterlace/x86_64 deinterlace-cv/x86_64 delayaudio/x86_64 delayvideo/x86_64 denoise/x86_64 denoisefft/x86_64 denoiseseltempavg/x86_64 denoisevideo/x86_64 descratch/x86_64 despike/x86_64 diffkey/x86_64 dissolve/x86_64 dot/x86_64 downsample/x86_64 edge/x86_64 echo/x86_64 echocancel/x86_64 fieldframe/x86_64 flanger/x86_64 flash/x86_64 flip/x86_64 foreground/x86_64 framefield/x86_64 freeverb/x86_64 freezeframe/x86_64 gain/x86_64 gamma/x86_64 gradient/x86_64 graphic/x86_64 histeq/x86_64 histogram/x86_64 histogram_bezier/x86_64 holo/x86_64 huesaturation/x86_64 interpolate/x86_64 interpolateaudio/x86_64 interpolatevideo/x86_64 invertaudio/x86_64 invertvideo/x86_64 irissquare/x86_64 ivtc/x86_64 lens/x86_64 level/x86_64 libeffecttv/x86_64 linearblur/x86_64 liveaudio/x86_64 livevideo/x86_64 loopaudio/x86_64 loopvideo/x86_64 mirror/x86_64 motion/x86_64 motion51/x86_64 motion2point/x86_64 motionblur/x86_64 normalize/x86_64 oilpainting/x86_64 overlay/x86_64 overlayaudio/x86_64 parametric/x86_64 perspective/x86_64 photoscale/x86_64 posterize/x86_64 pitch/x86_64 polar/x86_64 radialblur/x86_64 reframe/x86_64 reframert/x86_64 removegaps/x86_64 reroute/x86_64 resample/x86_64 resamplert/x86_64 reverb/x86_64 reverseaudio/x86_64 reversevideo/x86_64 rgb601/x86_64 rgbshift/x86_64 rotate/x86_64 rumbler/x86_64 scale/x86_64 sketcher/x86_64 shapewipe/x86_64 sharpen/x86_64 shiftinterlace/x86_64 slide/x86_64 spectrogram/x86_64 speed_pc/x86_64 spherecam/x86_64 svg/x86_64 swapchannels/x86_64 swapframes/x86_64 swatch/x86_64 synthesizer/x86_64 threshold/x86_64 timeavg/x86_64 timeblur/x86_64 timefront/x86_64 timelapsehelper/x86_64 timestretch/x86_64 timestretchrt/x86_64 titler/x86_64 tracer/x86_64 translate/x86_64 tremolo/x86_64 unsharp/x86_64 videoscope/x86_64 wave/x86_64 whirl/x86_64 wipe/x86_64 yuv/x86_64 yuv411/x86_64 yuvshift/x86_64 zoom/x86_64 zoomblur/x86_64 theme_blond_cv/x86_64 theme_blue_dot/x86_64 theme_bright/x86_64 theme_hulk/x86_64 theme_neophyte/x86_64 theme_pinklady/x86_64 theme_suv/x86_64 theme_unflat/x86_64 theme_cakewalk/x86_64 cdripper/x86_64 theme_blond/x86_64 theme_blue/x86_64 rm -rf /home/cinelerra/cinelerra-5.1/plugins/../bin/plugins /home/cinelerra/cinelerra-5.1/plugins/../bin/ladspa make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/plugins' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/doc' rm -f cinelerra.html arrow.png autokeyframe.png camera.png channel.png crop.png cut.png expandpatch_checked.png eyedrop.png fitautos.png ibeam.png left_justify.png loadmode_cat.png loadmode_nested.png loadmode_newcat.png loadmode_new.png loadmode_newtracks.png loadmode_none.png loadmode_paste.png loadmode_resource.png magnify.png mask.png mutepatch_up.png paste.png projector.png protect.png recordpatch.png record.png rewind.png show_meters.png singleframe.png titlesafe.png toolwindow.png top_justify.png wrench.png make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/doc' make[1]: Entering directory '/home/cinelerra/cinelerra-5.1/po' rm -f de.mo es.mo eu.mo fr.mo it.mo nb.mo pt.mo sl.mo hi.mo hu.mo ko.mo vi.mo zh.mo el.mo ja.mo uk.mo ru.mo make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1/po' rm -rf thirdparty/opencv* rm -rf bin cinelerra/tags ./autogen.sh clean + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in <http://config.h.in> config.sub config.status missing + rm -rf autom4te.cache m4 + '[' clean = clean ']' + exit 0
/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx -bash: ./configure: No such file or directory
3) # ./autogen.sh + '[' -z '' ']' + case "$-" in + __lmod_vx=x + '[' -n x ']' + set +x Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (/usr/share/lmod/lmod/init/bash) Shell debugging restarted + unset __lmod_vx + rm -f global_config configure Makefile Makefile.in + rm -f aclocal.m4 depcomp compile install-sh ltmain.sh + rm -f config.log config.guess config.h config.h.in <http://config.h.in> config.sub config.status missing + rm -rf autom4te.cache m4 + '[' '' = clean ']' + mkdir m4 + autoreconf --install libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'm4'. libtoolize: copying file 'm4/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. libtoolize: copying file 'm4/libtool.m4' libtoolize: copying file 'm4/ltoptions.m4' libtoolize: copying file 'm4/ltsugar.m4' libtoolize: copying file 'm4/ltversion.m4' libtoolize: copying file 'm4/lt~obsolete.m4' configure.ac:10 <http://configure.ac:10>: installing 'm4/compile' configure.ac:10 <http://configure.ac:10>: installing 'm4/config.guess' configure.ac:10 <http://configure.ac:10>: installing 'm4/config.sub' configure.ac:9 <http://configure.ac:9>: installing 'm4/install-sh' configure.ac:9 <http://configure.ac:9>: installing 'm4/missing' ++ uname -o + '[' GNU/Linux = Android ']' + '[' -e /system/bin/app_process ']'
localhost:/home/cinelerra/cinelerra-5.1 #
4) # ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx configure: loading site script /usr/share/site/x86_64-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether sleep supports fractional seconds... yes checking filesystem timestamp resolution... 0.01 ....snip
checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands
localhost:/home/cinelerra/cinelerra-5.1 #
looks good, now try make ? (may be with output redirection so it will be easier to see if any error occured)
# make > make.log 2>&1
Compilation terminated with Error (many 46 | #include "a52.h"), so I put the output log below:
mkdir -p bin bin/applications bin/pixmaps bin/lv2 make -j32 all-recursive make[1]: Entering directory '/home/cinelerra/cinelerra-5.1' Making all in thirdparty make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/thirdparty' make[2]: warning: -j32 forced in submake: resetting jobserver mode. make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/thirdparty' Making all in libbthread-master make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/libbthread-master' make[2]: warning: -j32 forced in submake: resetting jobserver mode. g++ -c -o jpt.o just-pt.cc -I. ar crs jpt.a jpt.o make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/libbthread-master' Making all in libzmpeg3 make[2]: Entering directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[2]: warning: -j32 forced in submake: resetting jobserver mode. cc -c `cat x86_64/c_flags` audio/ac3.C -o x86_64/audio/ac3.o cc -c `cat x86_64/c_flags` audio/dct.C -o x86_64/audio/dct.o cc -c `cat x86_64/c_flags` audio/huffman.C -o x86_64/audio/huffman.o cc -c `cat x86_64/c_flags` audio/layer2.C -o x86_64/audio/layer2.o cc -c `cat x86_64/c_flags` audio/layer3.C -o x86_64/audio/layer3.o cc -c `cat x86_64/c_flags` audio/audio.C -o x86_64/audio/audio.o cc -c `cat x86_64/c_flags` audio/pcm.C -o x86_64/audio/pcm.o cc -c `cat x86_64/c_flags` audio/synthesizers.C -o x86_64/audio/synthesizers.o cc -c `cat x86_64/c_flags` audio/tables.C -o x86_64/audio/tables.o cc -c `cat x86_64/c_flags` libzmpeg3.C -o x86_64/libzmpeg3.o cc -c `cat x86_64/c_flags` atrack.C -o x86_64/atrack.o cc -c `cat x86_64/c_flags` bits.C -o x86_64/bits.o cc -c `cat x86_64/c_flags` css.C -o x86_64/css.o cc -c `cat x86_64/c_flags` demux.C -o x86_64/demux.o cc -c `cat x86_64/c_flags` strack.C -o x86_64/strack.o cc -c `cat x86_64/c_flags` title.C -o x86_64/title.o cc -c `cat x86_64/c_flags` vtrack.C -o x86_64/vtrack.o cc -c `cat x86_64/c_flags` zio.C -o x86_64/zio.o cc -c `cat x86_64/c_flags` dvb.C -o x86_64/dvb.o cc -c `cat x86_64/c_flags` huf.C -o x86_64/huf.o cc -c `cat x86_64/c_flags` xfont.C -o x86_64/xfont.o cc -c `cat x86_64/c_flags` video/getpicture.C -o x86_64/video/getpicture.o cc -c `cat x86_64/c_flags` video/headers.C -o x86_64/video/headers.o cc -c `cat x86_64/c_flags` video/idct.C -o x86_64/video/idct.o cc -c `cat x86_64/c_flags` video/macroblocks.C -o x86_64/video/macroblocks.o cc -c `cat x86_64/c_flags` video/mmxtest.C -o x86_64/video/mmxtest.o cc -c `cat x86_64/c_flags` video/motion.C -o x86_64/video/motion.o cc -c `cat x86_64/c_flags` video/cache.C -o x86_64/video/cache.o cc -c `cat x86_64/c_flags` video/video.C -o x86_64/video/video.o cc -c `cat x86_64/c_flags` video/output.C -o x86_64/video/output.o cc -c `cat x86_64/c_flags` video/reconstruct.C -o x86_64/video/reconstruct.o cc -c `cat x86_64/c_flags` video/seek.C -o x86_64/video/seek.o In file included from audio/layer2.C:7: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ In file included from audio/synthesizers.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. compilation terminated. In file included from zio.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/layer2.o] Error 1 make[2]: *** Waiting for unfinished jobs.... In file included from strack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from dvb.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/synthesizers.o] Error 1 make[2]: *** [Makefile:129: x86_64/strack.o] Error 1 make[2]: *** [Makefile:129: x86_64/zio.o] Error 1 make[2]: *** [Makefile:129: x86_64/dvb.o] Error 1 In file included from bits.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from audio/dct.C:29: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from audio/audio.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from title.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from demux.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/dct.o] Error 1 make[2]: *** [Makefile:129: x86_64/audio/audio.o] Error 1 make[2]: *** [Makefile:129: x86_64/bits.o] Error 1 In file included from audio/layer3.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/layer3.o] Error 1 make[2]: *** [Makefile:129: x86_64/demux.o] Error 1 make[2]: *** [Makefile:129: x86_64/title.o] Error 1 In file included from vtrack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/vtrack.o] Error 1 In file included from audio/ac3.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/ac3.o] Error 1 In file included from css.C:2: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/css.o] Error 1 In file included from audio/pcm.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/getpicture.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/pcm.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/getpicture.o] Error 1 In file included from video/idct.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from libzmpeg3.C:7: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/idct.o] Error 1 make[2]: *** [Makefile:129: x86_64/libzmpeg3.o] Error 1 In file included from audio/tables.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/tables.o] Error 1 In file included from huf.C:3: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/huf.o] Error 1 In file included from audio/huffman.C:1: audio/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/audio/huffman.o] Error 1 In file included from video/mmxtest.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from xfont.C:7: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/mmxtest.o] Error 1 In file included from atrack.C:1: libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/xfont.o] Error 1 make[2]: *** [Makefile:129: x86_64/atrack.o] Error 1 In file included from video/macroblocks.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/macroblocks.o] Error 1 In file included from video/video.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/video.o] Error 1 In file included from video/headers.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/output.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. In file included from video/reconstruct.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/headers.o] Error 1 In file included from video/motion.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/output.o] Error 1 In file included from video/seek.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/reconstruct.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/motion.o] Error 1 make[2]: *** [Makefile:129: x86_64/video/seek.o] Error 1 In file included from video/cache.C:1: video/../libzmpeg3.h:46:10: fatal error: a52.h: No such file or directory 46 | #include "a52.h" | ^~~~~~~ compilation terminated. make[2]: *** [Makefile:129: x86_64/video/cache.o] Error 1 make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/libzmpeg3' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2
my bad! try to install liba52-devel and liba52-devel libtwolame-develand may be twolame-devel too.
Installed liba52-devel and libtwolame-devel, did't find any available mjpegtools-devel (had mjegtools installed), didn't install mjpegtools-debuginfo and -debugsource)
Three make Error 1, One Error 2:
From make.log:
.....snip g++ `cat x86_64/c_flags` -DMSGQUAL=aboutprefs -c aboutprefs.C -o x86_64/aboutprefs.o g++ `cat x86_64/c_flags` -DMSGQUAL=adeviceprefs -c adeviceprefs.C -o x86_64/adeviceprefs.o g++ `cat x86_64/c_flags` -DMSGQUAL=aedit -c aedit.C -o x86_64/aedit.o In file included from formattools.h:32, from file.h:37, from aboutprefs.C:24: ffmpeg.h:48:10: fatal error: libavformat/avformat.h: No such file or directory 48 | #include "libavformat/avformat.h" | ^~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. make[2]: *** [Makefile:597: x86_64/aboutprefs.o] Error 1 make[2]: *** Waiting for unfinished jobs.... In file included from formattools.h:32, from file.h:37, from aedit.C:28: ffmpeg.h:48:10: fatal error: libavformat/avformat.h: No such file or directory 48 | #include "libavformat/avformat.h" | ^~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. make[2]: *** [Makefile:597: x86_64/aedit.o] Error 1 In file included from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcsubwindow.h:26, from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcbar.h:26, from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/guicast.h:27, from adeviceprefs.h:31, from adeviceprefs.C:23: /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcwindowbase.h:222:22: warning: ‘virtual void BC_WindowBase::create_objects()’ was hidden [-Woverloaded-virtual=] 222 | virtual void create_objects() { return; }; | ^~~~~~~~~~~~~~ In file included from /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/guicast.h:62: /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/errorbox.h:35:14: note: by ‘void ErrorBox::create_objects(const char*)’ 35 | void create_objects(const char *text); | ^~~~~~~~~~~~~~ /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcwindowbase.h:222:22: warning: ‘virtual void BC_WindowBase::create_objects()’ was hidden [-Woverloaded-virtual=] 222 | virtual void create_objects() { return; }; | ^~~~~~~~~~~~~~ In file included from preferencesthread.h:30, from appearanceprefs.h:30, from preferences.h:37, from adeviceprefs.C:33: question.h:34:14: note: by ‘void QuestionWindow::create_objects(const char*, int)’ 34 | void create_objects(const char *string, int use_cancel); | ^~~~~~~~~~~~~~ make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2
ah, ffmpeg includes not found ...
does "pkg-config --cflags libavcodec" print anything?
# pkg-config --cflags libavcodec -I/usr/include/ffmpeg
alternatively you can look with "ls" into /usr/include, may be current ffmpeg includes live there under ffmpeg7 directory?
# ls /usr/include/ffmpeg libavcodec libavdevice libavfilter libavformat libavutil libpostproc libswresample libswscale
of course you need ffmpeg(7?)-devel package installed
# zypper se -i ffmpeg-7 Loading repository data... Reading installed packages... S | Name | Summary | Type ---+------------------------------+---------------------------------------------------------------------+-------- i | ffmpeg-7 | Set of libraries for working with various multimedia formats | package i | ffmpeg-7-libavcodec-devel | Development files for FFmpeg's codec library | package i+ | ffmpeg-7-libavdevice-devel | Development files for FFmpeg's device library | package i | ffmpeg-7-libavfilter-devel | Development files for FFmpeg's audio/video filter library | package i | ffmpeg-7-libavformat-devel | Development files for FFmpeg's stream format library | package i | ffmpeg-7-libavutil-devel | Development files for FFmpeg's utility library | package i | ffmpeg-7-libpostproc-devel | Development files for the FFmpeg post-processing library | package i | ffmpeg-7-libswresample-devel | Development files for the FFmpeg software resampling library | package i | ffmpeg-7-libswscale-devel | Development files for FFmpeg's image scaling and colorspace library | package
After you located includes try to re-run ./configure but set CFLAGS variable before it with -I/path_to_ffmpeg_includes directive, like
CFLAGS=-I/usr/include/ffmpeg7 ./configure <..>
This way? # CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
[snip]
ah, ffmpeg includes not found ...
does "pkg-config --cflags libavcodec" print anything?
# pkg-config --cflags libavcodec -I/usr/include/ffmpeg
alternatively you can look with "ls" into /usr/include, may be current ffmpeg includes live there under ffmpeg7 directory?
# ls /usr/include/ffmpeg libavcodec libavdevice libavfilter libavformat libavutil libpostproc libswresample libswscale
of course you need ffmpeg(7?)-devel package installed
# zypper se -i ffmpeg-7 Loading repository data...
Reading installed packages...
S | Name | Summary | Type
---+------------------------------+---------------------------------------------------------------------+-------- i | ffmpeg-7 | Set of libraries for working with various multimedia formats | package i | ffmpeg-7-libavcodec-devel | Development files for FFmpeg's codec library | package i+ | ffmpeg-7-libavdevice-devel | Development files for FFmpeg's device library | package i | ffmpeg-7-libavfilter-devel | Development files for FFmpeg's audio/video filter library | package i | ffmpeg-7-libavformat-devel | Development files for FFmpeg's stream format library | package i | ffmpeg-7-libavutil-devel | Development files for FFmpeg's utility library | package i | ffmpeg-7-libpostproc-devel | Development files for the FFmpeg post-processing library | package i | ffmpeg-7-libswresample-devel | Development files for the FFmpeg software resampling library | package i | ffmpeg-7-libswscale-devel | Development files for FFmpeg's image scaling and colorspace library | package
After you located includes try to re-run ./configure but set CFLAGS variable before it with -I/path_to_ffmpeg_includes directive, like
CFLAGS=-I/usr/include/ffmpeg7 ./configure <..>
This way?
# CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
I think yes.
Den 23.09.2024 01:20, skrev Andrew Randrianasulu:
[snip]
ah, ffmpeg includes not found ...
does "pkg-config --cflags libavcodec" print anything?
# pkg-config --cflags libavcodec -I/usr/include/ffmpeg
alternatively you can look with "ls" into /usr/include, may be current ffmpeg includes live there under ffmpeg7 directory?
# ls /usr/include/ffmpeg libavcodec libavdevice libavfilter libavformat libavutil libpostproc libswresample libswscale
of course you need ffmpeg(7?)-devel package installed
# zypper se -i ffmpeg-7 Loading repository data...
Reading installed packages...
S | Name | Summary | Type ---+------------------------------+---------------------------------------------------------------------+-------- i | ffmpeg-7 | Set of libraries for working with various multimedia formats | package i | ffmpeg-7-libavcodec-devel | Development files for FFmpeg's codec library | package i+ | ffmpeg-7-libavdevice-devel | Development files for FFmpeg's device library | package i | ffmpeg-7-libavfilter-devel | Development files for FFmpeg's audio/video filter library | package i | ffmpeg-7-libavformat-devel | Development files for FFmpeg's stream format library | package i | ffmpeg-7-libavutil-devel | Development files for FFmpeg's utility library | package i | ffmpeg-7-libpostproc-devel | Development files for the FFmpeg post-processing library | package i | ffmpeg-7-libswresample-devel | Development files for the FFmpeg software resampling library | package i | ffmpeg-7-libswscale-devel | Development files for FFmpeg's image scaling and colorspace library | package
After you located includes try to re-run ./configure but set CFLAGS variable before it with -I/path_to_ffmpeg_includes directive, like
CFLAGS=-I/usr/include/ffmpeg7 ./configure <..>
This way?
# CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
I think yes.
/home/cinelerra/cinelerra-5.1# 4) # CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx > configure.log 2>&1 .......snip checking for suil_instance_new in -lsuil-0... yes checking for suil/suil.h... yes checking suil headers... yes checking for /usr/local/cuda/include/cuda.h... no checking cuda sdk... no checking for dlopen in -ldl... yes checking for numa_alloc in -lnuma... yes checking for openexr available... yes Reason Package ------ ------- disabled encore disabled audiofile disabled esound disabled libsvtav1 shared -ltheoraenc shared -ltheoradec shared -logg shared -lvorbis shared -lvorbisfile shared -logg shared -lImath shared -lIlmThread shared -lIex shared -lpthread shared -la52 shared -lfftw3 shared -lFLAC shared -lgif shared -lavc1394 shared -lrom1394 shared -lraw1394 shared -liec61883 shared -ldv shared -ljpeg shared -logg shared -lsndfile shared -ltheora shared -luuid shared -lvorbisenc shared -lvorbisfile shared -ltiff shared -ltwolame shared -lx264 shared -lx265 shared -lopus shared -llilv-0 shared -lsratom-0 shared -lserd-0 shared -lsord-0 shared -lsuil-0 system -lX11 system -lXext system -lXinerama system -lXfixes system -lbz2 system -lfontconfig system -lfreetype system -llzma system -lpng system -lpthread system -lz system -ljbig system -lvdpau system -lva system -lva-x11 system -lva-drm system -lGL system -lGLU system -lXv system -lXft system -lasound system -lpulse-simple system -lpulse system -lusb-1.0 system -ldl system -lnuma using: with-gl using: with-xft using: with-xxf86vm using: with-oss using: with-alsa using: with-firewire using: with-ogg using: with-dv using: with-dvb using: with-ladspa using: with-video4linux2 using: without-esound using: with-pulse using: with-pactl using: with-openexr using: with-lv2 using: without-commercial using: with-giflib using: with-libzmpeg using: without-libdpx using: with-shuttle using: with-shuttle_usb using: with-xv using: with-vaapi using: with-vdpau using: without-cuda using: with-nv using: with-wintv using: with-x10tv using: with-jobs = 32 using: exec-name = cin using: with-cinlib = $$CIN_PATH using: with-cindat = $$CIN_PATH using: with-config-dir = $$HOME/.bcast5 using: with-nested-dir = $$HOME/Videos using: with-snap-dir = $$HOME/Pictures using: with-browser = firefox using: with-plugin-dir = $$CIN_LIB/plugins using: with-ladspa-dir = $$CIN_LIB/ladspa using: with-opencv = no using: with-git-ffmpeg = no using: with-noelision = auto using: with-booby = no using: with-clang = no using: thirdparty build = no using: single-user = yes using: static-build = no using: ladspa-build = yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands -------------------- 5) # make > make.log 2>&1 .......snip /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcwindowbase.h:222:22: warning: ‘virtual void BC_WindowBase::create_objects()’ was hidden [-Woverloaded-virtual=] 222 | virtual void create_objects() { return; }; | ^~~~~~~~~~~~~~ In file included from preferencesthread.h:30, from appearanceprefs.h:30, from preferences.h:37, from convert.C:48: question.h:34:14: note: by ‘void QuestionWindow::create_objects(const char*, int)’ 34 | void create_objects(const char *string, int use_cancel); | ^~~~~~~~~~~~~~ make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2 Andrew, I attach complete config.log and make.log by email
пн, 23 сент. 2024 г., 12:02 Terje J. Hanssen <[email protected]>:
Den 23.09.2024 01:20, skrev Andrew Randrianasulu:
[snip]
ah, ffmpeg includes not found ...
does "pkg-config --cflags libavcodec" print anything?
# pkg-config --cflags libavcodec -I/usr/include/ffmpeg
alternatively you can look with "ls" into /usr/include, may be current ffmpeg includes live there under ffmpeg7 directory?
# ls /usr/include/ffmpeg libavcodec libavdevice libavfilter libavformat libavutil libpostproc libswresample libswscale
of course you need ffmpeg(7?)-devel package installed
# zypper se -i ffmpeg-7 Loading repository data...
Reading installed packages...
S | Name | Summary | Type
---+------------------------------+---------------------------------------------------------------------+-------- i | ffmpeg-7 | Set of libraries for working with various multimedia formats | package i | ffmpeg-7-libavcodec-devel | Development files for FFmpeg's codec library | package i+ | ffmpeg-7-libavdevice-devel | Development files for FFmpeg's device library | package i | ffmpeg-7-libavfilter-devel | Development files for FFmpeg's audio/video filter library | package i | ffmpeg-7-libavformat-devel | Development files for FFmpeg's stream format library | package i | ffmpeg-7-libavutil-devel | Development files for FFmpeg's utility library | package i | ffmpeg-7-libpostproc-devel | Development files for the FFmpeg post-processing library | package i | ffmpeg-7-libswresample-devel | Development files for the FFmpeg software resampling library | package i | ffmpeg-7-libswscale-devel | Development files for FFmpeg's image scaling and colorspace library | package
After you located includes try to re-run ./configure but set CFLAGS variable before it with -I/path_to_ffmpeg_includes directive, like
CFLAGS=-I/usr/include/ffmpeg7 ./configure <..>
This way?
# CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
I think yes.
/home/cinelerra/cinelerra-5.1#
4) # CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx > configure.log 2>&1
.......snip checking for suil_instance_new in -lsuil-0... yes checking for suil/suil.h... yes checking suil headers... yes checking for /usr/local/cuda/include/cuda.h... no checking cuda sdk... no checking for dlopen in -ldl... yes checking for numa_alloc in -lnuma... yes checking for openexr available... yes Reason Package ------ ------- disabled encore disabled audiofile disabled esound disabled libsvtav1 shared -ltheoraenc shared -ltheoradec shared -logg shared -lvorbis shared -lvorbisfile shared -logg shared -lImath shared -lIlmThread shared -lIex shared -lpthread shared -la52 shared -lfftw3 shared -lFLAC shared -lgif shared -lavc1394 shared -lrom1394 shared -lraw1394 shared -liec61883 shared -ldv shared -ljpeg shared -logg shared -lsndfile shared -ltheora shared -luuid shared -lvorbisenc shared -lvorbisfile shared -ltiff shared -ltwolame shared -lx264 shared -lx265 shared -lopus shared -llilv-0 shared -lsratom-0 shared -lserd-0 shared -lsord-0 shared -lsuil-0 system -lX11 system -lXext system -lXinerama system -lXfixes system -lbz2 system -lfontconfig system -lfreetype system -llzma system -lpng system -lpthread system -lz system -ljbig system -lvdpau system -lva system -lva-x11 system -lva-drm system -lGL system -lGLU system -lXv system -lXft system -lasound system -lpulse-simple system -lpulse system -lusb-1.0 system -ldl system -lnuma
using: with-gl using: with-xft using: with-xxf86vm using: with-oss using: with-alsa using: with-firewire using: with-ogg using: with-dv using: with-dvb using: with-ladspa using: with-video4linux2 using: without-esound using: with-pulse using: with-pactl using: with-openexr using: with-lv2 using: without-commercial using: with-giflib using: with-libzmpeg using: without-libdpx using: with-shuttle using: with-shuttle_usb using: with-xv using: with-vaapi using: with-vdpau using: without-cuda using: with-nv using: with-wintv using: with-x10tv using: with-jobs = 32 using: exec-name = cin using: with-cinlib = $$CIN_PATH using: with-cindat = $$CIN_PATH using: with-config-dir = $$HOME/.bcast5 using: with-nested-dir = $$HOME/Videos using: with-snap-dir = $$HOME/Pictures using: with-browser = firefox using: with-plugin-dir = $$CIN_LIB/plugins using: with-ladspa-dir = $$CIN_LIB/ladspa using: with-opencv = no using: with-git-ffmpeg = no using: with-noelision = auto using: with-booby = no using: with-clang = no
using: thirdparty build = no using: single-user = yes using: static-build = no using: ladspa-build = yes
checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands
--------------------
5) # make > make.log 2>&1
.......snip /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcwindowbase.h:222:22: warning: ‘virtual void BC_WindowBase::create_objects()’ was hidden [-Woverloaded-virtual=] 222 | virtual void create_objects() { return; }; | ^~~~~~~~~~~~~~ In file included from preferencesthread.h:30, from appearanceprefs.h:30, from preferences.h:37, from convert.C:48: question.h:34:14: note: by ‘void QuestionWindow::create_objects(const char*, int)’ 34 | void create_objects(const char *string, int use_cancel); | ^~~~~~~~~~~~~~ make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2
Andrew, I attach complete config.log and make.log by email
from log: fatal error: lame/lame.h: No such file or directory installing something like lame-devel, or liblame-devel should fix that.
Den 23.09.2024 13:47, skrev Andrew Randrianasulu:
пн, 23 сент. 2024 г., 12:02 Terje J. Hanssen <[email protected]>:
Den 23.09.2024 01:20, skrev Andrew Randrianasulu:
[snip]
ah, ffmpeg includes not found ...
does "pkg-config --cflags libavcodec" print anything?
# pkg-config --cflags libavcodec -I/usr/include/ffmpeg
alternatively you can look with "ls" into /usr/include, may be current ffmpeg includes live there under ffmpeg7 directory?
# ls /usr/include/ffmpeg libavcodec libavdevice libavfilter libavformat libavutil libpostproc libswresample libswscale
of course you need ffmpeg(7?)-devel package installed
# zypper se -i ffmpeg-7 Loading repository data...
Reading installed packages...
S | Name | Summary | Type ---+------------------------------+---------------------------------------------------------------------+-------- i | ffmpeg-7 | Set of libraries for working with various multimedia formats | package i | ffmpeg-7-libavcodec-devel | Development files for FFmpeg's codec library | package i+ | ffmpeg-7-libavdevice-devel | Development files for FFmpeg's device library | package i | ffmpeg-7-libavfilter-devel | Development files for FFmpeg's audio/video filter library | package i | ffmpeg-7-libavformat-devel | Development files for FFmpeg's stream format library | package i | ffmpeg-7-libavutil-devel | Development files for FFmpeg's utility library | package i | ffmpeg-7-libpostproc-devel | Development files for the FFmpeg post-processing library | package i | ffmpeg-7-libswresample-devel | Development files for the FFmpeg software resampling library | package i | ffmpeg-7-libswscale-devel | Development files for FFmpeg's image scaling and colorspace library | package
After you located includes try to re-run ./configure but set CFLAGS variable before it with -I/path_to_ffmpeg_includes directive, like
CFLAGS=-I/usr/include/ffmpeg7 ./configure <..>
This way?
# CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
I think yes.
/home/cinelerra/cinelerra-5.1#
4) # CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx > configure.log 2>&1
.......snip checking for suil_instance_new in -lsuil-0... yes checking for suil/suil.h... yes checking suil headers... yes checking for /usr/local/cuda/include/cuda.h... no checking cuda sdk... no checking for dlopen in -ldl... yes checking for numa_alloc in -lnuma... yes checking for openexr available... yes Reason Package ------ ------- disabled encore disabled audiofile disabled esound disabled libsvtav1 shared -ltheoraenc shared -ltheoradec shared -logg shared -lvorbis shared -lvorbisfile shared -logg shared -lImath shared -lIlmThread shared -lIex shared -lpthread shared -la52 shared -lfftw3 shared -lFLAC shared -lgif shared -lavc1394 shared -lrom1394 shared -lraw1394 shared -liec61883 shared -ldv shared -ljpeg shared -logg shared -lsndfile shared -ltheora shared -luuid shared -lvorbisenc shared -lvorbisfile shared -ltiff shared -ltwolame shared -lx264 shared -lx265 shared -lopus shared -llilv-0 shared -lsratom-0 shared -lserd-0 shared -lsord-0 shared -lsuil-0 system -lX11 system -lXext system -lXinerama system -lXfixes system -lbz2 system -lfontconfig system -lfreetype system -llzma system -lpng system -lpthread system -lz system -ljbig system -lvdpau system -lva system -lva-x11 system -lva-drm system -lGL system -lGLU system -lXv system -lXft system -lasound system -lpulse-simple system -lpulse system -lusb-1.0 system -ldl system -lnuma
using: with-gl using: with-xft using: with-xxf86vm using: with-oss using: with-alsa using: with-firewire using: with-ogg using: with-dv using: with-dvb using: with-ladspa using: with-video4linux2 using: without-esound using: with-pulse using: with-pactl using: with-openexr using: with-lv2 using: without-commercial using: with-giflib using: with-libzmpeg using: without-libdpx using: with-shuttle using: with-shuttle_usb using: with-xv using: with-vaapi using: with-vdpau using: without-cuda using: with-nv using: with-wintv using: with-x10tv using: with-jobs = 32 using: exec-name = cin using: with-cinlib = $$CIN_PATH using: with-cindat = $$CIN_PATH using: with-config-dir = $$HOME/.bcast5 using: with-nested-dir = $$HOME/Videos using: with-snap-dir = $$HOME/Pictures using: with-browser = firefox using: with-plugin-dir = $$CIN_LIB/plugins using: with-ladspa-dir = $$CIN_LIB/ladspa using: with-opencv = no using: with-git-ffmpeg = no using: with-noelision = auto using: with-booby = no using: with-clang = no
using: thirdparty build = no using: single-user = yes using: static-build = no using: ladspa-build = yes
checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands
--------------------
5) # make > make.log 2>&1
.......snip /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcwindowbase.h:222:22: warning: ‘virtual void BC_WindowBase::create_objects()’ was hidden [-Woverloaded-virtual=] 222 | virtual void create_objects() { return; }; | ^~~~~~~~~~~~~~ In file included from preferencesthread.h:30, from appearanceprefs.h:30, from preferences.h:37, from convert.C:48: question.h:34:14: note: by ‘void QuestionWindow::create_objects(const char*, int)’ 34 | void create_objects(const char *string, int use_cancel); | ^~~~~~~~~~~~~~ make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2
Andrew, I attach complete config.log and make.log by email
from log:
fatal error: lame/lame.h: No such file or directory
installing something like lame-devel, or liblame-devel should fix that.
Yup, add-installed # zypper in libmp3lame-devel and have now # zypper se -i lame Loading repository data... Reading installed packages... S | Name | Summary | Type ---+-----------------------+-------------------------------------------------------+-------- i+ | libmp3lame-devel | Development files for the LAME MP3 encoder | package i | libmp3lame0 | The LAME MP3 encoder library | package i | libmp3lame0-x86-64-v3 | The LAME MP3 encoder library | package i+ | libtwolame-devel | Include Files and Libraries mandatory for Development | package i | libtwolame0 | Shared libraries for TwoLame # cd /home/cinelerra/cinelerra-5.1 # CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx > configure.log 2>&1 # make > make.log 2>&1 # make install > make_install.log 2>&1 Looks better, all ran through without stop errors, attach config.log, make.log and make_install.log by email. ----------- Cinelerra could be started, errors first time like PluginFFilter::new_ffilter(overlay_qsv) err: Input/output error Started and test loaded three video file types seemingly ok # ./bin/cin Cinelerra Infinity - built: Sep 23 2024 10:31:07 git://git.cinelerra-gg.org/goodguy/cinelerra.git (c) 2006-2019 Heroine Virtual Ltd. by Adam Williams 2007-2020 mods for Cinelerra-GG by W.P.Morrow aka goodguy 2003-2017 mods for Cinelerra-CV by CinelerraCV team 2015-2024 mods for Cinelerra-GG by Cinelerra-GG team Libav version: Lavc61.3.100 Cinelerra is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. There is absolutely no warranty for Cinelerra. build plugin index for: /home/cinelerra/cinelerra-5.1/bin/plugins PluginFFilter::new_ffilter(lv2) err: Operation not permitted [sofalizer_205 @ 0x3f0f2940] Valid SOFA filename must be set. PluginFFilter::new_ffilter(sofalizer) err: Invalid argument PluginFFilter::new_ffilter(blend_vulkan) err: Input/output error PluginFFilter::new_ffilter(libplacebo) err: Operation not permitted PluginFFilter::new_ffilter(overlay_qsv) err: Input/output error PluginFFilter::new_ffilter(overlay_vulkan) err: Input/output error PluginFFilter::new_ffilter(xfade_vulkan) err: Input/output error PluginFFilter::new_ffilter(hstack_qsv) err: Operation not permitted PluginFFilter::new_ffilter(vstack_qsv) err: Operation not permitted PluginFFilter::new_ffilter(xstack_qsv) err: Operation not permitted build lv2 index for: $CIN_PATH/lv2 build ladspa plugin index for: /home/cinelerra/cinelerra-5.1/bin/ladspa Total excess of backups: -50 Session time: 0:02:06 Cpu time: user: 0:00:05.599 sys: 0:00:00.987 ---------- # ./bin/cin Cinelerra Infinity - built: Sep 23 2024 10:31:07 git://git.cinelerra-gg.org/goodguy/cinelerra.git (c) 2006-2019 Heroine Virtual Ltd. by Adam Williams 2007-2020 mods for Cinelerra-GG by W.P.Morrow aka goodguy 2003-2017 mods for Cinelerra-CV by CinelerraCV team 2015-2024 mods for Cinelerra-GG by Cinelerra-GG team Libav version: Lavc61.3.100 Cinelerra is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. There is absolutely no warranty for Cinelerra. FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv Total excess of backups: -50 Session time: 0:00:41 Cpu time: user: 0:00:08.443 sys: 0:00:01.101 ------ # ./bin/cin Cinelerra Infinity - built: Sep 23 2024 10:31:07 git://git.cinelerra-gg.org/goodguy/cinelerra.git (c) 2006-2019 Heroine Virtual Ltd. by Adam Williams 2007-2020 mods for Cinelerra-GG by W.P.Morrow aka goodguy 2003-2017 mods for Cinelerra-CV by CinelerraCV team 2015-2024 mods for Cinelerra-GG by Cinelerra-GG team Libav version: Lavc61.3.100 Cinelerra is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. There is absolutely no warranty for Cinelerra. Total excess of backups: -50 Session time: 0:00:33 Cpu time: user: 0:00:03.581 sys: 0:00:00.906
Den 23.09.2024 16:54, skrev Terje J. Hanssen:
Den 23.09.2024 13:47, skrev Andrew Randrianasulu:
пн, 23 сент. 2024 г., 12:02 Terje J. Hanssen <[email protected]>:
Den 23.09.2024 01:20, skrev Andrew Randrianasulu:
[snip]
ah, ffmpeg includes not found ...
does "pkg-config --cflags libavcodec" print anything?
# pkg-config --cflags libavcodec -I/usr/include/ffmpeg
alternatively you can look with "ls" into /usr/include, may be current ffmpeg includes live there under ffmpeg7 directory?
# ls /usr/include/ffmpeg libavcodec libavdevice libavfilter libavformat libavutil libpostproc libswresample libswscale
of course you need ffmpeg(7?)-devel package installed
# zypper se -i ffmpeg-7 Loading repository data...
Reading installed packages...
S | Name | Summary | Type ---+------------------------------+---------------------------------------------------------------------+-------- i | ffmpeg-7 | Set of libraries for working with various multimedia formats | package i | ffmpeg-7-libavcodec-devel | Development files for FFmpeg's codec library | package i+ | ffmpeg-7-libavdevice-devel | Development files for FFmpeg's device library | package i | ffmpeg-7-libavfilter-devel | Development files for FFmpeg's audio/video filter library | package i | ffmpeg-7-libavformat-devel | Development files for FFmpeg's stream format library | package i | ffmpeg-7-libavutil-devel | Development files for FFmpeg's utility library | package i | ffmpeg-7-libpostproc-devel | Development files for the FFmpeg post-processing library | package i | ffmpeg-7-libswresample-devel | Development files for the FFmpeg software resampling library | package i | ffmpeg-7-libswscale-devel | Development files for FFmpeg's image scaling and colorspace library | package
After you located includes try to re-run ./configure but set CFLAGS variable before it with -I/path_to_ffmpeg_includes directive, like
CFLAGS=-I/usr/include/ffmpeg7 ./configure <..>
This way?
# CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
I think yes.
/home/cinelerra/cinelerra-5.1#
4) # CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx > configure.log 2>&1
.......snip checking for suil_instance_new in -lsuil-0... yes checking for suil/suil.h... yes checking suil headers... yes checking for /usr/local/cuda/include/cuda.h... no checking cuda sdk... no checking for dlopen in -ldl... yes checking for numa_alloc in -lnuma... yes checking for openexr available... yes Reason Package ------ ------- disabled encore disabled audiofile disabled esound disabled libsvtav1 shared -ltheoraenc shared -ltheoradec shared -logg shared -lvorbis shared -lvorbisfile shared -logg shared -lImath shared -lIlmThread shared -lIex shared -lpthread shared -la52 shared -lfftw3 shared -lFLAC shared -lgif shared -lavc1394 shared -lrom1394 shared -lraw1394 shared -liec61883 shared -ldv shared -ljpeg shared -logg shared -lsndfile shared -ltheora shared -luuid shared -lvorbisenc shared -lvorbisfile shared -ltiff shared -ltwolame shared -lx264 shared -lx265 shared -lopus shared -llilv-0 shared -lsratom-0 shared -lserd-0 shared -lsord-0 shared -lsuil-0 system -lX11 system -lXext system -lXinerama system -lXfixes system -lbz2 system -lfontconfig system -lfreetype system -llzma system -lpng system -lpthread system -lz system -ljbig system -lvdpau system -lva system -lva-x11 system -lva-drm system -lGL system -lGLU system -lXv system -lXft system -lasound system -lpulse-simple system -lpulse system -lusb-1.0 system -ldl system -lnuma
using: with-gl using: with-xft using: with-xxf86vm using: with-oss using: with-alsa using: with-firewire using: with-ogg using: with-dv using: with-dvb using: with-ladspa using: with-video4linux2 using: without-esound using: with-pulse using: with-pactl using: with-openexr using: with-lv2 using: without-commercial using: with-giflib using: with-libzmpeg using: without-libdpx using: with-shuttle using: with-shuttle_usb using: with-xv using: with-vaapi using: with-vdpau using: without-cuda using: with-nv using: with-wintv using: with-x10tv using: with-jobs = 32 using: exec-name = cin using: with-cinlib = $$CIN_PATH using: with-cindat = $$CIN_PATH using: with-config-dir = $$HOME/.bcast5 using: with-nested-dir = $$HOME/Videos using: with-snap-dir = $$HOME/Pictures using: with-browser = firefox using: with-plugin-dir = $$CIN_LIB/plugins using: with-ladspa-dir = $$CIN_LIB/ladspa using: with-opencv = no using: with-git-ffmpeg = no using: with-noelision = auto using: with-booby = no using: with-clang = no
using: thirdparty build = no using: single-user = yes using: static-build = no using: ladspa-build = yes
checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands config.status: executing libtool commands
--------------------
5) # make > make.log 2>&1
.......snip /home/cinelerra/cinelerra-5.1/cinelerra/../guicast/bcwindowbase.h:222:22: warning: ‘virtual void BC_WindowBase::create_objects()’ was hidden [-Woverloaded-virtual=] 222 | virtual void create_objects() { return; }; | ^~~~~~~~~~~~~~ In file included from preferencesthread.h:30, from appearanceprefs.h:30, from preferences.h:37, from convert.C:48: question.h:34:14: note: by ‘void QuestionWindow::create_objects(const char*, int)’ 34 | void create_objects(const char *string, int use_cancel); | ^~~~~~~~~~~~~~ make[2]: Leaving directory '/home/cinelerra/cinelerra-5.1/cinelerra' make[1]: *** [Makefile:592: all-recursive] Error 1 make[1]: Leaving directory '/home/cinelerra/cinelerra-5.1' make: *** [Makefile:539: all] Error 2
Andrew, I attach complete config.log and make.log by email
from log:
fatal error: lame/lame.h: No such file or directory
installing something like lame-devel, or liblame-devel should fix that.
Yup, add-installed
# zypper in libmp3lame-devel
and have now
# zypper se -i lame Loading repository data... Reading installed packages...
S | Name | Summary | Type ---+-----------------------+-------------------------------------------------------+-------- i+ | libmp3lame-devel | Development files for the LAME MP3 encoder | package i | libmp3lame0 | The LAME MP3 encoder library | package i | libmp3lame0-x86-64-v3 | The LAME MP3 encoder library | package i+ | libtwolame-devel | Include Files and Libraries mandatory for Development | package i | libtwolame0 | Shared libraries for TwoLame
# cd /home/cinelerra/cinelerra-5.1
# CFLAGS=-I/usr/include/ffmpeg ./configure --with-single-user --disable-static-build --without-thirdparty --without-libdpx > configure.log 2>&1
# make > make.log 2>&1
# make install > make_install.log 2>&1
Looks better, all ran through without stop errors, attach config.log, make.log and make_install.log by email.
-----------
Cinelerra could be started, errors first time like PluginFFilter::new_ffilter(overlay_qsv) err: Input/output error
Started and test loaded three video file types seemingly ok
# ./bin/cin Cinelerra Infinity - built: Sep 23 2024 10:31:07 git://git.cinelerra-gg.org/goodguy/cinelerra.git (c) 2006-2019 Heroine Virtual Ltd. by Adam Williams 2007-2020 mods for Cinelerra-GG by W.P.Morrow aka goodguy 2003-2017 mods for Cinelerra-CV by CinelerraCV team 2015-2024 mods for Cinelerra-GG by Cinelerra-GG team
Libav version: Lavc61.3.100
Cinelerra is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. There is absolutely no warranty for Cinelerra.
build plugin index for: /home/cinelerra/cinelerra-5.1/bin/plugins PluginFFilter::new_ffilter(lv2) err: Operation not permitted [sofalizer_205 @ 0x3f0f2940] Valid SOFA filename must be set. PluginFFilter::new_ffilter(sofalizer) err: Invalid argument PluginFFilter::new_ffilter(blend_vulkan) err: Input/output error PluginFFilter::new_ffilter(libplacebo) err: Operation not permitted PluginFFilter::new_ffilter(overlay_qsv) err: Input/output error PluginFFilter::new_ffilter(overlay_vulkan) err: Input/output error PluginFFilter::new_ffilter(xfade_vulkan) err: Input/output error PluginFFilter::new_ffilter(hstack_qsv) err: Operation not permitted PluginFFilter::new_ffilter(vstack_qsv) err: Operation not permitted PluginFFilter::new_ffilter(xstack_qsv) err: Operation not permitted build lv2 index for: $CIN_PATH/lv2 build ladspa plugin index for: /home/cinelerra/cinelerra-5.1/bin/ladspa Total excess of backups: -50 Session time: 0:02:06 Cpu time: user: 0:00:05.599 sys: 0:00:00.987
----------
# ./bin/cin Cinelerra Infinity - built: Sep 23 2024 10:31:07 git://git.cinelerra-gg.org/goodguy/cinelerra.git (c) 2006-2019 Heroine Virtual Ltd. by Adam Williams 2007-2020 mods for Cinelerra-GG by W.P.Morrow aka goodguy 2003-2017 mods for Cinelerra-CV by CinelerraCV team 2015-2024 mods for Cinelerra-GG by Cinelerra-GG team
Libav version: Lavc61.3.100
Cinelerra is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. There is absolutely no warranty for Cinelerra.
FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv Total excess of backups: -50 Session time: 0:00:41 Cpu time: user: 0:00:08.443 sys: 0:00:01.101
------
# ./bin/cin Cinelerra Infinity - built: Sep 23 2024 10:31:07 git://git.cinelerra-gg.org/goodguy/cinelerra.git (c) 2006-2019 Heroine Virtual Ltd. by Adam Williams 2007-2020 mods for Cinelerra-GG by W.P.Morrow aka goodguy 2003-2017 mods for Cinelerra-CV by CinelerraCV team 2015-2024 mods for Cinelerra-GG by Cinelerra-GG team
Libav version: Lavc61.3.100
Cinelerra is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. There is absolutely no warranty for Cinelerra.
Total excess of backups: -50 Session time: 0:00:33 Cpu time: user: 0:00:03.581 sys: 0:00:00.906
Audio didn't work during playback of a loaded DV.dv file: Connection failure: Connection refused pa_context_connect() failed: Connection refused AudioALSA::set_params: hw_params failed AudioALSA::open_output: set_params failed. Aborting playback. -------- Audio worked OK during playback of a loaded HDV.m2t file: Connection failure: Connection refused pa_context_connect() failed: Connection refused -------- and Audio worked OK during playback of a loaded CFHD.mkv file: FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv Connection failure: Connection refused pa_context_connect() failed: Connection refused FFMPEG::open_decoder: some stream times estimated: /Videoklipp/AV1/cfhd01_07.mkv Connection failure: Connection refused pa_context_connect() failed: Connection refused Connection failure: Connection refused pa_context_connect() failed: Connection refused
Den 23.09.2024 18:35, skrev Terje J. Hanssen:
Audio didn't work during playback of a loaded DV.dv file:
Connection failure: Connection refused pa_context_connect() failed: Connection refused AudioALSA::set_params: hw_params failed AudioALSA::open_output: set_params failed. Aborting playback.
--------
I'll correct myself. pcm audio did really work also on DV.dv playback The sound was fairly lowe escpecially where I listened ;)
Terje, to fix the below plugin errors, you will have to modify cinelerra-5.1/ffmpeg/plugin.opts for your specific ffmpeg version since it will be different from everyone else when using your O/S version. Since you have successfully completed the build, you can just modify cinelerra-5.1/bin/ffmpeg/plugin.opts instead. This file is a blacklist and it is self-explanatory when you look at the last few lines of the file. Just add # lines for each of the error plugins. For example, add: #lv2 and #sofalizer, etc. You can just ignore these errors, BUT sooner or later you will get a plugin error that will prevent CinGG from executing. build plugin index for: /home/cinelerra/cinelerra-5.1/bin/plugins
PluginFFilter::new_ffilter(lv2) err: Operation not permitted [sofalizer_205 @ 0x3f0f2940] Valid SOFA filename must be set. PluginFFilter::new_ffilter(sofalizer) err: Invalid argument PluginFFilter::new_ffilter(blend_vulkan) err: Input/output error PluginFFilter::new_ffilter(libplacebo) err: Operation not permitted PluginFFilter::new_ffilter(overlay_qsv) err: Input/output error PluginFFilter::new_ffilter(overlay_vulkan) err: Input/output error PluginFFilter::new_ffilter(xfade_vulkan) err: Input/output error PluginFFilter::new_ffilter(hstack_qsv) err: Operation not permitted PluginFFilter::new_ffilter(vstack_qsv) err: Operation not permitted PluginFFilter::new_ffilter(xstack_qsv) err: Operation not permitted
Den 23.09.2024 20:45, skrev Phyllis Smith:
Terje, to fix the below plugin errors, you will have to modify cinelerra-5.1/ffmpeg/plugin.opts for your specific ffmpeg version since it will be different from everyone else when using your O/S version. Since you have successfully completed the build, you can just modify cinelerra-5.1/bin/ffmpeg/plugin.opts instead. This file is a blacklist and it is self-explanatory when you look at the last few lines of the file. Just add # lines for each of the error plugins. For example, add: #lv2 and #sofalizer, etc.
I am just wondering if they are automatic "blacklisted", because the errors appear only when a root or normal user startup cingg for the first time(?) Else, I have started to test "hevc_vaapi" rendering that works, but which seems limited to hevc Main (yuv420p) 8-bit color-depth output. Is it possible from within Cingg to render with higher pixel formats and also other Hwaccels methods available in system FFmpeg, i.e QSV ? Or is this dependent of preset extensions in Cingg?
You can just ignore these errors, BUT sooner or later you will get a plugin error that will prevent CinGG from executing.
build plugin index for: /home/cinelerra/cinelerra-5.1/bin/plugins PluginFFilter::new_ffilter(lv2) err: Operation not permitted [sofalizer_205 @ 0x3f0f2940] Valid SOFA filename must be set. PluginFFilter::new_ffilter(sofalizer) err: Invalid argument PluginFFilter::new_ffilter(blend_vulkan) err: Input/output error PluginFFilter::new_ffilter(libplacebo) err: Operation not permitted PluginFFilter::new_ffilter(overlay_qsv) err: Input/output error PluginFFilter::new_ffilter(overlay_vulkan) err: Input/output error PluginFFilter::new_ffilter(xfade_vulkan) err: Input/output error PluginFFilter::new_ffilter(hstack_qsv) err: Operation not permitted PluginFFilter::new_ffilter(vstack_qsv) err: Operation not permitted PluginFFilter::new_ffilter(xstack_qsv) err: Operation not permitted
They are not really automatically blacklisted in the plugin.opts file. However, in $HOME/.bcast5, there is a file called Cinelerra_plugins that contains all of the working plugins from the first time you execute CinGG after a new build. So every time you re-compile or if you delete $HOME/.bcast5, or use CinGG as a different user you will get the error messages on that first execution. Again, it is not a problem UNTIL you get a new ffmpeg that creates an irrecoverable error and then CinGG will not even start. On Mon, Sep 23, 2024 at 4:32 PM Terje J. Hanssen <[email protected]> wrote:
Den 23.09.2024 20:45, skrev Phyllis Smith:
Terje, to fix the below plugin errors, you will have to modify cinelerra-5.1/ffmpeg/plugin.opts for your specific ffmpeg version since it will be different from everyone else when using your O/S version. Since you have successfully completed the build, you can just modify cinelerra-5.1/bin/ffmpeg/plugin.opts instead. This file is a blacklist and it is self-explanatory when you look at the last few lines of the file. Just add # lines for each of the error plugins. For example, add: #lv2 and #sofalizer, etc.
I am just wondering if they are automatic "blacklisted", because the errors appear only when a root or normal user startup cingg for the first time(?)
participants (3)
-
Andrew Randrianasulu -
Phyllis Smith -
Terje J. Hanssen