mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-01 09:31:58 +00:00
27 lines
735 B
Diff
27 lines
735 B
Diff
From 03ce488cabd436b353aaa4bef1b848493e17317f Mon Sep 17 00:00:00 2001
|
|
From: Terra Packaging Team <terra@fyralabs.com>
|
|
Date: Sun, 31 May 2026 03:08:52 -0500
|
|
Subject: [PATCH] Fix VapourSynth dlopen
|
|
|
|
See: https://bugzilla.redhat.com/show_bug.cgi?id=2345698
|
|
---
|
|
libavformat/vapoursynth.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/libavformat/vapoursynth.c b/libavformat/vapoursynth.c
|
|
index 0fa5aff..e6ac20b 100644
|
|
--- a/libavformat/vapoursynth.c
|
|
+++ b/libavformat/vapoursynth.c
|
|
@@ -49,7 +49,7 @@
|
|
#else
|
|
#include <dlfcn.h>
|
|
#define VSSCRIPT_NAME "libvapoursynth-script"
|
|
- #define VSSCRIPT_LIB VSSCRIPT_NAME SLIBSUF
|
|
+ #define VSSCRIPT_LIB VSSCRIPT_NAME SLIBSUF ".0"
|
|
#endif
|
|
|
|
struct VSState {
|
|
--
|
|
2.54.0
|
|
|