vote up 0 vote down star
1

I'm wondering is it legal to include OpenSource components as *.dll / *.so (with sources provided) in some proprietary software?

It seems that everything's ok: source code is provided, not modified, author is mentioned in "About" box, and the free source is not compiled into: just dynamically linked.

I know there's quite a lot of different licenses... It'll be nice if your answer will cover most of the popular ones: GPL, LGPL, Mit, ... Which of these do allow this?

Thanks in advance!

flag
And the programming question is? This isn't <TheFirstThingWeDo.com>, and any "legal" advice given should be taken to your OWN legal counsel. – Dan Oct 26 at 1:13
@Dan, the question is closely connected with development, and sonner or later every developer will stumble upon this kind of problem: legal, or not? – o_O Tync Oct 26 at 1:19
2  
But you're specifically asking for legal advice: "Is it legal...". Everyone on SO can speculate/advise/opine/etc. all day long, but the only legal answer that's actually worth anything to you is what your own counsel tells you. – Dan Oct 26 at 1:31
Ok, then "legal" stands for a short form of "will the software license be satisfied if I ..." ;) However, you're absolutely right! – o_O Tync Oct 26 at 1:40

5 Answers

vote up 2 vote down check

This should be OK if the license of the component is a "weak" copyleft license or a non-copyleft license.

The most well known free software license that uses strong copyleft is the GNU General Public License. Free software licenses that use "weak" copyleft include the GNU Lesser General Public License and the Mozilla Public License. Examples of non-copyleft free software licenses include the X11 license, Apache license and the BSD licenses.

Check out the Comparison of free software licenses on Wikipedia for an overview (Wikipedia pages on licenses are actually pretty good and may help you to get details or pointers).

Or have a look at Various Licenses and Comments about Them on the GNU's website.

Or check the Open Source Licenses on the OSI website.

link|flag
hm, i believe i should visit some Googling classes: shame on me i haven't found this great Wikipedia article :)) Thanks! – o_O Tync Oct 26 at 1:10
Actually, I always keep this one under the hand just in case :) That said, the important part is the first sentence: weak copyleft or non-copyleft licenses. – Pascal Thivent Oct 26 at 1:14
vote up -2 vote down

Yes - e.g. http://creativecommons.org/licenses/GPL/2.0/

link|flag
1  
With the GPL it's not that easy, start here en.wikipedia.org/wiki/… – fvu Oct 26 at 0:53
4  
The GPL is one of the few Open Source licenses that doesn't allow the inclusion into proprietary software of Open Source code in a DLL. By including GPL code into your program, even by dynamic linking, you must make the entire source code of the program available to your users. This condition is why the LGPL was created. – RichieHindle Oct 26 at 0:55
vote up 4 vote down

There is a nice article about this, and here is the most important part for your question:

Of the popular licenses listed above, proprietary forks are permitted by the BSD and AFL licenses. Proprietary forks are prohibited by the GPL, MPL, and OSL licenses.

http://www.airs.com/ian/essays/licensing/licensing.html

This link has a nice chart that goes into more detail: http://developer.kde.org/documentation/licensing/licenses_summary.html

link|flag
Thanks! The second link is great! :) – o_O Tync Oct 26 at 1:01
The second link was more useful, so I didn't see the point in pasting what they showed so well. – James Black Oct 26 at 1:13
vote up 2 vote down

Off the top of my head

* GPL : no
* LGPL : yes
* MIT : yes

if you use GPL libs in your product then you have to release your product as a GPL product

link|flag
That GPL : no is the FSF's opinion. I don't believe it has been tested in court and think there's room for a difference of opinion (for GPL v2 anyway). – ysth Oct 26 at 1:06
@ysth. It's been upheld at least once. h-online.com/open/news/… – Glen Oct 26 at 1:11
vote up 3 vote down

It depends on the specific open-source license, but it's 100% legal to use open source code in any project. The problem becomes "what is your obligation after releasing that software".

For example, the BSD and MIT license are both designed to allow you to use code in closed source projects without redistributing any of your source code.

If you used and complied GPL v2 code in your commercial project you'd need to give away copies of the source to anyone who bought it.

Then there's the lesser GPL, which allows you to use unchanged libraries in your commercial application without having to disclose the source of your application.

It all depends on the license.

link|flag

Your Answer

Get an OpenID
or

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