---------- Forwarded message ---------- From: *Андрей Рандрианасулу* <[email protected]> Date: Sunday, April 3, 2022 Subject: cingg ppc debug To: randrianasulu <[email protected]>
so, I tried to debug cin crashes on ppc, but gdb in void linux aborts on me qemu command: qemu-system-ppc -M mac99 -accel tcg,tb-size=384 -m 512 -device ati-vga -device ES1370 -hda 5gb_ppc.qcow -cdrom void-live-ppc-20210825.iso -boot d -cpu G3 also happens with G4 (default) may be my qemu (5.0.0) is at fault I can connect to host Xephyr started up like this Xephyr :1 -listen tcp -ac +xinerama -screen 1024x768 from vm using DISPLAY=10.0.2.2:1 startfluxbox because machine-local X server still gives no visible image -- Андрей Рандрианасулу
gdb.ppc
Description: Binary data
diff --git a/cinelerra-5.1/cinelerra/Makefile b/cinelerra-5.1/cinelerra/Makefile
index 1c10fc03..ddca1584 100644
--- a/cinelerra-5.1/cinelerra/Makefile
+++ b/cinelerra-5.1/cinelerra/Makefile
@@ -435,8 +435,10 @@ LIBS := $(LIBRARIES)
ifeq ($(WANT_CIN_3RDPARTY),no)
LIBS += -lavcodec -lavdevice -lavfilter -lavformat -lavutil
LIBS += -lswresample -lswscale
-LIBS += -lintl -liconv
-LIBS += -lexecinfo
+LIBS += -l:libtheoraenc.a -l:libtheoradec.a
+LIBS += -lmp3lame -ltwolame
+#LIBS += -lintl -liconv
+#LIBS += -lexecinfo
LIBS += $(shared_libs)
LIBS += $(system_libs)
diff --git a/cinelerra-5.1/cinelerra/ci b/cinelerra-5.1/cinelerra/ci
index bc987833..22858982 120000
--- a/cinelerra-5.1/cinelerra/ci
+++ b/cinelerra-5.1/cinelerra/ci
@@ -1 +1 @@
-../bin/cinelerra
\ No newline at end of file
+../bin/cin
\ No newline at end of file
diff --git a/cinelerra-5.1/cinelerra/fileogg.h b/cinelerra-5.1/cinelerra/fileogg.h
index 87c26dc1..76048bd6 100644
--- a/cinelerra-5.1/cinelerra/fileogg.h
+++ b/cinelerra-5.1/cinelerra/fileogg.h
@@ -29,7 +29,9 @@
#include "mutex.inc"
#include <theora/theora.h>
+extern "C" {
#include <theora/theoraenc.h>
+}
#include <theora/theoradec.h>
#include <vorbis/codec.h>
#include <vorbis/vorbisenc.h>
diff --git a/cinelerra-5.1/cinelerra/mwindow.C b/cinelerra-5.1/cinelerra/mwindow.C
index a502c156..49e87d3a 100644
--- a/cinelerra-5.1/cinelerra/mwindow.C
+++ b/cinelerra-5.1/cinelerra/mwindow.C
@@ -1220,6 +1220,8 @@ void MWindow::init_theme()
theme_plugin = plugindb->get(i);
}
+printf("after pluginserver for loop \n");
+
if( !theme_plugin )
fprintf(stderr, _("MWindow::init_theme: prefered theme %s not found.\n"),
preferences->theme);
@@ -1246,18 +1248,29 @@ void MWindow::init_theme()
theme_plugin->title);
exit(1);
}
+
theme = plugin->new_theme();
theme->mwindow = this;
+
+
+ if(!theme)
+ exit(1);
+
+printf("befor strcpy in init_theme\n");
strcpy(theme->path, plugin->path);
+printf("after strcpy in init_theme\n");
delete plugin;
-
+printf("before theme::initialize()\n");
// Load default images & settings
theme->Theme::initialize();
+printf("After Theme:initialize\n");
// Load user images & settings
theme->initialize();
+printf("After theme->initialize\n");
// Create menus with user colors
theme->build_menus();
+printf("after theme->build_menus\n");
init_menus();
theme->sort_image_sets();
diff --git a/cinelerra-5.1/cinelerra/theme.C b/cinelerra-5.1/cinelerra/theme.C
index 8a667b5c..3cd6b491 100644
--- a/cinelerra-5.1/cinelerra/theme.C
+++ b/cinelerra-5.1/cinelerra/theme.C
@@ -215,6 +215,7 @@ void Theme::initialize()
// Set images which weren't set by subclass
new_image("mode_normal", "mode_normal.png");
+ printf("in theme.C \n");
new_image("mode_add", "mode_add.png");
new_image("mode_subtract", "mode_subtract.png");
new_image("mode_multiply", "mode_multiply.png");
diff --git a/cinelerra-5.1/guicast/Makefile b/cinelerra-5.1/guicast/Makefile
index 57cfb21f..c9d969c5 100644
--- a/cinelerra-5.1/guicast/Makefile
+++ b/cinelerra-5.1/guicast/Makefile
@@ -20,6 +20,17 @@ ifeq ($(OBJDIR), aarch64)
BOOTSTRAPFLAGS := -DBOOTSTRAP="\"objcopy -B aarch64 -I binary -O elf64-littleaarch64\""
endif
+ifeq ($(OBJDIR), ppc64)
+BOOTSTRAPFLAGS := -DBOOTSTRAP="\"objcopy -B powerpc -I binary -O elf64-powerpc\""
+endif
+
+ifeq ($(OBJDIR), ppc)
+BOOTSTRAPFLAGS := -DBOOTSTRAP="\"objcopy -B powerpc -I binary -O elf32-powerpc\""
+endif
+
+
+
+
$(shell mkdir -p $(OBJDIR) )
OBJS = \
diff --git a/cinelerra-5.1/libzmpeg3/Makefile b/cinelerra-5.1/libzmpeg3/Makefile
index 47a0596f..cddcf611 100644
--- a/cinelerra-5.1/libzmpeg3/Makefile
+++ b/cinelerra-5.1/libzmpeg3/Makefile
@@ -79,7 +79,7 @@ UTILS += $(OBJDIR)/zmpeg3ifochk
UTILS += $(OBJDIR)/zmpeg3cc2txt
LIBS = -lm -lpthread
-
+LIBS += -la52
LIBS += $(lib_a52dec) $(lib_djbfft) $(lib_libbthread)
ifeq ($(DYNAMIC_FONTS), 1)
This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by cinelerra configure 5.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ ./configure --with-single-user --disable-static-build --without-lv2 --without-vaapi --without-vdpau --without-dv --without-firewire --without-thirdparty ## --------- ## ## Platform. ## ## --------- ## hostname = void-live uname -m = ppc uname -r = 5.13.12_1 uname -s = Linux uname -v = #1 SMP Thu Aug 19 14:12:26 UTC 2021 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = ppc /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2390: checking for a BSD-compatible install configure:2458: result: /bin/install -c configure:2469: checking whether build environment is sane configure:2524: result: yes configure:2670: checking for a thread-safe mkdir -p configure:2709: result: /sbin/mkdir -p configure:2716: checking for gawk configure:2732: found /sbin/gawk configure:2743: result: gawk configure:2754: checking whether make sets $(MAKE) configure:2776: result: yes configure:2805: checking whether make supports nested variables configure:2822: result: yes configure:2967: checking whether make supports the include directive configure:2982: make -f confmf.GNU && cat confinc.out this is the am__doit target configure:2985: $? = 0 configure:3004: result: yes (GNU style) configure:3074: checking for gcc configure:3090: found /sbin/gcc configure:3101: result: gcc configure:3330: checking for C compiler version configure:3339: gcc --version >&5 gcc (GCC) 10.2.1 20201203 Copyright (C) 2020 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3350: $? = 0 configure:3339: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib32/gcc/powerpc-linux-gnu/10.2.1/lto-wrapper Target: powerpc-linux-gnu Configured with: /builddir/gcc-10.2.1_pre1/configure --enable-secureplt --build=powerpc-linux-gnu --enable-gnu-unique-object --disable-vtable-verify --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --libexecdir=/usr/lib32 --libdir=/usr/lib32 --enable-threads=posix --enable-__cxa_atexit --disable-multilib --with-system-zlib --enable-shared --enable-lto --enable-plugins --enable-linker-build-id --disable-werror --disable-nls --enable-default-pie --enable-default-ssp --enable-checking=release --disable-libstdcxx-pch --with-isl --with-linker-hash-style=gnu --disable-sjlj-exceptions --disable-target-libiberty --enable-languages=c,c++,objc,obj-c++,fortran,lto,ada Thread model: posix Supported LTO compression algorithms: zlib gcc version 10.2.1 20201203 (GCC) configure:3350: $? = 0 configure:3339: gcc -V >&5 gcc: error: unrecognized command-line option '-V' gcc: fatal error: no input files compilation terminated. configure:3350: $? = 1 configure:3339: gcc -qversion >&5 gcc: error: unrecognized command-line option '-qversion'; did you mean '--version'? gcc: fatal error: no input files compilation terminated. configure:3350: $? = 1 configure:3370: checking whether the C compiler works configure:3392: gcc -I/usr/include/a52dec/ conftest.c >&5 configure:3396: $? = 0 configure:3444: result: yes configure:3447: checking for C compiler default output file name configure:3449: result: a.out configure:3455: checking for suffix of executables configure:3462: gcc -o conftest -I/usr/include/a52dec/ conftest.c >&5 configure:3466: $? = 0 configure:3488: result: configure:3510: checking whether we are cross compiling configure:3518: gcc -o conftest -I/usr/include/a52dec/ conftest.c >&5 configure:3522: $? = 0 configure:3529: ./conftest configure:3533: $? = 0 configure:3548: result: no configure:3553: checking for suffix of object files configure:3575: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:3579: $? = 0 configure:3600: result: o configure:3604: checking whether we are using the GNU C compiler configure:3623: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:3623: $? = 0 configure:3632: result: yes configure:3641: checking whether gcc accepts -g configure:3661: gcc -c -g conftest.c >&5 configure:3661: $? = 0 configure:3702: result: yes configure:3719: checking for gcc option to accept ISO C89 configure:3782: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:3782: $? = 0 configure:3795: result: none needed configure:3820: checking whether gcc understands -c and -o together configure:3842: gcc -c conftest.c -o conftest2.o configure:3845: $? = 0 configure:3842: gcc -c conftest.c -o conftest2.o configure:3845: $? = 0 configure:3857: result: yes configure:3876: checking dependency style of gcc configure:3987: result: none configure:4011: checking dependency style of gcc configure:4120: result: none configure:4205: checking for g++ configure:4221: found /sbin/g++ configure:4232: result: g++ configure:4259: checking for C++ compiler version configure:4268: g++ --version >&5 g++ (GCC) 10.2.1 20201203 Copyright (C) 2020 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:4279: $? = 0 configure:4268: g++ -v >&5 Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/usr/lib32/gcc/powerpc-linux-gnu/10.2.1/lto-wrapper Target: powerpc-linux-gnu Configured with: /builddir/gcc-10.2.1_pre1/configure --enable-secureplt --build=powerpc-linux-gnu --enable-gnu-unique-object --disable-vtable-verify --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --libexecdir=/usr/lib32 --libdir=/usr/lib32 --enable-threads=posix --enable-__cxa_atexit --disable-multilib --with-system-zlib --enable-shared --enable-lto --enable-plugins --enable-linker-build-id --disable-werror --disable-nls --enable-default-pie --enable-default-ssp --enable-checking=release --disable-libstdcxx-pch --with-isl --with-linker-hash-style=gnu --disable-sjlj-exceptions --disable-target-libiberty --enable-languages=c,c++,objc,obj-c++,fortran,lto,ada Thread model: posix Supported LTO compression algorithms: zlib gcc version 10.2.1 20201203 (GCC) configure:4279: $? = 0 configure:4268: g++ -V >&5 g++: error: unrecognized command-line option '-V' g++: fatal error: no input files compilation terminated. configure:4279: $? = 1 configure:4268: g++ -qversion >&5 g++: error: unrecognized command-line option '-qversion'; did you mean '--version'? g++: fatal error: no input files compilation terminated. configure:4279: $? = 1 configure:4283: checking whether we are using the GNU C++ compiler configure:4302: g++ -c conftest.cpp >&5 configure:4302: $? = 0 configure:4311: result: yes configure:4320: checking whether g++ accepts -g configure:4340: g++ -c -g conftest.cpp >&5 configure:4340: $? = 0 configure:4381: result: yes configure:4406: checking dependency style of g++ configure:4517: result: none configure:5934: checking for objcopy configure:5950: found /sbin/objcopy configure:5962: result: yes configure:5983: checking for pactl configure:6011: result: no configure:6022: checking whether X_HAVE_UTF8_STRING is declared configure:6022: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:6022: $? = 0 configure:6022: result: yes configure:6043: checking for XOpenDisplay in -lX11 configure:6068: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lX11 >&5 configure:6068: $? = 0 configure:6077: result: yes configure:6104: checking for X11/X.h configure:6104: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:6104: $? = 0 configure:6104: result: yes configure:6118: checking X11 headers configure:6120: result: yes configure:6129: checking for X11/keysym.h configure:6129: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:6129: $? = 0 configure:6129: result: yes configure:6143: checking X11 headers configure:6145: result: yes configure:6155: checking for XShmQueryExtension in -lXext configure:6180: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lXext >&5 configure:6180: $? = 0 configure:6189: result: yes configure:6216: checking for X11/Xlib.h configure:6216: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:6216: $? = 0 configure:6216: result: yes configure:6229: checking Xlib XShm extention configure:6231: result: yes configure:6241: checking for XineramaQueryExtension in -lXinerama configure:6266: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lXinerama >&5 configure:6266: $? = 0 configure:6275: result: yes configure:6302: checking for X11/extensions/Xinerama.h configure:6302: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:6302: $? = 0 configure:6302: result: yes configure:6313: checking Xinerama headers configure:6315: result: yes configure:6325: checking for XFixesQueryVersion in -lXfixes configure:6350: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lXfixes >&5 configure:6350: $? = 0 configure:6359: result: yes configure:6387: checking for BZ2_bzDecompress in -lbz2 configure:6412: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lbz2 >&5 configure:6412: $? = 0 configure:6421: result: yes configure:6449: checking for FcInit in -lfontconfig configure:6474: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lfontconfig >&5 configure:6474: $? = 0 configure:6483: result: yes configure:6511: checking for FT_Init_FreeType in -lfreetype configure:6536: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lfreetype >&5 configure:6536: $? = 0 configure:6545: result: yes configure:6573: checking for lzma_version_number in -llzma configure:6598: gcc -o conftest -I/usr/include/a52dec/ conftest.c -llzma >&5 configure:6598: $? = 0 configure:6607: result: yes configure:6635: checking for png_read_png in -lpng configure:6660: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lpng >&5 configure:6660: $? = 0 configure:6669: result: yes configure:6697: checking for pthread_create in -lpthread configure:6722: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lpthread >&5 configure:6722: $? = 0 configure:6731: result: yes configure:6759: checking for gzopen in -lz configure:6784: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lz >&5 configure:6784: $? = 0 configure:6793: result: yes configure:6821: checking for fftw_execute in -lfftw3 configure:6846: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lfftw3 >&5 configure:6846: $? = 0 configure:6855: result: yes configure:6882: checking for fftw3.h configure:6882: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:6882: $? = 0 configure:6882: result: yes configure:6893: checking fftw headers configure:6895: result: yes configure:6905: checking for uuid_clear in -luuid configure:6930: gcc -o conftest -I/usr/include/a52dec/ conftest.c -luuid >&5 configure:6930: $? = 0 configure:6939: result: yes configure:6966: checking for uuid/uuid.h configure:6966: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:6966: $? = 0 configure:6966: result: yes configure:6977: checking uuid headers configure:6979: result: yes configure:6988: checking for linux/cdrom.h configure:6988: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:6988: $? = 0 configure:6988: result: yes configure:7000: checking linux cdrom headers configure:7002: result: yes configure:7011: checking for sys/ioctl.h configure:7011: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:7011: $? = 0 configure:7011: result: yes configure:7026: checking linux sys configure:7028: result: yes configure:7038: checking for FLAC__stream_decoder_new in -lFLAC configure:7063: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lFLAC >&5 configure:7063: $? = 0 configure:7072: result: yes configure:7099: checking for FLAC/stream_decoder.h configure:7099: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:7099: $? = 0 configure:7099: result: yes configure:7110: checking FLAC headers configure:7112: result: yes configure:7122: checking for lame_init in -lmp3lame configure:7147: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lmp3lame >&5 /sbin/ld: cannot find -lmp3lame collect2: error: ld returned 1 exit status configure:7147: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char lame_init (); | int | main () | { | return lame_init (); | ; | return 0; | } configure:7156: result: no configure:7206: checking for jpeg_start_decompress in -ljpeg configure:7231: gcc -o conftest -I/usr/include/a52dec/ conftest.c -ljpeg >&5 configure:7231: $? = 0 configure:7240: result: yes configure:7267: checking for stdio.h configure:7267: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:7267: $? = 0 configure:7267: result: yes configure:7279: checking jpeg headers configure:7281: result: yes configure:7291: checking for opj_version in -lopenjp2 configure:7316: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lopenjp2 >&5 /sbin/ld: cannot find -lopenjp2 collect2: error: ld returned 1 exit status configure:7316: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char opj_version (); | int | main () | { | return opj_version (); | ; | return 0; | } configure:7325: result: no configure:7375: checking for sf_open in -lsndfile configure:7400: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lsndfile >&5 configure:7400: $? = 0 configure:7409: result: yes configure:7436: checking for sndfile.h configure:7436: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:7436: $? = 0 configure:7436: result: yes configure:7447: checking sndfile headers configure:7449: result: yes configure:7459: checking for ImfOpenInputFile in -lIlmImf configure:7484: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lIlmImf >&5 configure:7484: $? = 0 configure:7493: result: yes configure:7520: checking for OpenEXR/ImfCRgbaFile.h configure:7520: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:7520: $? = 0 configure:7520: result: yes configure:7531: checking IlmImf headers configure:7533: result: yes configure:7543: checking for vpx_codec_decode in -lvpx configure:7568: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lvpx >&5 /sbin/ld: cannot find -lvpx collect2: error: ld returned 1 exit status configure:7568: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char vpx_codec_decode (); | int | main () | { | return vpx_codec_decode (); | ; | return 0; | } configure:7577: result: no configure:7627: checking for mjpeg_info in -lmjpegutils configure:7652: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lmjpegutils >&5 /sbin/ld: cannot find -lmjpegutils collect2: error: ld returned 1 exit status configure:7652: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char mjpeg_info (); | int | main () | { | return mjpeg_info (); | ; | return 0; | } configure:7661: result: no configure:7711: checking for TIFFOpen in -ltiff configure:7736: gcc -o conftest -I/usr/include/a52dec/ conftest.c -ltiff >&5 configure:7736: $? = 0 configure:7745: result: yes configure:7772: checking for tiff.h configure:7772: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:7772: $? = 0 configure:7772: result: yes configure:7784: checking tiff headers configure:7786: result: yes configure:7796: checking for twolame_encode_buffer_float32_interleaved in -ltwolame configure:7821: gcc -o conftest -I/usr/include/a52dec/ conftest.c -ltwolame >&5 /sbin/ld: cannot find -ltwolame collect2: error: ld returned 1 exit status configure:7821: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char twolame_encode_buffer_float32_interleaved (); | int | main () | { | return twolame_encode_buffer_float32_interleaved (); | ; | return 0; | } configure:7830: result: no configure:7880: checking for x264_encoder_encode in -lx264 configure:7905: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lx264 >&5 /sbin/ld: cannot find -lx264 collect2: error: ld returned 1 exit status configure:7905: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char x264_encoder_encode (); | int | main () | { | return x264_encoder_encode (); | ; | return 0; | } configure:7914: result: no configure:7965: checking for x265_encoder_encode in -lx265 configure:7990: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lx265 >&5 /sbin/ld: cannot find -lx265 collect2: error: ld returned 1 exit status configure:7990: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char x265_encoder_encode (); | int | main () | { | return x265_encoder_encode (); | ; | return 0; | } configure:7999: result: no configure:8049: checking for opus_multistream_decoder_create in -lopus configure:8074: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lopus >&5 configure:8074: $? = 0 configure:8083: result: yes configure:8110: checking for opus/opus_multistream.h configure:8110: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:8110: $? = 0 configure:8110: result: yes configure:8121: checking libopus headers configure:8123: result: yes configure:8133: checking for aom_codec_version in -laom configure:8158: gcc -o conftest -I/usr/include/a52dec/ conftest.c -laom >&5 /sbin/ld: cannot find -laom collect2: error: ld returned 1 exit status configure:8158: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char aom_codec_version (); | int | main () | { | return aom_codec_version (); | ; | return 0; | } configure:8167: result: no configure:8217: checking for dav1d_version in -ldav1d configure:8242: gcc -o conftest -I/usr/include/a52dec/ conftest.c -ldav1d >&5 /sbin/ld: cannot find -ldav1d collect2: error: ld returned 1 exit status configure:8242: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char dav1d_version (); | int | main () | { | return dav1d_version (); | ; | return 0; | } configure:8251: result: no configure:8301: checking for WebPGetEncoderVersion in -lwebp configure:8326: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lwebp >&5 /sbin/ld: cannot find -lwebp collect2: error: ld returned 1 exit status configure:8326: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char WebPGetEncoderVersion (); | int | main () | { | return WebPGetEncoderVersion (); | ; | return 0; | } configure:8335: result: no configure:8385: checking for a52_init in -la52 configure:8410: gcc -o conftest -I/usr/include/a52dec/ conftest.c -la52 >&5 configure:8410: $? = 0 configure:8419: result: yes configure:8446: checking for stdint.h configure:8446: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:8446: $? = 0 configure:8446: result: yes configure:8458: checking a52 headers configure:8460: result: yes configure:8531: checking for encore.h configure:8531: gcc -c -I/usr/include/a52dec/ conftest.c >&5 conftest.c:11:10: fatal error: encore.h: No such file or directory 11 | #include "encore.h" | ^~~~~~~~~~ compilation terminated. configure:8531: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | #include "encore.h" | | | #include <encore.h> configure:8531: result: no configure:8542: checking encore headers configure:8544: result: no configure:8554: checking for DGifOpen in -lgif configure:8579: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lgif >&5 configure:8579: $? = 0 configure:8588: result: yes configure:8615: checking for gif_lib.h configure:8615: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:8615: $? = 0 configure:8615: result: yes configure:8626: checking gif lib headers configure:8628: result: yes configure:8638: checking for jbg_dec_init in -ljbig configure:8663: gcc -o conftest -I/usr/include/a52dec/ conftest.c -ljbig >&5 configure:8663: $? = 0 configure:8672: result: yes configure:8701: checking for vdp_device_create_x11 in -lvdpau configure:8726: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lvdpau >&5 /sbin/ld: cannot find -lvdpau collect2: error: ld returned 1 exit status configure:8726: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char vdp_device_create_x11 (); | int | main () | { | return vdp_device_create_x11 (); | ; | return 0; | } configure:8735: result: no configure:8767: checking for vaInitialize in -lva configure:8792: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lva >&5 /sbin/ld: cannot find -lva collect2: error: ld returned 1 exit status configure:8792: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char vaInitialize (); | int | main () | { | return vaInitialize (); | ; | return 0; | } configure:8801: result: no configure:9022: checking for glUseProgram in -lGL configure:9047: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lGL >&5 configure:9047: $? = 0 configure:9056: result: yes configure:9084: checking for gluOrtho2D in -lGLU configure:9109: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lGLU >&5 /sbin/ld: cannot find -lGLU collect2: error: ld returned 1 exit status configure:9109: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char gluOrtho2D (); | int | main () | { | return gluOrtho2D (); | ; | return 0; | } configure:9118: result: no configure:9193: checking for XvQueryExtension in -lXv configure:9218: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lXv >&5 /sbin/ld: cannot find -lXv collect2: error: ld returned 1 exit status configure:9218: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char XvQueryExtension (); | int | main () | { | return XvQueryExtension (); | ; | return 0; | } configure:9227: result: no configure:9299: checking for sys/soundcard.h configure:9299: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:9299: $? = 0 configure:9299: result: yes configure:9310: checking oss headers configure:9312: result: yes configure:9344: checking for XftInit in -lXft configure:9369: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lXft >&5 configure:9369: $? = 0 configure:9378: result: yes configure:9405: checking for X11/Xlib.h configure:9405: result: yes configure:9417: checking Xft/freetype headers configure:9419: result: yes configure:9451: checking for snd_pcm_open in -lasound configure:9476: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lasound >&5 configure:9476: $? = 0 configure:9485: result: yes configure:9512: checking for alsa/asoundlib.h configure:9512: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:9512: $? = 0 configure:9512: result: yes configure:9523: checking asound headers configure:9525: result: yes configure:9557: checking for ogg_stream_init in -logg configure:9582: gcc -o conftest -I/usr/include/a52dec/ conftest.c -logg >&5 configure:9582: $? = 0 configure:9591: result: yes configure:9618: checking for ogg/ogg.h configure:9618: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:9618: $? = 0 configure:9618: result: yes configure:9629: checking ogg headers configure:9631: result: yes configure:9641: checking for theora_info_init in -ltheora configure:9666: gcc -o conftest -I/usr/include/a52dec/ conftest.c -ltheora -ltheoraenc -ltheoradec -logg >&5 configure:9666: $? = 0 configure:9675: result: yes configure:9702: checking for theora/theoraenc.h configure:9702: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:9702: $? = 0 configure:9702: result: yes configure:9713: checking threora headers configure:9715: result: yes configure:9725: checking for vorbis_encode_init in -lvorbisenc configure:9750: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lvorbisenc -lvorbis -lvorbisfile -logg >&5 configure:9750: $? = 0 configure:9759: result: yes configure:9786: checking for vorbis/vorbisenc.h configure:9786: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:9786: $? = 0 configure:9786: result: yes configure:9797: checking vorbis encoders headers configure:9799: result: yes configure:9809: checking for ov_open in -lvorbisfile configure:9834: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lvorbisfile >&5 configure:9834: $? = 0 configure:9843: result: yes configure:9870: checking for vorbis/vorbisfile.h configure:9870: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:9870: $? = 0 configure:9870: result: yes configure:9881: checking vorbis file headers configure:9883: result: yes configure:9915: checking for avc1394_init_target in -lavc1394 configure:9940: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lavc1394 >&5 /sbin/ld: cannot find -lavc1394 collect2: error: ld returned 1 exit status configure:9940: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char avc1394_init_target (); | int | main () | { | return avc1394_init_target (); | ; | return 0; | } configure:9949: result: no configure:10083: checking for iec61883_mpeg2_recv_init in -liec61883 configure:10108: gcc -o conftest -I/usr/include/a52dec/ conftest.c -liec61883 >&5 /sbin/ld: cannot find -liec61883 collect2: error: ld returned 1 exit status configure:10108: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char iec61883_mpeg2_recv_init (); | int | main () | { | return iec61883_mpeg2_recv_init (); | ; | return 0; | } configure:10117: result: no configure:10167: checking for raw1394_iso_recv_init in -lraw1394 configure:10192: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lraw1394 >&5 /sbin/ld: cannot find -lraw1394 collect2: error: ld returned 1 exit status configure:10192: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char raw1394_iso_recv_init (); | int | main () | { | return raw1394_iso_recv_init (); | ; | return 0; | } configure:10201: result: no configure:10282: checking for dv_init in -ldv configure:10307: gcc -o conftest -I/usr/include/a52dec/ conftest.c -ldv >&5 /sbin/ld: cannot find -ldv collect2: error: ld returned 1 exit status configure:10307: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char dv_init (); | int | main () | { | return dv_init (); | ; | return 0; | } configure:10316: result: no configure:10387: checking for linux/dvb/dmx.h configure:10387: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:10387: $? = 0 configure:10387: result: yes configure:10399: checking dvb device headers configure:10401: result: yes configure:10432: checking for linux/kernel.h configure:10432: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:10432: $? = 0 configure:10432: result: yes configure:10445: checking v4l2 system headers configure:10447: result: yes configure:10478: checking for X11/Xlib.h configure:10478: result: yes configure:10490: checking XF86VM headers configure:10492: result: yes configure:10585: checking for esd.h configure:10585: gcc -c -I/usr/include/a52dec/ conftest.c >&5 conftest.c:11:10: fatal error: esd.h: No such file or directory 11 | #include "esd.h" | ^~~~~~~ compilation terminated. configure:10585: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | #include "esd.h" | | | #include <esd.h> configure:10585: result: no configure:10596: checking esound headers configure:10598: result: no configure:10669: checking for audiofile.h configure:10669: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:10669: $? = 0 configure:10669: result: yes configure:10680: checking audiofile headers configure:10682: result: yes configure:10721: checking for pa_simple_new in -lpulse-simple configure:10746: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lpulse-simple >&5 /sbin/ld: cannot find -lpulse-simple collect2: error: ld returned 1 exit status configure:10746: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char pa_simple_new (); | int | main () | { | return pa_simple_new (); | ; | return 0; | } configure:10755: result: no configure:10805: checking for pa_context_new in -lpulse configure:10830: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lpulse >&5 /sbin/ld: cannot find -lpulse collect2: error: ld returned 1 exit status configure:10830: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char pa_context_new (); | int | main () | { | return pa_context_new (); | ; | return 0; | } configure:10839: result: no configure:10910: checking for linux/isofs.h configure:10910: gcc -c -I/usr/include/a52dec/ conftest.c >&5 conftest.c:11:10: fatal error: linux/isofs.h: No such file or directory 11 | #include "linux/isofs.h" | ^~~~~~~~~~~~~~~ compilation terminated. configure:10910: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | #include "linux/isofs.h" | | | #include <linux/isofs.h> configure:10910: result: no configure:10921: checking isofs headers configure:10923: result: no configure:11002: checking for X11/keysymdef.h configure:11002: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:11002: $? = 0 configure:11002: result: yes configure:11013: checking x11 keysym defs configure:11015: result: yes configure:11049: checking for libusb_init in -lusb-1.0 configure:11074: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lusb-1.0 >&5 configure:11074: $? = 0 configure:11083: result: yes configure:11110: checking for libusb-1.0/libusb.h configure:11110: gcc -c -I/usr/include/a52dec/ conftest.c >&5 configure:11110: $? = 0 configure:11110: result: yes configure:11121: checking libusb headers configure:11123: result: yes configure:11156: checking for lilv_world_new in -llilv-0 configure:11181: gcc -o conftest -I/usr/include/a52dec/ conftest.c -llilv-0 >&5 /sbin/ld: cannot find -llilv-0 collect2: error: ld returned 1 exit status configure:11181: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char lilv_world_new (); | int | main () | { | return lilv_world_new (); | ; | return 0; | } configure:11190: result: no configure:11218: checking for sord_world_new in -lsord-0 configure:11243: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lsord-0 >&5 /sbin/ld: cannot find -lsord-0 collect2: error: ld returned 1 exit status configure:11243: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char sord_world_new (); | int | main () | { | return sord_world_new (); | ; | return 0; | } configure:11252: result: no configure:11280: checking for serd_reader_new in -lserd-0 configure:11305: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lserd-0 >&5 /sbin/ld: cannot find -lserd-0 collect2: error: ld returned 1 exit status configure:11305: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char serd_reader_new (); | int | main () | { | return serd_reader_new (); | ; | return 0; | } configure:11314: result: no configure:11342: checking for sratom_new in -lsratom-0 configure:11367: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lsratom-0 >&5 /sbin/ld: cannot find -lsratom-0 collect2: error: ld returned 1 exit status configure:11367: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char sratom_new (); | int | main () | { | return sratom_new (); | ; | return 0; | } configure:11376: result: no configure:11404: checking for lilv/lilv.h configure:11404: gcc -c -I/usr/include/lilv-0 -I/usr/local/include/lilv-0 conftest.c >&5 conftest.c:11:10: fatal error: lilv/lilv.h: No such file or directory 11 | #include "lilv/lilv.h" | ^~~~~~~~~~~~~ compilation terminated. configure:11404: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | #include "lilv/lilv.h" | | | #include <lilv/lilv.h> configure:11404: result: no configure:11415: checking lilv headers configure:11417: result: no configure:11427: checking for suil_instance_new in -lsuil-0 configure:11452: gcc -o conftest -I/usr/include/lilv-0 -I/usr/local/include/lilv-0 conftest.c -lsuil-0 >&5 /sbin/ld: cannot find -lsuil-0 collect2: error: ld returned 1 exit status configure:11452: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char suil_instance_new (); | int | main () | { | return suil_instance_new (); | ; | return 0; | } configure:11461: result: no configure:11550: checking for /usr/local/cuda/include/cuda.h configure:11550: gcc -c -I/usr/include/a52dec/ conftest.c >&5 conftest.c:11:10: fatal error: /usr/local/cuda/include/cuda.h: No such file or directory 11 | #include "/usr/local/cuda/include/cuda.h" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. configure:11550: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | #include "/usr/local/cuda/include/cuda.h" | | | #include </usr/local/cuda/include/cuda.h> configure:11550: result: no configure:11561: checking cuda sdk configure:11563: result: no configure:11595: checking for dlopen in -ldl configure:11620: gcc -o conftest -I/usr/include/a52dec/ conftest.c -ldl >&5 configure:11620: $? = 0 configure:11629: result: yes configure:11702: checking for numa_alloc in -lnuma configure:11727: gcc -o conftest -I/usr/include/a52dec/ conftest.c -lnuma >&5 /sbin/ld: cannot find -lnuma collect2: error: ld returned 1 exit status configure:11727: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "cinelerra" | #define PACKAGE_TARNAME "cinelerra" | #define PACKAGE_VERSION "5.1" | #define PACKAGE_STRING "cinelerra 5.1" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "" | #define PACKAGE "cinelerra" | #define VERSION "5.1" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char numa_alloc (); | int | main () | { | return numa_alloc (); | ; | return 0; | } configure:11736: result: no configure:11783: checking for openexr available configure:11869: g++ -o conftest -I/usr/include/OpenEXR -I/usr/local/include/OpenEXR conftest.cpp -lIlmImf -lIlmThread -lIex -lpthread >&5 configure:11869: $? = 0 configure:11894: result: yes configure:14715: checking that generated files are newer than configure configure:14721: result: done configure:14752: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by cinelerra config.status 5.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on void-live config.status:976: creating Makefile config.status:1148: executing depfiles commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_c_compiler_gnu=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_CCASFLAGS_set= ac_cv_env_CCASFLAGS_value= ac_cv_env_CCAS_set= ac_cv_env_CCAS_value= ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value=-I/usr/include/a52dec/ ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_have_decl_X_HAVE_UTF8_STRING=yes ac_cv_header_FLAC_stream_decoder_h=yes ac_cv_header_OpenEXR_ImfCRgbaFile_h=yes ac_cv_header_X11_X_h=yes ac_cv_header_X11_Xlib_h=yes ac_cv_header_X11_extensions_Xinerama_h=yes ac_cv_header_X11_keysym_h=yes ac_cv_header_X11_keysymdef_h=yes ac_cv_header__usr_local_cuda_include_cuda_h=no ac_cv_header_alsa_asoundlib_h=yes ac_cv_header_audiofile_h=yes ac_cv_header_encore_h=no ac_cv_header_esd_h=no ac_cv_header_fftw3_h=yes ac_cv_header_gif_lib_h=yes ac_cv_header_libusb_1_0_libusb_h=yes ac_cv_header_lilv_lilv_h=no ac_cv_header_linux_cdrom_h=yes ac_cv_header_linux_dvb_dmx_h=yes ac_cv_header_linux_isofs_h=no ac_cv_header_linux_kernel_h=yes ac_cv_header_ogg_ogg_h=yes ac_cv_header_opus_opus_multistream_h=yes ac_cv_header_sndfile_h=yes ac_cv_header_stdint_h=yes ac_cv_header_stdio_h=yes ac_cv_header_sys_ioctl_h=yes ac_cv_header_sys_soundcard_h=yes ac_cv_header_theora_theoraenc_h=yes ac_cv_header_tiff_h=yes ac_cv_header_uuid_uuid_h=yes ac_cv_header_vorbis_vorbisenc_h=yes ac_cv_header_vorbis_vorbisfile_h=yes ac_cv_lib_FLAC_FLAC__stream_decoder_new=yes ac_cv_lib_GLU_gluOrtho2D=no ac_cv_lib_GL_glUseProgram=yes ac_cv_lib_IlmImf_ImfOpenInputFile=yes ac_cv_lib_X11_XOpenDisplay=yes ac_cv_lib_Xext_XShmQueryExtension=yes ac_cv_lib_Xfixes_XFixesQueryVersion=yes ac_cv_lib_Xft_XftInit=yes ac_cv_lib_Xinerama_XineramaQueryExtension=yes ac_cv_lib_Xv_XvQueryExtension=no ac_cv_lib_a52_a52_init=yes ac_cv_lib_aom_aom_codec_version=no ac_cv_lib_asound_snd_pcm_open=yes ac_cv_lib_avc1394_avc1394_init_target=no ac_cv_lib_bz2_BZ2_bzDecompress=yes ac_cv_lib_dav1d_dav1d_version=no ac_cv_lib_dl_dlopen=yes ac_cv_lib_dv_dv_init=no ac_cv_lib_fftw3_fftw_execute=yes ac_cv_lib_fontconfig_FcInit=yes ac_cv_lib_freetype_FT_Init_FreeType=yes ac_cv_lib_gif_DGifOpen=yes ac_cv_lib_iec61883_iec61883_mpeg2_recv_init=no ac_cv_lib_jbig_jbg_dec_init=yes ac_cv_lib_jpeg_jpeg_start_decompress=yes ac_cv_lib_lilv_0_lilv_world_new=no ac_cv_lib_lzma_lzma_version_number=yes ac_cv_lib_mjpegutils_mjpeg_info=no ac_cv_lib_mp3lame_lame_init=no ac_cv_lib_numa_numa_alloc=no ac_cv_lib_ogg_ogg_stream_init=yes ac_cv_lib_openjp2_opj_version=no ac_cv_lib_opus_opus_multistream_decoder_create=yes ac_cv_lib_png_png_read_png=yes ac_cv_lib_pthread_pthread_create=yes ac_cv_lib_pulse_pa_context_new=no ac_cv_lib_pulse_simple_pa_simple_new=no ac_cv_lib_raw1394_raw1394_iso_recv_init=no ac_cv_lib_serd_0_serd_reader_new=no ac_cv_lib_sndfile_sf_open=yes ac_cv_lib_sord_0_sord_world_new=no ac_cv_lib_sratom_0_sratom_new=no ac_cv_lib_suil_0_suil_instance_new=no ac_cv_lib_theora_theora_info_init=yes ac_cv_lib_tiff_TIFFOpen=yes ac_cv_lib_twolame_twolame_encode_buffer_float32_interleaved=no ac_cv_lib_usb_1_0_libusb_init=yes ac_cv_lib_uuid_uuid_clear=yes ac_cv_lib_va_vaInitialize=no ac_cv_lib_vdpau_vdp_device_create_x11=no ac_cv_lib_vorbisenc_vorbis_encode_init=yes ac_cv_lib_vorbisfile_ov_open=yes ac_cv_lib_vpx_vpx_codec_decode=no ac_cv_lib_webp_WebPGetEncoderVersion=no ac_cv_lib_x264_x264_encoder_encode=no ac_cv_lib_x265_x265_encoder_encode=no ac_cv_lib_z_gzopen=yes ac_cv_objext=o ac_cv_path_install='/bin/install -c' ac_cv_path_mkdir=/sbin/mkdir ac_cv_prog_AWK=gawk ac_cv_prog_PROG_OBJCOPY=yes ac_cv_prog_PROG_PACTL=no ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_cc_c89= ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=yes ac_cv_prog_make_make_set=yes am_cv_CCAS_dependencies_compiler_type=none am_cv_CC_dependencies_compiler_type=none am_cv_CXX_dependencies_compiler_type=none am_cv_make_support_nested_variables=yes am_cv_prog_cc_c_o=yes ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} '\''/mnt/disk2/cinelerra/cinelerra-5.1/m4/missing'\'' aclocal-1.16' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='$${TAR-tar}' AM_BACKSLASH='\' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' AM_DEFAULT_VERBOSITY='1' AM_V='$(V)' AUTOCONF='${SHELL} '\''/mnt/disk2/cinelerra/cinelerra-5.1/m4/missing'\'' autoconf' AUTOHEADER='${SHELL} '\''/mnt/disk2/cinelerra/cinelerra-5.1/m4/missing'\'' autoheader' AUTOMAKE='${SHELL} '\''/mnt/disk2/cinelerra/cinelerra-5.1/m4/missing'\'' automake-1.16' AWK='gawk' BUILD_a52dec='0' BUILD_audiofile='0' BUILD_dav1d='' BUILD_djbfft='0' BUILD_encore='0' BUILD_esound='0' BUILD_ffmpeg='0' BUILD_ffnvcodec='' BUILD_fftw='0' BUILD_flac='0' BUILD_giflib='0' BUILD_ilmBase='' BUILD_ladspa='' BUILD_lame='' BUILD_libaom='' BUILD_libavc1394='0' BUILD_libbthread='' BUILD_libdv='0' BUILD_libiec61883='0' BUILD_libjpeg='0' BUILD_libogg='0' BUILD_libraw1394='0' BUILD_libsndfile='0' BUILD_libtheora='0' BUILD_libuuid='0' BUILD_libvorbis='0' BUILD_libvpx='' BUILD_libwebp='' BUILD_lilv='0' BUILD_lv2='0' BUILD_mjpegtools='0' BUILD_openExr='' BUILD_openexr='' BUILD_openjpeg='' BUILD_opus='0' BUILD_serd='0' BUILD_sord='0' BUILD_sratom='0' BUILD_suil='0' BUILD_tiff='0' BUILD_twolame='' BUILD_x264='' BUILD_x265='' CC='gcc' CCAS='gcc' CCASDEPMODE='depmode=none' CCASFLAGS='-I/usr/include/a52dec/' CCDEPMODE='depmode=none' CFG_CFLAGS=' -fno-omit-frame-pointer -fno-math-errno -fno-signed-zeros -pthread -Wall -Wno-attributes -Wno-unused-result -Wno-stringop-overflow -Wno-format-truncation -Wno-format-overflow -Wno-parentheses -Wno-stringop-truncation -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -DPNG_SKIP_SETJMP_CHECK=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/a52dec -I/usr/include -I/usr/local/include -I/usr/include/freetype2 -I/usr/local/include/freetype2 -I/data/data/com.termux/files/usr/include/freetype2 -I/usr/include/uuid -I/usr/local/include/uuid -I/data/data/com.termux/files/usr/include/uuid -I/usr/local/include/uuid -I/usr/include/mjpegtools -I/usr/local/include/mjpegtools -DNO_CTX -DNO_GDB -DNO_BTRACE -I/usr/include/OpenEXR -I/usr/local/include/OpenEXR -DHAVE_XFT -DHAVE_XXF86VM -DHAVE_OSS -DHAVE_ALSA -DHAVE_OGG -DHAVE_DVB -DHAVE_LADSPA -DHAVE_VIDEO4LINUX2 -DHAVE_OPENEXR -DHAVE_LIBZMPEG -DHAVE_SHUTTLE -DHAVE_SHUTTLE_USB -DHAVE_NV -DHAVE_WINTV -DHAVE_X10TV' CFG_CXXFLAGS='' CFLAGS='-I/usr/include/a52dec/' CIN_INSTALLS=' zmp_install lad_install ' CIN_UNINSTALLS=' zmp_uninstall lad_uninstall ' CPPFLAGS='' CSCOPE='cscope' CTAGS='ctags' CXX='g++' CXXDEPMODE='depmode=none' CXXFLAGS='-g -O2' CYGPATH_W='echo' DEFS='-DPACKAGE_NAME=\"cinelerra\" -DPACKAGE_TARNAME=\"cinelerra\" -DPACKAGE_VERSION=\"5.1\" -DPACKAGE_STRING=\"cinelerra\ 5.1\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"cinelerra\" -DVERSION=\"5.1\"' DEPDIR='.deps' ECHO_C='' ECHO_N='-n' ECHO_T='' ETAGS='etags' EXEEXT='' EXTRA_LIBS=' -ljbig -ldl' FFMPEG_EXTRA_CFG=' --extra-ldflags=" -ldl"' HAVE_ALSA='yes' HAVE_BZ2='yes' HAVE_CUDA='no' HAVE_DL='yes' HAVE_DVB='yes' HAVE_FONTCONFIG='yes' HAVE_FREETYPE='yes' HAVE_GL='no' HAVE_LINUX_CDROM='yes' HAVE_LINUX_SYS='yes' HAVE_LZMA='yes' HAVE_NUMA='no' HAVE_OPENEXR='no' HAVE_OSS='yes' HAVE_PNG='yes' HAVE_PTHREAD='yes' HAVE_VAAPI='no' HAVE_VDPAU='no' HAVE_VIDEO4LINUX2='yes' HAVE_X11='yes' HAVE_XEXT='yes' HAVE_XFIXES='yes' HAVE_XFT='yes' HAVE_XINERAMA='yes' HAVE_XXF86VM='yes' HAVE_Z='yes' HAVE_a52dec='yes' HAVE_audiofile='no' HAVE_dav1d='no' HAVE_encore='no' HAVE_esound='no' HAVE_fftw='yes' HAVE_flac='yes' HAVE_giflib='yes' HAVE_ilmbase='no' HAVE_isofs='no' HAVE_jbig='yes' HAVE_keysyms='yes' HAVE_ladspa='' HAVE_lame='no' HAVE_libaom='no' HAVE_libavc1394='no' HAVE_libdv='no' HAVE_libiec61883='no' HAVE_libjpeg='yes' HAVE_libogg='yes' HAVE_libraw1394='no' HAVE_libsndfile='yes' HAVE_libtheora='yes' HAVE_libusbx='yes' HAVE_libuuid='yes' HAVE_libvorbis='yes' HAVE_libvpx='no' HAVE_libwebp='no' HAVE_lilv='no' HAVE_lv2='no' HAVE_mjpegtools='no' HAVE_openjpeg='no' HAVE_opus='yes' HAVE_pulse='no' HAVE_pulse_simple='no' HAVE_serd='no' HAVE_sord='no' HAVE_sratom='no' HAVE_suil='no' HAVE_tiff='yes' HAVE_twolame='no' HAVE_vaapi_drm='' HAVE_vaapi_x11='' HAVE_x264='no' HAVE_x265='no' HAVE_xv='no' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LDFLAGS=' -z noexecstack' LIBOBJS='' LIBS='' LTLIBOBJS='' MAKEINFO='${SHELL} '\''/mnt/disk2/cinelerra/cinelerra-5.1/m4/missing'\'' makeinfo' MAK_INSTALLS='dvl_install' MAK_UNINSTALLS='dvl_uninstall' MKDIR_P='/sbin/mkdir -p' OBJDIR='ppc' OBJEXT='o' PACKAGE='cinelerra' PACKAGE_BUGREPORT='[email protected]' PACKAGE_NAME='cinelerra' PACKAGE_STRING='cinelerra 5.1' PACKAGE_TARNAME='cinelerra' PACKAGE_URL='' PACKAGE_VERSION='5.1' PATH_SEPARATOR=':' PROG_NASM='' PROG_OBJCOPY='yes' PROG_PACTL='no' PROG_YASM='' SET_MAKE='' SHARED_LIBS=' -ltheoraenc -ltheoradec -logg -lvorbis -lvorbisfile -logg -lIlmImf -lIlmThread -lIex -lpthread -la52 -lfftw3 -lFLAC -lgif -ljpeg -logg -lsndfile -ltheora -luuid -lvorbisenc -lvorbisfile -ltiff -lopus' SHELL='/bin/sh' STATIC_BLDS='' STATIC_PKGS=' a52dec djbfft audiofile encore esound 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' STRIP='' SYSTEM_LIBS=' -lX11 -lXext -lXinerama -lXfixes -lbz2 -lfontconfig -lfreetype -llzma -lpng -lpthread -lz -lIlmImf -ljbig -lGL -lXft -lasound -lusb-1.0 -ldl' VERSION='5.1' WANT_ALSA='yes' WANT_BOOBY='no' WANT_CIN='cin' WANT_CINBIN_BUILD='yes' WANT_CINDAT_DIR='$$CIN_PATH' WANT_CINLIB_DIR='$$CIN_PATH' WANT_CIN_3RDPARTY='no' WANT_CIN_BROWSER='firefox' WANT_CLANG='no' WANT_COMMERCIAL='no' WANT_CONFIG_DIR='$$HOME/.bcast5' WANT_CUDA='no' WANT_DL='yes' WANT_DV='no' WANT_DVB='yes' WANT_ESOUND='no' WANT_FIREWIRE='no' WANT_GIT_FFMPEG='no' WANT_GL='no' WANT_ISOFS='no' WANT_JOBS='3' WANT_LADSPA='yes' WANT_LADSPA_BUILD='yes' WANT_LADSPA_DIR='$$CIN_LIB/ladspa' WANT_LIBZMPEG='yes' WANT_LV2='no' WANT_NESTED_DIR='$$HOME/Videos' WANT_NOELISION='auto' WANT_NUMA='no' WANT_NV='yes' WANT_OGG='yes' WANT_OPENCV='no' WANT_OPENEXR='yes' WANT_OSS='yes' WANT_PLUGIN_DIR='$$CIN_LIB/plugins' WANT_PULSE='no' WANT_SHUTTLE='yes' WANT_SHUTTLE_USB='yes' WANT_SNAP_DIR='$$HOME/Pictures' WANT_VAAPI='no' WANT_VDPAU='no' WANT_VIDEO4LINUX2='yes' WANT_WINTV='yes' WANT_X10TV='yes' WANT_X264_HIDEPTH='no' WANT_X265_HIDEPTH='no' WANT_XFT='yes' WANT_XV='no' WANT_XXF86VM='yes' ac_ct_CC='gcc' ac_ct_CXX='g++' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='#' am__fastdepCCAS_FALSE='' am__fastdepCCAS_TRUE='#' am__fastdepCC_FALSE='' am__fastdepCC_TRUE='#' am__fastdepCXX_FALSE='' am__fastdepCXX_TRUE='#' am__include='include' am__isrc='' am__leading_dot='.' am__nodep='_no' am__quote='' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' bindir='${exec_prefix}/bin' build_alias='' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host_alias='' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /mnt/disk2/cinelerra/cinelerra-5.1/m4/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='$(MKDIR_P)' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "cinelerra" #define PACKAGE_TARNAME "cinelerra" #define PACKAGE_VERSION "5.1" #define PACKAGE_STRING "cinelerra 5.1" #define PACKAGE_BUGREPORT "[email protected]" #define PACKAGE_URL "" #define PACKAGE "cinelerra" #define VERSION "5.1" configure: exit 0
-- Cin mailing list [email protected] https://lists.cinelerra-gg.org/mailman/listinfo/cin

