Clarify license

fixes #1174
This commit is contained in:
Wim Taymans 2021-05-14 12:09:33 +02:00
parent 170294d7ac
commit 31d79f4c9b
3 changed files with 12 additions and 3 deletions

View file

@ -1,3 +1,11 @@
All PipeWire source files are licensed under the MIT License. All PipeWire source files are licensed under the MIT License.
(see file COPYING for details) (see file COPYING for details)
With the exception of:
libspa-alsa.so in spa/plugins/alsa, which contains LGPL code from
Pulseaudio and is thus licensed as LGPL.
libjackserver.so with links against the GPL2 jack/control.h, which
makes it GPL2

View file

@ -188,8 +188,9 @@ The Wiki can be found [here](https://gitlab.freedesktop.org/pipewire/pipewire/-/
## Contributing ## Contributing
PipeWire is Free Software and is developed in the open. It is licensed under PipeWire is Free Software and is developed in the open. It is mostly
the [MIT license](COPYING). licensed under the [MIT license](COPYING). Check [LICENSE](LICENSE) for
more details about the exceptions.
Contributors are encouraged to submit merge requests or file bugs on Contributors are encouraged to submit merge requests or file bugs on
[gitlab](https://gitlab.freedesktop.org/pipewire). [gitlab](https://gitlab.freedesktop.org/pipewire).

View file

@ -1,6 +1,6 @@
project('pipewire', ['c' ], project('pipewire', ['c' ],
version : '0.3.27', version : '0.3.27',
license : 'MIT', license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ],
meson_version : '>= 0.49.0', meson_version : '>= 0.49.0',
default_options : [ 'warning_level=3', default_options : [ 'warning_level=3',
'c_std=gnu99', 'c_std=gnu99',