summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-03-05 10:55:36 +0100
committerwm4 <wm4@nowhere>2020-03-05 22:00:50 +0100
commit3b8b7cb9d481828953f105f92bacc07a3cb2f332 (patch)
treeb19e29777f917cfbe06b48fd6e161cde09d3a82b /wscript
parentfc8c1fcfb2b66d3a05f6d94f8dfffac34207900c (diff)
downloadmpv-3b8b7cb9d481828953f105f92bacc07a3cb2f332.tar.bz2
mpv-3b8b7cb9d481828953f105f92bacc07a3cb2f332.tar.xz
stream_smb: remove this
This required libsmbclient, which is a heavy dependency, and as a library, has all kinds of problems. For one, the API requires completely unacceptable global state (in particular, leaks auth state), and is not thread-safe (meaning concurrent reads to multiple files block each other). There are better replacements: you can use the Linux kernel's builtin CIFS support, fusesmb, or contribute supoport for libdsm.
Diffstat (limited to 'wscript')
-rw-r--r--wscript7
1 files changed, 0 insertions, 7 deletions
diff --git a/wscript b/wscript
index 7506b1bceb..71574e79ac 100644
--- a/wscript
+++ b/wscript
@@ -327,13 +327,6 @@ iconv support use --disable-iconv.",
'func': check_statement('sys/mman.h',
'memfd_create("mpv", MFD_CLOEXEC | MFD_ALLOW_SEALING)')
}, {
- 'name': '--libsmbclient',
- 'desc': 'Samba support (makes mpv GPLv3)',
- 'deps': 'libdl && gpl',
- 'func': check_pkg_config('smbclient'),
- 'default': 'disable',
- 'module': 'input',
- }, {
'name' : '--lua',
'desc' : 'Lua',
'func': check_lua,