diff options
author | wm4 <wm4@nowhere> | 2017-06-07 20:42:46 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2017-06-07 20:43:59 +0200 |
commit | 11c7775b2cef9b8a285233cc7450cdc323302258 (patch) | |
tree | ea11dc25afe3fb20cd77e65822b1e769935aa144 | |
parent | 6e481d00bd1af654b055b7815eb52fa56c0531a1 (diff) | |
download | mpv-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.
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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', |