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.