I read this question with answers and I really want to be cleared up a little on GPL.

The basic question is this.

If I use source or compiled source(dll) released under GPL in an application do I have to distribute all the source of my application?

I think the answer(s) to the question hinges on the word "use".

So here's an example.

I'm creating an application called CluelessApplication that does some stuff.

I find an open source project called AwesomeOpenSourceStuff online with source code and binaries. It has some functions that would help me provide needed functionality in the application I'm building.

I download it and add it as a reference into my project. I create other classes in MY project create an awesome UI and all kinds of frills. My extent of using AwesomeOpenSourceStuff is making a couple calls to the functions of the classes within it.

When I build the application it creates two files in the output folder:

  • CluelessApplication.exe
  • AwesomeOpenSourceStuff.dll

I then want to distribute my new application. Can I distribute my application under a proprietary license? or am i required to release all my code under GPL?

Another related question is. What constitutes distributing? What if a company does the above and then just allows internal employees to use the software without ever "selling" it. Is that distributing and therefore requires to license under GPL?

As I'm writing this out, I'm guessing that the answer is that it has to be GPL, but I'd like to hear the public opinion.

link|improve this question

73% accept rate
feedback

5 Answers

up vote 2 down vote accepted

I'm not a lawyer but, your options seem to be

  • CluelessApplication.exe (Proprietary)
  • AwesomeOpenSourceStuff.dll (LGPL)

or

  • CluelessApplication.exe (GPL)
  • AwesomeOpenSourceStuff.dll (GPL)

or

  • CluelessApplication.exe (Proprietary)
  • AwesomeOpenSourceStuff.EXE (GPL)

"if the program uses only simple fork and exec to invoke and communicate with plug-ins, then the plug-ins are separate programs, so the license of the plug-in makes no requirements about the main program." (http://www.gnu.org/licenses/gpl-faq.html#NFUseGPLPlugins)

For example if Linux (GPL) executes CluelessApplication.exe (that is not GPL), CluelessApplication.exe does not become GPL.

Hope it helps

link|improve this answer
feedback

1) The FSF believes that you have to use the GPL if your code uses a GPLed dynamic library:

http://www.gnu.org/licenses/gpl-faq.html#NFUseGPLPlugins

2) If you have internal code using a GPL library, then you are not required to release it under the GPL:

http://www.gnu.org/licenses/gpl-faq.html#GPLRequireSourcePostedPublic

(IANAL)

link|improve this answer
feedback

If you don't want to get into "GPL Violation" then don't use GPL components in any way in closed source application. If it is internal application then you can do whatever you want. If you really-really want to use that GPL component try to contact author, may be you can find a compromise.

link|improve this answer
1  
Even GNU states that there are legitimate ways of using GPL components in non-GPL applications. See gnu.org/licenses/gpl-faq.html#NFUseGPLPlugins – Erik Mar 4 '11 at 18:19
@Erik how do you plan to fork in .net? – Andrey Mar 4 '11 at 18:33
I'm not a .net person, but I would assume that basic functionality such as creating a process and perhaps redirecting it's stdout is possible in .net :) – Erik Mar 4 '11 at 18:34
feedback

This exact scenario is contested, but to be on the safe side you should follow this basic rule:

If the GPL code is removed entirely from your application, it should still run but with reduced functionality.

ALSO: IANAL, and you likely should ask one.

EDIT: See e.g. http://gnuwin32.sourceforge.net/faq.html#%23faq9

link|improve this answer
well, why would you mess with GPL if your app can work without that piece? – Andrey Mar 4 '11 at 18:10
To add functionality. A better image processor than your default, a better HTML renderer than your homebrew one, more video formats supported... – Erik Mar 4 '11 at 18:11
feedback

Another consideration, which nobody has mentioned so far, is which particular GPL the AwesomeOpenSourceStuff project is using - LGPL, GPL2, GPL3, etc. There is more than one GPL!

link|improve this answer
1  
Good point, but this would perhaps be better as a comment asking for clarification instead of an answer – Cameron Mar 5 '11 at 0:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.