summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-06-07 20:42:46 +0200
committerwm4 <wm4@nowhere>2017-06-07 20:43:59 +0200
commit11c7775b2cef9b8a285233cc7450cdc323302258 (patch)
treeea11dc25afe3fb20cd77e65822b1e769935aa144 /wscript
parent6e481d00bd1af654b055b7815eb52fa56c0531a1 (diff)
downloadmpv-11c7775b2cef9b8a285233cc7450cdc323302258.tar.bz2
mpv-11c7775b2cef9b8a285233cc7450cdc323302258.tar.xz
build: enable cplugins by default
There's probably no reason to keep this disabled. The -rdynamic (and the approach we use) is probably a bit scary, but should not break anything. Just to be sure I'm hard-disabling this on win32 anyway. We know it can't work there in its current form. Fixes #4491.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 346c319c69..1f2bd2fe61 100644
--- a/wscript
+++ b/wscript
@@ -71,7 +71,7 @@ build_options = [
'name': '--cplugins',
'desc': 'C plugins',
'deps': [ 'libdl' ],
- 'default': 'disable',
+ 'deps_neg': [ 'os-win32' ],
'func': check_cc(linkflags=['-rdynamic']),
}, {
'name': 'dlopen',