From: Good Guy Date: Fri, 11 Apr 2025 21:38:54 +0000 (-0600) Subject: Credit Andrew-R modify Blend plugins for NetBSD shebang-perl and not using ldl +... X-Git-Tag: 2025-04~4 X-Git-Url: https://git.cinelerra-gg.org/git/?a=commitdiff_plain;h=ef5ef632a0bcc67dc0d73c3fa14d151343ee5184;p=goodguy%2Fcinelerra.git Credit Andrew-R modify Blend plugins for NetBSD shebang-perl and not using ldl + add older ffnvcodec for 10.0.26.0 Video Codec SDK --- diff --git a/cinelerra-5.1/plugins/blendalgebra/BlendAlgebraCompile.pl b/cinelerra-5.1/plugins/blendalgebra/BlendAlgebraCompile.pl index ecc68df1..97f7cfc7 100755 --- a/cinelerra-5.1/plugins/blendalgebra/BlendAlgebraCompile.pl +++ b/cinelerra-5.1/plugins/blendalgebra/BlendAlgebraCompile.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # Helper script to compile Cinelerra blend algebra functions # Calling: BlendAlgebraCompile.pl [options] diff --git a/cinelerra-5.1/plugins/blendalgebra/Makefile b/cinelerra-5.1/plugins/blendalgebra/Makefile index 308b4db4..4db95d7b 100644 --- a/cinelerra-5.1/plugins/blendalgebra/Makefile +++ b/cinelerra-5.1/plugins/blendalgebra/Makefile @@ -1,6 +1,9 @@ include ../../plugin_defs +PLATFORM = $(shell uname) +ifneq ($(PLATFORM), NetBSD) LDFLAGS += -ldl +endif OBJS = $(OBJDIR)/blendalgebra.o diff --git a/cinelerra-5.1/plugins/blendprogram/BlendProgramCompile.pl b/cinelerra-5.1/plugins/blendprogram/BlendProgramCompile.pl index 5e3646d9..2c0e4997 100755 --- a/cinelerra-5.1/plugins/blendprogram/BlendProgramCompile.pl +++ b/cinelerra-5.1/plugins/blendprogram/BlendProgramCompile.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # Helper script to compile Cinelerra blend programs # Calling: BlendProgramCompile.pl [options] diff --git a/cinelerra-5.1/plugins/blendprogram/Makefile b/cinelerra-5.1/plugins/blendprogram/Makefile index 3da098f8..4a7cdc0b 100644 --- a/cinelerra-5.1/plugins/blendprogram/Makefile +++ b/cinelerra-5.1/plugins/blendprogram/Makefile @@ -1,6 +1,9 @@ include ../../plugin_defs +PLATFORM = $(shell uname) +ifneq ($(PLATFORM), NetBSD) LDFLAGS += -ldl +endif OBJS = $(OBJDIR)/blendprogram.o diff --git a/cinelerra-5.1/thirdparty/src/ffnvcodec-old.tar.xz b/cinelerra-5.1/thirdparty/src/ffnvcodec-old.tar.xz new file mode 100644 index 00000000..7c487066 Binary files /dev/null and b/cinelerra-5.1/thirdparty/src/ffnvcodec-old.tar.xz differ