Using closed source API in a GPL application? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:49:16Z http://stackoverflow.com/feeds/question/528931 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/528931/using-closed-source-api-in-a-gpl-application 3 Using closed source API in a GPL application? Scott W. 2009-02-09T16:48:31Z 2009-02-09T17:16:39Z <p>I want to write an application released as GPLv3 (will be written in .NET), and I'm writing it so others can write extensions as DLL libraries. I'm assuming these will also have to be released as GPLv3, and this is as intended.</p> <p>One of the libraries I want the application to ship with on the first release will be a library that interfaces to a 3rd party application. The 3rd party application provides a free (as in beer) .NET library with API which is really a communication driver to communicate with their 3rd party application.</p> <p>My question - is this OK? I'm assuming it is, otherwise I couldn't write code based on .NET and release it as GPLv3 since .NET is really a collection of libraries with APIs. Am I making sense?</p> http://stackoverflow.com/questions/528931/using-closed-source-api-in-a-gpl-application/528947#528947 4 Answer by Jekke for Using closed source API in a GPL application? Jekke 2009-02-09T16:52:02Z 2009-02-09T16:52:02Z <p>Keep in mind that this is a question you should be asking IP lawyers, not software developers. All we can give is our best guess.</p> <p>My advice would be to read the license that comes with the API in question and, if you have any further questions, contact the API publisher directly. Guessing, even collective guessing, is a bad framework to build software on.</p> http://stackoverflow.com/questions/528931/using-closed-source-api-in-a-gpl-application/528975#528975 1 Answer by DannySmurf for Using closed source API in a GPL application? DannySmurf 2009-02-09T16:58:55Z 2009-02-09T16:58:55Z <p>Although it's unlikely (as others have said) that you could release this as a GPL app, bear in mind that there are other licenses that you could use that are more permissive about what you can do with third-party code, but which still allow you to maintain some control (or not, as you desire) of the source code: linking, etc. LGPL, MPL, BSD license, etc, but</p> http://stackoverflow.com/questions/528931/using-closed-source-api-in-a-gpl-application/529016#529016 4 Answer by Michael Burr for Using closed source API in a GPL application? Michael Burr 2009-02-09T17:10:55Z 2009-02-09T17:10:55Z <p>The GPL already includes provisions for "System Libraries" and certain "Standard Interfaces", which your DLL extension interface might be under. Things like the C runtime, the .NET Framework and POSIX APIs would fall under those exceptions. Your DLL extension interface might fall under the "Standard Interfaces" term.</p> <p>However, if <em>you</em> are writing the application (not modifying an existing GPL application), then you can do whatever you want - it's yours after all.</p> <p>If you're concerned that the DLL extension interface isn't a "a Standard Interface for which an implementation is available to the public in source code form", you might want to write a specific exception to the GPL to allow linking in non-GPL 3rd party libraries for extension DLLs to make it clear and to allow others to provide these extensions. Just be aware the with an exception like that, some developers might try to use it as a loophole for not having to release their modifications by packaging them in an extension DLL.</p> <p>Of course, as with any posting related to licenses or other legal matters, the standard disclaimers apply (IANAL, use at your own risk, this is not advice, this may be completely incorrect, if you try to sue me over this I'll claim I didn't write it (someone must've broken into my SO account), etc., etc., etc.)</p> http://stackoverflow.com/questions/528931/using-closed-source-api-in-a-gpl-application/529040#529040 2 Answer by Jason Baker for Using closed source API in a GPL application? Jason Baker 2009-02-09T17:16:39Z 2009-02-09T17:16:39Z <p>According to the <a href="http://www.gnu.org/licenses/gpl-faq.html" rel="nofollow">FSF's FAQ</a> on the GPL:</p> <p><em>Can I release a program under the GPL which I developed using non-free tools?</em></p> <blockquote> <p>Which programs you used to edit the source code, or to compile it, or study it, or record it, usually makes no difference for issues concerning the licensing of that source code. However, if you link non-free libraries with the source code, that would be an issue you need to deal with. It does not preclude releasing the source code under the GPL, but if the libraries don't fit under the “system library” exception, you should affix an explicit notice giving permission to link your program with them. The FSF can give you advice on doing this.</p> </blockquote> <p>See <a href="http://www.gnu.org/licenses/gpl-faq.html#GPLIncompatibleLibs" rel="nofollow">this entry</a> in the faq for more details (it's a bit involved to paste here).</p> <p><strong>TL;DR</strong> If it's a system library, you can do it. Otherwise, you can affix a notice saying that the end user can link to the closed source library (contact the FSF if you need help with this).</p>