License compatibility

From HandWiki
Short description: Software issue

License compatibility is a legal framework that allows for pieces of software with different software licenses to be distributed together. The need for such a framework arises because the different licenses can contain contradictory requirements, rendering it impossible to legally combine source code from separately-licensed software in order to create and publish a new program.[1][2][failed verification] Proprietary licenses are generally program-specific and incompatible; authors must negotiate to combine code. Copyleft licenses are commonly deliberately incompatible with proprietary licenses, in order to prevent copyleft software from being re-licensed under a proprietary license, turning it into proprietary software. Many copyleft licenses explicitly allow relicensing under some other copyleft licenses. Permissive licenses are (with minor exceptions) compatible with everything, including proprietary licenses; there is thus no guarantee that all derived works will remain under a permissive license.[3]

Definitions

License compatibility can be defined around the concepts of "collective/combined/aggregated work" and "derivative work". The first "collective work" license compatibility definition allows the usage of variously-licensed works in a combined context:

A stronger definition includes the capability to change the license. The most prominent example is the copyleft license's demand that the "derived work" combined from code under various licenses as whole is applied to the copyleft license.


Kinds of combined works

License compatibility for derived works and combined works of a developer's own code and externally developed open-source-licensed code (adapted from Välimäki 2005[4]:119)

A combined work consists of multiple differently-licensed parts (avoiding relicensing). To achieve a combined work including copyleft licensed components (which have a viral property leading potentially to a derived work), proper isolation/separation needs to be maintained.

With individually licensed source code files, multiple non-reciprocal licenses (such as permissive licenses or own proprietary code) can be separated, while the combined compiled program could be re-licensed (but that is not required). Such source-code file separation is too weak for copyleft/reciprocal licenses (such as the GPL), as they then require the complete work to be re-licensed under the reciprocal license as being derivative.

A slightly stronger approach is to have separation at the linking stage with binary object code (static linking), where all the components of the resulting program are part of the same process and address space. This satisfies "weak copyleft/standard reciprocal" combined works (such as LGPL licensed ones), but not "strong copyleft/strong reciprocal" combined works. While it is commonly accepted that linking (static and even dynamic linking) constitutes a derivative of a strong copyleft'd work,[5][6][7][8] there are alternate interpretations.[9][10]

For combined works with "strong copyleft" modules, a stronger isolation is required. This can be achieved by separating the programs by an own process and allowing communication only via binary ABIs or other indirect means.[6] Examples are Android's kernel space-to-user space separation via Bionic, or Linux distros which have proprietary binary blobs included despite having a strong copyleft kernel.[4][11]

