чт, 31 авг. 2023 г., 00:17 Phyllis Smith <phylsmith2017@gmail.com>:Andrew, is this correct in: "0001-Add-libjpeg-dep-to.libtiff-in-thirdparty-Makefile.patch"that is, no comma??? between libwebp and libjpeg ?? as shown belowI noticed in one other example line "," was separating name of procedure from module name it should act on, and dependencies follow separated by space.$(call rules,$(call std-build,libtheora, libogg libvorbis))or$(call rules,$(call std-build,sratom, serd sord lv2))from same Makefile.may be commentary header should be updated with this detail (space-separated dependencies)diff --git a/cinelerra-5.1/thirdparty/Makefile b/cinelerra-5.1/thirdparty/Makefile
index b75858d5..cd8de90e 100644
--- a/cinelerra-5.1/thirdparty/Makefile
+++ b/cinelerra-5.1/thirdparty/Makefile
@@ -367,7 +367,7 @@ $(call rules,$(call std-build,openExr, ilmBase))
$(call rules,$(call std-build,openjpeg))
$(call rules,$(call std-build,opus))
$(call rules,$(call std-build,speech_tools))
-$(call rules,$(call std-build,tiff, libwebp))
+$(call rules,$(call std-build,tiff, libwebp libjpeg))
$(call rules,$(call std-build,twolame))
$(call rules,$(call std-build,x264))
$(call rules,$(call std-build,x265))On Tue, Aug 29, 2023 at 8:33 PM Andrew Randrianasulu <randrianasulu@gmail.com> wrote:sorry for mess ...