diff options
author | wm4 <wm4@nowhere> | 2017-10-05 15:54:10 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2017-10-05 15:57:30 +0200 |
commit | 158b69f04cac6685eadd1a96c36f5d1f644c5b0b (patch) | |
tree | 9b80b39cc79aff33f51a018d869ca2862a027dd6 /wscript | |
parent | 4eb8623945909e712eea7002b26773b4b8ab9e87 (diff) |
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-- | wscript | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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', |