From 11c7775b2cef9b8a285233cc7450cdc323302258 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 7 Jun 2017 20:42:46 +0200 Subject: 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. --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wscript') 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', -- cgit v1.2.3