summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-10-05 15:54:10 +0200
committerwm4 <wm4@nowhere>2017-10-05 15:57:30 +0200
commit158b69f04cac6685eadd1a96c36f5d1f644c5b0b (patch)
tree9b80b39cc79aff33f51a018d869ca2862a027dd6 /wscript
parent4eb8623945909e712eea7002b26773b4b8ab9e87 (diff)
downloadmpv-158b69f04cac6685eadd1a96c36f5d1f644c5b0b.tar.bz2
mpv-158b69f04cac6685eadd1a96c36f5d1f644c5b0b.tar.xz
build: switch preliminary LGPL mode from v3 to v2.1
iive agreed to relicense things that are still in mpv to LGPLv2.1. So change the licenses of the affected files, and rename the configure switch for LGPL mode to --enable-preliminary-lgpl2. (The "preliminary" part will probably be removed from the configure switch soon as well.) Also player/main.c hasn't had GPL parts since a few commits ago.
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/wscript b/wscript
index 941131cf4c..107db6ca50 100644
--- a/wscript
+++ b/wscript
@@ -27,14 +27,14 @@ Dependency identifiers (for win32 vs. Unix):
build_options = [
{
- 'name': '--preliminary-lgpl3',
- 'desc': 'Preliminary LGPLv3+ license',
+ 'name': '--preliminary-lgpl2',
+ 'desc': 'Preliminary LGPLv2.1+ license',
'default': 'disable',
'func': check_true,
}, {
'name': 'gpl',
'desc': 'GPL build',
- 'deps': '!preliminary-lgpl3',
+ 'deps': '!preliminary-lgpl2',
'func': check_true,
}, {
'name': 'libaf',