有没有人知道是否Minix 3's许可证是GPL兼容的?这是一个BSD风格的许可,但我不完全确定它是否与GPL兼容。
下面是到许可证的链接:http://www.minix3.org/other/license.html
发布于 2016-09-04 17:15:07
这里是MINIX 3许可证:
License
Copyright (c) 1987, 1997, 2006, Vrije Universiteit, Amsterdam,
The Netherlands All rights reserved. Redistribution and use of the MINIX 3
operating system in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the Vrije Universiteit nor the names of the
software authors or contributors may be used to endorse or promote
products derived from this software without specific prior written
permission.
* Any deviations from these conditions require written permission
from the copyright holder in advance
Disclaimer
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS, AUTHORS, AND
CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
NO EVENT SHALL PRENTICE HALL OR ANY AUTHORS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.前三个子句正是BSD 3条款许可证的子句,也就是与GPL兼容。第四条是多余的,除非著作权人明确允许,否则任何其他用途都是侵犯版权的。所以MINIX许可证是与GPL兼容的。
发布于 2013-12-30 22:04:17
Minix 3许可证看起来非常类似于一个比GPL更宽松的标准BSD风格许可证,例如,它将允许商业上使用二进制形式的软件,而不必强制发布源代码。
它被认为是免费软件(就像任何BSD软件一样),但是与GPL不兼容,主要原因是“广告条款”。GPL往往有更多的限制性。换句话说,虽然GPL确实允许软件的商业使用,但它确实强制GPL下的源代码在现在和将来发布(对于任何进一步修改它的人来说)。BSD风格的许可证允许发布一个二进制版本的软件,没有源,无论它是未经修改或已被进一步修改。
https://unix.stackexchange.com/questions/107206
复制相似问题