On Sun, Nov 17, 2024 at 10:48 PM Andrew Randrianasulu < [email protected]> wrote:
> Currently from that system > > I still need to set > > export LD_LIBRARY_PATH="/usr/pkg/lib/ffmpeg6" > I hope third patch fixes that > > and set audio output to oss - > /dev/audio but it seems to work. > > Can you check them by building on Linux? :) >
From 0ea1843896643d41d818c77a8f4def37232a55e3 Mon Sep 17 00:00:00 2001 From: Andrew Randrianasulu <[email protected]> Date: Sun, 17 Nov 2024 23:36:20 +0300 Subject: [PATCH 3/3] Fix NetBSD 10.0 runtime search path by using -r arg for ld --- cinelerra-5.1/configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cinelerra-5.1/configure.ac b/cinelerra-5.1/configure.ac index c48b64e1..d7236c68 100644 --- a/cinelerra-5.1/configure.ac +++ b/cinelerra-5.1/configure.ac @@ -1307,6 +1307,8 @@ echo "system_libs += -L/usr/pkg/lib/" echo "system_libs += -lpng16" echo "system_libs += -lintl" echo "system_libs += -lossaudio" +echo "system_libs += -rpath=/usr/pkg/lib/ffmpeg6" +echo "system_libs += -rpath=/usr/pkg/lib/" echo "CFLAGS += -I/usr/X11R7/include" echo "CFLAGS += -I/usr/pkg/include/ffmpeg6" echo "CFLAGS += $(pkg-config --cflags xft)" -- 2.46.1
-- Cin mailing list [email protected] https://lists.cinelerra-gg.org/mailman/listinfo/cin