While for some domains agreement exists if an isolation is suitable, there are domains in dispute and up to now untested in court. For instance, in 2015 the SFC sued VMware in an ongoing dispute whether loadable kernel modules (LKM's) are derivative works of the GPL'd Linux kernel or not.[12][13]

Compatibility of FOSS licenses

License compatibility between common FOSS software licenses according to David A. Wheeler (2007): the arrows denote a one directional compatibility, therefore better compatibility on the left side than on the right side.[14][self-published source?]

Licenses common to free and open-source software (FOSS) are not necessarily compatible with each other,[15] and this can make it legally impossible to mix (or link) open-source code if the components have different licenses. For example, software that combined code released under version 1.1 of the Mozilla Public License (MPL) with code under the GNU General Public License (GPL) could not be distributed without violating one of the terms of the licenses;[16][better source needed] this despite both licenses being approved by both the Open Source Initiative[17] and the Free Software Foundation.[18]

License compatibility between a copyleft license and another license is often only a one-way compatibility, making the copyleft license (GPL, and most other copyleft licenses) incompatible with proprietary commercial licenses, as well as with many non-proprietary licenses.[19][self-published source?][20][self-published source?] This "one-way compatibility" characteristic has been criticized by the Apache Foundation, which licenses under the more permissive Apache license,[21] such non-copyleft licenses being often less complicated and making for better license compatibility.[22][23]

An example of a license that has excellent compatibility with other FOSS licenses is the Artistic License 2.0, due to its re-licensing clause which allows redistribution of the source code under any other FOSS license.[24]

You may Distribute your Modified Version as Source (either gratis or for a Distributor Fee, and with or without a Compiled form of the Modified Version) [...] provided that you do at least ONE of the following: […]

(c) allow anyone who receives a copy of the Modified Version to make the Source form of the Modified Version available to others under

(i) the Original License or

(ii) a license that permits the licensee to freely copy, modify and redistribute the Modified Version using the same licensing terms that apply to the copy that the licensee received, and requires that the Source form of the Modified Version, and of any works derived from it, be made freely available in that license fees are prohibited but Distributor Fees are allowed. [emphasis added]

The Common Development and Distribution License (CDDL)—a weak copyleft license in-between the GPL license and BSD/MIT permissive licenses—tries to address license compatibility problems by permitting, without re-licensing, the mixing of CDDL-licensed source-code files with source-code files under other licenses by providing that the resulting binary can be licensed and sold under a different license as long as the source code is still available under CDDL.[25][26][27]Template:Ugc

GPL compatibility

To minimize license proliferation and license incompatibilities in the FOSS ecosystem, some organizations (the Free Software Foundation, for instance) and individuals (David A. Wheeler), argue that compatibility with the widely used GPL is an important feature of software licenses.[28][self-published source?] Many of the most common free-software licenses, especially the permissive licenses, such as the original MIT/X license, BSD licenses (in the three-clause and two-clause forms, though not the original four-clause form), MPL 2.0, and LGPL, are GPL-compatible. That is, their code can be combined with a program under the GPL without conflict, and the new combination would have the GPL applied to the whole (but the other license would not so apply).

Copyleft licenses and GPL

Copyleft software licenses are not inherently GPL-compatible; even the GPLv2 license by itself is not compatible with GPLv3 or LGPLv3.[7][29][30] If a developer tried to combine code released under either of the later GPL licenses with GPLv2 code, that would violate section 6 of GPLv2, the source of the incompatibility. However, code under the later licenses can be combined with code licensed under GPL version 2 or later.[31][self-published source?] Most software released under GPLv2 allow you to use the terms of later versions of the GPL as well, and some have exception clauses that allow combining them with software that is under different licenses or license versions.[32] The Linux kernel is a notable exception that is distributed exclusively under the terms of GPLv2.[33][34]

GFDL and GPL

The Free Software Foundation-recommended GNU Free Documentation License[7] is incompatible with the GPL license, and text licensed under the GFDL cannot be incorporated into GPL software.[citation needed] Therefore, the Debian project decided, in a 2006 resolution, to license documentation under the GPL.[35] The FLOSS Manuals foundation followed Debian in 2007.[36] In 2009, the Wikimedia Foundation switched from the GFDL to a Creative Commons CC-BY-SA license as the main license for their projects.[37][38]

RAILs and GPL

Responsible AI Licenses (or RAILs) are generally not compatible with the GPL.[39] This is because RAILs include "use restrictions" that limit the ways users can make use of the materials licensed under RAILs, whereas the GPL prohibits such restrictions.

CDDL and GPL

Another case where GPL compatibility is problematic is the CDDL licensed ZFS file system with the GPLv2 licensed Linux kernel.[40] Despite that both are free software under a copyleft license, ZFS is not distributed with most linux distros like Debian[41][42] (but is distributed with FreeBSD) as the CDDL is considered incompatible with the GPL'ed Linux kernel, by the Free Software Foundation and some parties with relations with the FSF.[18][43] The legal interpretation—of if and when this combination constitutes a combined work or derivative work of the GPLed kernel—is ambiguous and controversial.[44] In 2015, the CDDL to GPL compatibility question reemerged when the linux distribution Ubuntu announced that it would include OpenZFS by default.[45] In 2016, Ubuntu announced that a legal review resulted in the conclusion that it is legally safe to use ZFS as a binary kernel module in Linux.[46] Others accepted Ubuntu's conclusion; for instance lawyer James E.J. Bottomley argued "a convincing theory of harm" cannot be developed, making it impossible to bring the case to court.[47][self-published source] Eben Moglen, co-author of the GPLv3 and founder of the SFLC, argued that while the letters of the GPL might be violated the spirit of both licenses is adhered to, which would be the relevant issue in court.[48] On the other hand, Bradley M. Kuhn and Karen M. Sandler, from the Software Freedom Conservancy, argued that Ubuntu would violate both licenses, as a binary ZFS module would be a derivative work of the Linux kernel, and announced their intent to achieve clarity in this question, even by going to court.[49]

CC BY-SA and GPLv3

On October 8, 2015, Creative Commons concluded that the CC BY-SA 4.0 is inbound compatible with the GPLv3.[50]

Creative Commons license compatibility

The Creative Commons Licenses are widely used for content, but not all combinations of the seven recommended and supported licenses are compatible with each other. Additionally, this is often only a one-way directional compatibility, requiring a complete work to be licensed under the most restrictive license of the parent works.[citation needed]

License compatibility chart for combining or mixing two CC licensed works[51][52]
Public Domain mark icon
CC0 icon
CC-BY icon CC-BY-SA icon CC-by-NC icon
CC-BY-NC-SA icon
CC-BY-NC-ND icon
CC-BY-ND icon
Public Domain mark icon
CC0 icon
Yes Yes Yes Yes No
CC-BY icon Yes Yes Yes Yes No
CC-BY-SA icon Yes Yes Yes No No
CC-by-NC icon
CC-BY-NC-SA icon
Yes Yes No Yes No
CC-BY-NC-ND icon
CC-BY-ND icon
No No No No No

JSON license

JSON developer Douglas Crockford, inspired by the words of then President Bush, formulated the "evil-doers" JSON license ("The Software shall be used for Good, not Evil.") This subjective and moral license clause led to license incompatibility problems with other open source licenses,[53] and resulted in the JSON license not being a free and open-source license.[54][55][56]

Re-licensing for compatibility

Sometimes projects wind up with incompatible licenses, and the only feasible way to solve it is the re-licensing of the incompatible parts. Re-licensing is achieved by contacting all involved developers and other parties and getting their agreement for the changed license. While in the free and open-source domain achieving 100% agreement is often impossible, due to the many contributors involved, the Mozilla re-licensing project assumes that achieving 95% is enough for the re-licensing of the complete code base.[57][unreliable source?] Others in the FOSS domain, such as Eric S. Raymond, came to different conclusions regarding the requirements for re-licensing of an entire code base.[58]

Re-licensing examples

An early example of a project that successfully re-licensed for license incompatibility reasons is the Mozilla project and their Firefox browser. The source code of Netscape's Communicator 4.0 browser was originally released in 1998 under the Netscape Public License/Mozilla Public License[59] but was criticised by the Free Software Foundation (FSF) and OSI for being incompatible with the GNU General Public License (GPL).[60][61] Around 2001 Time Warner, exercising its rights under the Netscape Public License, and at the request of the Mozilla Foundation, re-licensed[62] all code in Mozilla that was under the Netscape Public License (including code by other contributors) to an MPL 1.1/GPL 2.0/LGPL 2.1 tri-license, thus achieving GPL-compatibility.[63][self-published source?]

The Vorbis library was originally licensed as LGPL, but in 2001, with the endorsement of Richard Stallman, the license was changed to the less restrictive BSD license, to accelerate the library's adoption.[64][65]

The VLC project has a complicated license history due to license incompatibility, and in 2007 the project decided, for license compatibility, to not upgrade to the just released GPLv3.[66] In October 2011, after the VLC had been removed from the Apple App Store at the start of 2011, the VLC project re-licensed the VLC library, from the GPLv2 to the LGPLv2, to achieve better compatibility.[67][68] In July 2013, the software re-licensed under the Mozilla Public License, the VLC application would then be resubmitted to the iOS App Store.[69]

The Free Software Foundation's GNU Free Documentation License version 1.2 is not compatible with the widely used Creative Commons Attribution-ShareAlike license, which was a problem for Wikipedia, for instance.[70][self-published source?] Therefore, at the request of the Wikimedia Foundation, the FSF added a time-limited section, to version 1.3 of the GFDL, that allowed specific types of websites using the GFDL to additionally offer their work under the CC BY-SA license.[71] Following this, in June 2009, the Wikimedia Foundation migrated their projects (Wikipedia, etc.) by dual licensing to the Creative Commons Attribution-ShareAlike as its main license, in addition to the previously used GFDL,[37] so as to have improved license compatibility with the greater free content ecosystem.[38][72]

Another interesting case was Google's re-licensing of GPLv2-licensed Linux kernel header files to the BSD license for their Android library Bionic. Google claimed that the header files were clean of any copyright-able work, reducing them to non-copyrightable "facts", and thus not covered by the GPL.[73][74] This interpretation was challenged by Raymond Nimmer, a law professor at the University of Houston Law Center.[75] Apps and drivers of Android, which provide an increasing amount of Android's functionality, have been gradually relicensed from permissive to proprietary licenses.[76]

In 2014, the FreeCAD project changed their license from GPL to LGPLv2, due to GPLv3/GPLv2 incompatibilities.[77][78] Also in 2014, Gang Garrison 2 was re-licensed from GPLv3 to MPL for improved library compatibility.[79][80]

The KaiOS mobile operating system was derived from the Firefox OS/Boot to Gecko operating system, which was released under the permissive MPL 2.0. It does not redistribute itself under the same license, so it is now presumably relicensed, and proprietary (but still mostly open-source).[81][82] KaiOS also uses the GPL Linux kernel also used in Android.[83]

See also

References

  1. O'Riordan, Ciaran (2006-11-10). "How GPLv4 tackles license proliferation". LinuxDevices.com. http://www.linuxdevices.com/articles/AT7188273245.html/. 
  2. Neary, Dave (2012-02-15). "Gray areas in software licensing". Eklektix. https://lwn.net/Articles/481386/. 
  3. Stallman, Richard (2021-12-29). "License Compatibility and Relicensing" (in en). https://www.gnu.org/licenses/license-compatibility.en.html. 
  4. 4.0 4.1 Välimäki, Mikko (2005). The Rise of Open Source Licensing: A Challenge to the Use of Intellectual Property in the Software industry (Ph.D. thesis). Helsinki University of Technology. Retrieved 2015-12-30.
  5. Lewis Galoob Toys, Inc. v. Nintendo of America, Inc., 964 F.2d 965, ¶10 (9th Cir. 21 May 1992).
  6. 6.0 6.1 "Frequently Asked Questions about version 2 of the GNU GPL". Free Software Foundation. 2015-05-29. https://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html#MereAggregation. "What constitutes combining two parts into one program? This is a legal question, which ultimately judges will decide. We believe that a proper criterion depends both on the mechanism of communication […] and the semantics of the communication […]. If the modules are included in the same executable file, they are definitely combined in one program. If modules are designed to run linked together in a shared address space, that almost surely means combining them into one program. […]" 
  7. 7.0 7.1 7.2 "Frequently Asked Questions about the GNU Licenses". Free Software Foundation. 2016-05-26. https://www.gnu.org/licenses/gpl-faq.html#AllCompatibility. "'Use a library' means […] linking […]." 
  8. "The origins of Linux and the LGPL". https://www.freebsd.org/doc/en/articles/bsdl-gpl/origins-lgpl.html. "Remember that the GPL requires anything that statically links to any code under the GPL also be placed under the GPL." 
  9. Torvalds, Linus (2006-12-17). "Re: GPL only modules" (email message). https://lkml.org/lkml/2006/12/17/79. 
  10. Rosen, Lawrence (2003-01-01). "Derivative Works". http://www.linuxjournal.com/article/6366. 
  11. Troan, Larry (2005). "Open Source from a Proprietary Perspective". Red Hat Summit 2006. Red Hat. https://www.redhat.com/f/summitfiles/presentation/May31/Open%20Source%20Dynamics/Troan_OpenSourceProprietyPersp.pdf. 
  12. Williamson, Aaron (5 March 2015). "New Lawsuit Targets 'Shims' Between Linux and Proprietary Code". http://torekeland.com/blog/new-lawsuit-targets-shims-between-linux-and-proprietary-code. 
  13. "Conservancy Announces Funding for GPL Compliance Lawsuit". 2015-03-05. http://sfconservancy.org/news/2015/mar/05/vmware-lawsuit/. 
  14. Wheeler, David A. (2007-09-27). "The Free-Libre / Open Source Software (FLOSS) License Slide". http://www.dwheeler.com/essays/floss-license-slide.html. 
  15. Gordon, Thomas F. (2010-06-15). "Report on Problem Scope and Definition about OSS License Compatibility". Qualipso. http://www.osscc.net/pdf/QualipsoA1D113.pdf. 
  16. "MPL 1.1 FAQ - Historical Use Only". https://www.mozilla.org/MPL/1.1/FAQ.html. 
  17. "Open Source Initiative OSI - Mozilla Public License 1.1 (MPL-1.1) :Licensing". Open Source Initiative. http://www.opensource.org/licenses/MPL-1.1. 
  18. 18.0 18.1 "GPL-Incompatible Free Software Licenses". Free Software Foundation. 2016-07-08. https://www.gnu.org/licenses/license-list.html#GPLIncompatibleLicenses. 
  19. Bezroukov, Nikolai. "Comparative merits of GPL, BSD and Artistic licences (Critique of Viral Nature of GPL v.2 - or In Defense of Dual Licensing Idea)". http://icfcst.kiev.ua/panorama/OSS/bsd_vs_gpl.shtml. "Viral property stimulates proliferation of licenses and contributes to the 'GPL-enforced nightmare' -- a situation when many other licenses are logically incompatible with the GPL and make life unnecessary difficult for developers working in the Linux environment (KDE is a good example here, Python is a less known example)." 
  20. Fogel, Karl. "The GPL and License Compatibility". Producing Open Source Software - How to Run a Successful Free Software Project. http://producingoss.com/en/license-compatibility.html#idp10181728. "The GPL and license compatibility - Because the primary goal of the GPL's authors is the promotion of free software, they deliberately crafted the license to make it impossible to mix GPLed code into proprietary programs. […] Any derivative work—that is, any work containing a nontrivial amount of GPLed code—must itself be distributed under the GPL. No additional restrictions may be placed on the redistribution of either the original work or a derivative work." 
  21. "Apache License v2.0 and GPL compatibility". Apache Software Foundation. https://www.apache.org/licenses/GPL-compatibility.html. "Apache 2 software can therefore be included in GPLv3 projects, because the GPLv3 license accepts our software into GPLv3 works. However, GPLv3 software cannot be included in Apache projects. The licenses are incompatible in one direction only, and it is a result of ASF's licensing philosophy and the GPLv3 authors' interpretation of copyright law." 
  22. Hanwell, Marcus D. (2014-01-28). "Should I use a permissive license? Copyleft? Or something in the middle?". http://opensource.com/business/14/1/what-license-should-i-use-open-source-project. "Permissive licensing simplifies things One reason the business world, and more and more developers […], favor permissive licenses is in the simplicity of reuse. The license usually only pertains to the source code that is licensed and makes no attempt to infer any conditions upon any other component, and because of this there is no need to define what constitutes a derived work. I have also never seen a license compatibility chart for permissive licenses; it seems that they are all compatible." 
  23. "Licence Compatibility". European Union Public Licence. Joinup. 2015-06-11. https://joinup.ec.europa.eu/software/page/licence_compatibility_and_interoperability. "The licences for distributing free or open source software (FOSS) are divided in two families: permissive and copyleft. Permissive licences (BSD, MIT, X11, Apache, Zope) are generally compatible and interoperable with most other licences, tolerating to merge, combine or improve the covered code and to re-distribute it under many licences (including non-free or proprietary)." 
  24. "Interview with Allison Randal about Artistic License 2.0". https://www.theperlreview.com/Interviews/allison-randal-artistic-license.html. 
  25. "Common Development and Distribution License (CDDL) Description and High-Level Summary of Changes". http://www.sun.com/cddl/CDDL_why_summary.html. 
  26. Tan, Aaron (2005-09-14). "McNealy: CDDL is 'best of both worlds'". http://www.zdnet.com/article/mcnealy-cddl-is-best-of-both-worlds/. 
  27. "Common Development and Distribution License (CDDL-1.0)". FOSSA. https://tldrlegal.com/license/common-development-and-distribution-license-%28cddl-1.0%29-explained. 
  28. Wheeler, David A. (2014-02-16). "Make Your Open Source Software GPL-Compatible. Or Else.". http://www.dwheeler.com/essays/gpl-compatible.html. 
  29. Chisnall, David (2009-08-31). "The Failure of the GPL". Pearson Education. http://www.informit.com/articles/article.aspx?p=1390172&seqNum=3. "The GPL places additional restrictions on the code, and therefore is incompatible. You can combine APSL, MPL, CDDL, Apache, and BSD-licensed code in the same project easily, but you can only combine one of these with GPLv2 code. Even the Free Software Foundation can't manage to get it right. Version 3 of the LGPL, for example, is incompatible with version 2 of the GPL. This has caused a problem recently for a few GNU library projects that wanted to move to LGPLv3 but were used by other projects that were GPLv2-only." 
  30. Asay, Clark D.. "The General Public License Version 3.0: Making or Breaking the Foss Movement". Michigan Telecommunications and Technology Law Review (The University of Michigan Law School) 14 (2). http://repository.law.umich.edu/cgi/viewcontent.cgi?article=1074&context=mttlr. 
  31. Landley, Rob. "CELF 2013 Toybox talk" (raw text). landley.net. http://landley.net/talks/celf-2013.txt. "GPLv3 broke 'the' GPL into incompatible forks that can't share code." 
  32. "GPL-Compatible Free Software Licenses". Free Software Foundation. 2014-11-20. https://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses. 
  33. Torvalds, Linus. "COPYING". kernel.org. https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/tree/COPYING. "Also note that the only valid version of the GPL as far as the kernel is concerned is _this_ particular version of the license (ie v2, not v2.2 or v3.x or whatever), unless explicitly otherwise stated." 
  34. Linus Torvalds (8 September 2000). "Linux-2.4.0-test8". lkml.iu.edu. http://lkml.iu.edu/hypermail/linux/kernel/0009.1/0096.html. "The only one of any note that I'd like to point out directly is the clarification in the COPYING file, making it clear that it's only _that_particular version of the GPL that is valid for the kernel. This should not come as any surprise, as that's the same license that has been there since 0.12 or so, but I thought I'd make that explicit" 
  35. "Resolution: Why the GNU Free Documentation License is not suitable for Debian". 2006-03-12. http://www.debian.org/vote/2006/vote_001.en.html#amendmenttexta. 
  36. "License Change". 2007-06-06. http://en.flossmanuals.net/bin/view/Blog/LicenseChange. 
  37. 37.0 37.1 "Resolution:Licensing update approval". 2009-05-23. https://wikimediafoundation.org/wiki/Resolution:Licensing_update_approval. 
  38. 38.0 38.1 Linksvayer, Mike (2009-06-22). "Wikipedia + CC BY-SA = Free Culture Win!". https://creativecommons.org/weblog/entry/15411. 
  39. Contractor, Danish; McDuff, Daniel; Haines, Julia Katherine; Lee, Jenny; Hines, Christopher; Hecht, Brent; Vincent, Nicholas; Li, Hanlin (2022). "Behavioral Use Licensing for Responsible AI". 2022 ACM Conference on Fairness, Accountability, and Transparency. pp. 778–788. doi:10.1145/3531146.3533143. ISBN 9781450393522. https://dl.acm.org/doi/fullHtml/10.1145/3531146.3533143. 
  40. "2.2 What is the licensing concern?". http://zfsonlinux.org/faq.html#WhatAboutTheLicensingIssue. 
  41. Xu, Aron (2014-08-28). "[zfs-discuss Summary of ZFS on Linux for Debian (was: zfs-linux_0.6.2-1_amd64.changes REJECTED)"] (email message). http://list.zfsonlinux.org/pipermail/zfs-discuss/2014-August/018505.html. "Upstream ZoL project [3] holds the view that in this case the combination of the two in the same binary would create a derived work, so this is not acceptable for redistribution. We accept the interpretation that this last case is not acceptable for redistribution. Therefore our package does not (and never will) ship or facilitate building a custom kernel where the ZoL ZFS driver is built-in in a monolithic binary, instead of built as an independent dynamic LKM." 
  42. Tagliamonte, Paul Richards (2014-08-26). "Pkg-zfsonlinux-devel -zfs-linux_0.6.2-1_amd64.changes REJECTED". http://comments.gmane.org/gmane.linux.file-systems.zfs.user/18380. "Our consensus was that this package appears to violate the spirit of the GPL at the minimum, and may cause legal problems. Judges often interpret documents as they're intended to read, hacks to comply with the letter but not the intent are not looked upon fondly. This may be a hard thing for technical folks to accept, but in legal cases, one usually isn't dealing with technical people. As such, this package has been rejected." 
  43. jake (2014-09-11). "Yao: The State of ZFS on Linux". Eklektix. https://lwn.net/Articles/611657/. 
  44. Jaeger, Till (2005-03-01) (in de). Die GPL commenters und erklärt. Institut für Rechtsfragen der Freien und Open Source Software. pp. 70. ISBN 3-89721-389-3. http://www.oreilly.de/german/freebooks/gplger/pdf/025-168.pdf. Retrieved 2016-01-12. "In der Praxis ist stark unwritten, ob in Kernel module as 'derivative work' retracted warden muss. Die Auseinandersetzungen um Binär-Treiber für Linux warden it Heftiest geführt. Man word world night für sämtliche Kernel module in einheitliche Antwort find können: Wann in Kernel module von Linux »abgeleitet« ist, hängt stark von der Technische Umsetzung ab und Richter sick each den on dark leg ten Kriterien. […] Es exist even alluding much Kernelmodule, die älter and as Linux, two das Dateisystem AFS. Dort light es Auf der Hand, dass sie as functional eigenständig Anzu then send, da sie gear night »für Linux« GE Chr Eben sein können." 
  45. Larabel, Michael (2015-08-06). "Ubuntu Is Planning To Make The ZFS File-System A 'Standard' Offering". https://www.phoronix.com/scan.php?page=news_item&px=Ubuntu-ZFS-Standard-Plans. 
  46. Kirkland, Dustin (2016-02-10). "ZFS Licensing and Linux". Canonical. https://insights.ubuntu.com/2016/02/18/zfs-licensing-and-linux/. 
  47. Bottomley, James E.J. (2016-02-23). "Are GPLv2 and CDDL incompatible?". http://blog.hansenpartnership.com/are-gplv2-and-cddl-incompatible/. "What the above analysis shows is that even though we presumed combination of GPLv2 and CDDL works to be a technical violation, there’s no way actually to prosecute such a violation because we can’t develop a convincing theory of harm resulting. Because this makes it impossible to take the case to court, effectively it must be concluded that the combination of GPLv2 and CDDL, provided you’re following a GPLv2 compliance regime for all the code, is allowable." 
  48. Moglen, Eben; Choudhary, Mishi (2016-02-26). "The Linux Kernel, CDDL and Related Issues". https://softwarefreedom.org/resources/2016/linux-kernel-cddl.html. 
  49. Kuhn, Bradley M.; Sandler, Karen M. (2016-02-25). "GPL Violations Related to Combining ZFS and Linux". https://sfconservancy.org/blog/2016/feb/25/zfs-and-linux/. "Ultimately, various Courts in the world will have to rule on the more general question of Linux combinations. The conservancy is committed to working towards achieving clarity on these questions in the long term. That work began in earnest last year with the VMware lawsuit, and our work in this area will continue indefinitely, as resources permit. We must do so, because, too often, companies are complacent about compliance. While we and other community-driven organisations have historically avoided lawsuits at any cost in the past, the absence of litigation on these questions caused many companies to treat the GPL as a weaker copyleft than it actually is. […] Conservancy (as a Linux copyright holder ourselves),[citation needed] along with the members of our coalition in the GPL Compliance Project for Linux Developers, all agree that Canonical and others infringe Linux copyrights when they distribute zfs.ko." 
  50. "Compatible Licenses". https://creativecommons.org/2015/10/08/cc-by-sa-4-0-now-one-way-compatible-with-gplv3/. "GPLv3: The GNU General Public License version 3 was declared a 'BY-SA–Compatible License' for version 4.0 on 8 October 2015. Note that compatibility with the GPLv3 is one-way only, which means you may license your contributions to adaptations of BY-SA 4.0 materials under GPLv3, but you may not license your contributions to adaptations of GPLv3 projects under BY-SA 4.0." 
  51. "Frequently Asked Questions". 2016-07-14. https://creativecommons.org/faq/#can-i-combine-material-under-different-creative-commons-licenses-in-my-work. 
  52. Creative Commons licenses without a non-commercial or no-derivatives requirement, including public domain/CC0, are all cross-compatible. Non-commercial licenses are compatible with each other and with less restrictive licenses, except for Attribution-ShareAlike. No-derivatives licenses are not compatible with any license, including themselves.
  53. Apache and the JSON license on LWN.net by Jake Edge (November 30, 2016)
  54. JSON on gnu.org
  55. JSON License considered harmful by Tanguy Ortolo (09-03-2012)
  56. JSON License No on Fedoraproject.org
  57. O’Riordan, Ciaran (2006-10-06). "(About GPLv3) Can the Linux Kernel Relicense?". Free Software Foundation Europe. http://blogs.fsfe.org/ciaran/?p=58. "Someone who works with many lawyers on free software copyright issues later told me that it is not necessary to get permission from 100% of the copyright holders. It would suffice if there was permission from the copyright holders of 95% of the source code and no objections from the holders of the other 5%. This, I’m told, is how Mozilla was able to re-license to the GPL in 2003 despite years of community contributions." 
  58. Raymond, Eric Steven; Raymond, Catherine Olanich. "Licensing HOWTO". http://www.catb.org/~esr/Licensing-HOWTO.html. "Changing an existing license […] You can change the license on a piece of code under any of the following conditions: If you are the sole copyright holder […] If you are the sole registered copyright holder […] If you obtain the consent of all other copyright holders […] If no other copyright holder could be harmed by the change." 
  59. "Netscape Public License FAQ". https://www.mozilla.org/mpl/MPL/NPL/1.0/FAQ.html. 
  60. "Licenses by Name". http://opensource.org/licenses/alphabetical. 
  61. Stallman, Richard (2015-12-14). "On the Netscape Public License". Free Software Foundation. https://www.gnu.org/philosophy/netscape-npl.html. 
  62. "Mozilla Re-licensing FAQ Version 1.1". 2007-08-14. https://www.mozilla.org/MPL/relicensing-faq.html. "Some time ago mozilla.org announced its intent to seek re-licensing of Mozilla code under a new licensing scheme that would address perceived incompatibilities of the Mozilla Public License (MPL) with the GNU General Public License (GPL) and GNU Lesser General Public License (LGPL)." 
  63. Markham, Gervase (2006-03-31). "Re-licensing Complete". http://blog.gerv.net/2006/03/relicensing_complete/. 
  64. Moffitt, Jack (2001-02-26). "[vorbis Xiph.org announces Vorbis Beta 4 and the Xiph.org Foundation"] (email message). http://lists.xiph.org/pipermail/vorbis/2001-February/001758.html. "With the Beta 4 release, the Ogg Vorbis libraries have moved to the BSD license. The change from LGPL to BSD was made to enable the use of Ogg Vorbis in all forms of software and hardware. Jack Moffitt says, 'We are changing the license in response to feedback from many parties. It has become clear to us that adoption of Ogg Vorbis will be accelerated even further by the use of a less restrictive license that is friendlier toward proprietary software and hardware systems. We want everyone to be able to use Ogg Vorbis.'" 
  65. Stallman, Richard (2001-02-26). "RMS on the Ogg Vorbis license" (email message). https://lwn.net/2001/0301/a/rms-ov-license.php3. 
  66. Denis-Courmont, Rémi. "VLC media player to remain under GNU GPL version 2". VideoLAN. http://www.videolan.org/press/2007-1.html. "In 2001, VLC was released under the OSI-approved GNU General Public version 2, with the commonly-offered option to use 'any later version' thereof (though there was not any such later version at the time). Following the release by the Free Software Foundation (FSF) of the new version 3 of its GNU General Public License (GPL) on the 29th of June 2007, contributors to the VLC media player, and other software projects hosted at videolan.org, debated the possibility of updating the licensing terms for future version of the VLC media player and other hosted projects, to version 3 of the GPL. […] There is strong concern that these new additional requirements might not match the industrial and economic reality of our time, especially in the market of consumer electronics. It is our belief that changing our licensing terms to GPL version 3 would currently not be in the best interest of our community as a whole. Consequently, we plan to keep distributing future versions of VLC media player under the terms of the GPL version 2. […] we will continue to distribute the VLC media player source code under GPL 'version 2 or any later version' until further notice." 
  67. Kempf, Jean-Baptiste (2011-09-07). "Changing the VLC engine license to LGPL". http://www.videolan.org/press/lgpl.html. 
  68. Vaughan-Nichols, Steven J. (2011-01-08). "No GPL Apps for Apple's App Store". http://www.zdnet.com/blog/open-source/no-gpl-apps-for-apples-app-store/8046. 
  69. Johnston, Casey (2013-07-18). "VLC media player returns to the iOS App Store after 30-month hiatus". https://arstechnica.com/apple/2013/07/vlc-media-player-returns-to-the-ios-app-store-after-30-month-hiatus/. 
  70. Ménard, Delphine. "Why the Wikimedia projects should not use GFDL as a stand alone license for images". http://notablog.notafish.com/post/2005/04/21/26-why-the-wikimedia-projects-should-not-use-gfdl-as-a-stand-alone-license-for-images. 
  71. "GFDL v1.3 FAQ". Free Software Foundation. 2014-04-12. https://www.gnu.org/licenses/fdl-1.3-faq.html. 
  72. Moeller, Erik (2009-06-30). "Licensing update rolled out in all Wikimedia wikis". http://blog.wikimedia.org/2009/06/30/licensing-update-rolled-out-in-all-wikimedia-wikis/. "Perhaps the most significant reason to choose CC-BY-SA as our primary content license was to be compatible with many of the other admirable endeavors out there to share and develop free knowledge." 
  73. Metz, Cade (2011-03-29). "Google's 'clean' Linux headers: Are they really that dirty?". https://www.theregister.co.uk/2011/03/29/google_android_and_the_linux_headers/. 
  74. Proffitt, Brian (2011-03-21). "Android: Sued by Microsoft, not by Linux". http://www.itworld.com/article/2744480/open-source-tools/android--sued-by-microsoft--not-by-linux.html. "Microsoft launches new Android suit, Linus Torvalds' take on Linux kernel headers and Android" 
  75. Nimmer, Raymond (2011). "Infringement and disclosure risk in development on copyleft platforms". http://www.ipinfoblog.com/archives/licensing-law-issues-infringement-and-disclosure-risk-in-development-on-copyleft-platforms.html/. 
  76. Amadeo, Ron (21 July 2018). "Google's iron grip on Android: Controlling open source by any means necessary" (in en-us). https://arstechnica.com/gadgets/2018/07/googles-iron-grip-on-android-controlling-open-source-by-any-means-necessary/. 
  77. Prokoudine, Alexandre (2012-12-27). "LibreDWG drama: the end or the new beginning?". http://libregraphicsworld.org/blog/entry/libredwg-drama-the-end-or-the-new-beginning. "[…] the unfortunate situation with support for DWG files in free CAD software via LibreDWG. We feel, by now it ought to be closed. We have the final answer from FSF. […] 'We are not going to change the license.'" 
  78. "License". http://www.freecadweb.org/wiki/index.php?title=Licence. "Licences used in FreeCAD - FreeCAD uses two different licenses, one for the application itself, and one for the documentation: Lesser General Public Licence, version 2 or superior (LGPL2+) […] Open Publication Licence" 
  79. "License.txt". Gang-Garrison-2. GitHub. 2014-11-09. https://github.com/Medo42/Gang-Garrison-2/blob/master/License.txt. 
  80. MedO (2014-08-23). "Planned license change (GPL -> MPL), Help needed" (forum post). http://www.ganggarrison.com/forums/index.php?topic=35995.0. "tl;dr: The current license prevents us from using certain nice and (cost-)free libraries / frameworks, so we want to change it. The new license (MPL) would be strictly more free than the old one, and is the same one that's also used by Firefox." 
  81. "Can I access the source code? : KaiOS". https://support.kaiostech.com/support/solutions/articles/35000078432-can-i-access-the-source-code-. 
  82. "KaiOS/B2G repository". 3 June 2021. https://github.com/kaiostech/gecko-b2g. 
  83. "KaiOS is doing well in India, but it's pulling some big numbers in US too". 1 March 2019. https://www.androidauthority.com/kaios-usa-india-958519/. 

External links