Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have a open source software library covered by LGPL, can I use it in a closed source commercial application?

share|improve this question

5 Answers

up vote 24 down vote accepted

That depends on how you use it. The LGP is specifically designed to allow linking against a library covered by it. Such linking doesn't force you to license your software under the LGPL, too. That's where the LGPL differs from the GPL.

If you plan to extract code from the library, you must licenses the whole derived work under the LGPL.

share|improve this answer

Yes. But you have to make your changes public (under the GPL or LGPL) only if you modify the LGPL'd library in any way.

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

share|improve this answer
15  
You don't have to make the changes public if you make the changes only for internal use. Only if you distribute the changed library you must license your changes under the LGPL, too, and make them available. – lutz Sep 3 '09 at 9:34
2  
Thank you for that addition, lutz! – Lennart Sep 3 '09 at 9:35

Yes, you can, provided you follow the LGPL. Basically, you must only distribute changes you make to the LGPL-covered library, but not the source to your own application. You must also make it possible for people to use your app with a different version of the LGPL library than the one you provide.

The Wikipedia article sums it up quite nicely:

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

share|improve this answer

IANAL (and you really should ask your own lawyer); but yes, you can do that, provided you ship (or offer) the source of the library to all customers, and provide them with an option to update the library code with new one (either by replacing a DLL, or by relinking your application).

share|improve this answer
1  
There's not a lot of lawyers who understand intellectual property law, especially in the domain of software and the internet. If you find one, they'll cost you a pretty penny and whatever they tell you isn't God's word, it's usually an opinion which can be wrong. Go ask Oracle and Google. – user148298 Dec 8 '12 at 3:04

But, in LGPL during static linking, we need to be careful. You can refer to the below link regarding the LGPL and static linking and also regarding the upgradation of LGPL libraries - http://forum.soft32.com/linux/Static-linking-LGPL-Upgrading-LGPL-libs-ftopict506201.html Karthik Balaguru

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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