vote up 1 vote down star
1

This page summarizes different license types' terms (GPL, LGPL, MIT, BSD, etc): http://www.codeproject.com/info/Licenses.aspx

Say I write a program for sale that uses a software under one of the licensing types where "Can be used in commercial applications:" is true, and "Can be used in proprietary (closed source) applications:" is true.

Then if the "Bug fixes / extensions must be released to the public domain:" line is true, what does it mean to me? What am I required to do?

Thank you.

flag

3 Answers

vote up 1 vote down check

This will usually mean that if you build a patch or other modification of the program and want to distribute it you must also publish the sources of that modification under a license explicitly mentioned in the program license text.

In some license types this includes both the other program and any program using that (including your program). In others (like LGPL) this will only be required only for modification made to that program, but not to your program if they are separated (LGPL is typically used for libraries and doesn't enforce publishing the library consumers).

link|flag
Are you saying that some licenses would require me to release my code along with any bug fix code I wrote? If so, do you know which that would be (so I can avoid it, haha)? – ChrisC Jul 22 at 5:35
I would say any that are classed as "Viral" licenses, such as the GPL – a_m0d Jul 22 at 5:47
@ChrisC: Yes, if you want to redistribute the bug fix. If you just need to patch something and only use it in-house you don't need to do so. GPL certainly requires that and other licenses too to some extent - look for words concerning "derived works" in the license. Usually the "derived works" must be redistributed under certain conditions explicitly mentioned there and requiring publishing the source under the same license. And patches/bug fixes/enhancements/alterations/tunings are derived works. – sharptooth Jul 22 at 5:50
@ChrisC: What you do to avoid having to release your code is to not use software with a license that requires this. But if everyone did that, there would be no open source software at all ... and you would be forking out bucks to someone to license the libraries you now get to use for free! – Stephen C Jul 22 at 5:59
vote up 1 vote down

simply:

you can sell (and release with your own commercial license) your own app built with the provided code.

but:

you can not improve on the code (of the software you are using within your app) directly and not give it to public domain (usually it is in the original license of the software).

link|flag
vote up 1 vote down

Instead of relying on those summaries, you would be advised to carefully read the license for any open source license you plan to use in a closed source product.

For instance, LGPL does not actually require you to release source code changes to the public domain. Rather, it requires you to release them under the terms of the LGPL.

If you are nor sure that you understand the implications of a particular license, talk to your company's lawyers.

link|flag
1  
+1. A very important point. Releasing into public domain is not the same as publishing under a certain license. – sharptooth Jul 22 at 6:04

Your Answer

Get an OpenID
or

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