vote up 3 vote down star

If I've got some code that I'd like to share and make open source.

I'm not a lawyer. What are the big differences between these choices?

  • LGPL - GNU Lesser General Public License
  • MIT License
  • Apache License
flag

68% accept rate
Of these three, Apache License is the only one, that prevents your source from being infected with GPL. – vartec Apr 14 at 21:47
The GPL cannot infect code. The GPL only requires that if you distribute code linked to GPLd code, the whole work be available under the GPL. If you remove the GPLd code, you can distribute the work under any license you want (as long as you own that code). – Brian Campbell Apr 14 at 21:53
So what would happen if you want to use the MIT license on a project but include and distribute NHibernate (LGPL) with it? – B. Tyndall Apr 15 at 15:37
Good question, although a bit general. I think that if you include a LGPL lib in your project, your project is GPL automatically (infected, as vartec says). – yar Jul 13 at 10:35

3 Answers

vote up 10 vote down check

This might help you.

link|flag
+1 Really cool chart. – B. Tyndall Apr 15 at 15:34
vote up 2 vote down

The MIT license is liberal and short, basically it just prevents you from claiming that you wrote the code and suing the author because something in her code was wrong.

LGPL is a license that adds some facilities[*] to the GPL. GPL forces the people who use the code in a project to release the whole project under GPL. With LGPL, there's no such obligation if the code is linked to your project (generally we say that it has to be done dynamically, e.g. through a DLL or shared object, but I'm not sure this is a fact).
Note that nobody really understands GPL, even lawyers. From what I've understood from this book, whether your project must be released under GPL or not depends on how we define “derivative work”, which apparently hasn't been stated in court yet.

I don't know anything about the Apache license.

[*] I don't think this is the right word (English isn't my native language). Don't hesitate to edit.

link|flag
+1 thanks for the input. didn't know there was a book like this on the topic. cool. – B. Tyndall Apr 15 at 15:33
vote up 1 vote down

Personally, I've been checking this out

http://en.wikipedia.org/wiki/Comparison_of_free_software_licenses

which is the first hit in Google, too.

link|flag
thanks. good info +1 – B. Tyndall Jul 14 at 12:17
sure thing, good luck! – yar Jul 14 at 15:07

Your Answer

Get an OpenID
or

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