summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-06-30 01:20:06 +0200
committerwm4 <wm4@nowhere>2019-09-19 20:37:05 +0200
commitfb8d240c4d045ca254aa6693c48aecc75954cba0 (patch)
treea7cd07e33d2760c15d646afbbb73d6c86a9fa77b /wscript
parentc8b8fe9981c654c0539ca77056ed6451a3da7367 (diff)
downloadmpv-fb8d240c4d045ca254aa6693c48aecc75954cba0.tar.bz2
mpv-fb8d240c4d045ca254aa6693c48aecc75954cba0.tar.xz
vf_vapourynth: remove Lua backend
I once created this because someone wanted to use vapoursynth without the Python dependency. No idea if anyone ever actually used it. It's sort of icky (it calls itself "lazy" to preempt complaints about how much it sucks), and complicates the build process. Kill it. It seems much more promising to have something like this: https://github.com/vapoursynth/vapoursynth/issues/386 This would either solve the build distribution problem by relaxing the Python dependency, and/or allow a Lua backend to be included without pain.
Diffstat (limited to 'wscript')
-rw-r--r--wscript12
1 files changed, 1 insertions, 11 deletions
diff --git a/wscript b/wscript
index f19ba6565a..75e90aceab 100644
--- a/wscript
+++ b/wscript
@@ -392,20 +392,10 @@ iconv support use --disable-iconv.",
'func': check_pkg_config('lcms2', '>= 2.6'),
}, {
'name': '--vapoursynth',
- 'desc': 'VapourSynth filter bridge (Python)',
+ 'desc': 'VapourSynth filter bridge',
'func': check_pkg_config('vapoursynth', '>= 24',
'vapoursynth-script', '>= 23'),
}, {
- 'name': '--vapoursynth-lazy',
- 'desc': 'VapourSynth filter bridge (Lazy Lua)',
- 'deps': 'lua',
- 'func': check_pkg_config('vapoursynth', '>= 24'),
- }, {
- 'name': 'vapoursynth-core',
- 'desc': 'VapourSynth filter bridge (core)',
- 'deps': 'vapoursynth || vapoursynth-lazy',
- 'func': check_true,
- }, {
'name': '--libarchive',
'desc': 'libarchive wrapper for reading zip files and more',
'func': check_pkg_config('libarchive >= 3.0.0'),