If I have a open source software library covered by LGPL, can I use it in a closed source commercial application?
|
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. |
|||
|
|
|
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. |
|||||||||
|
|
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: |
|||
|
|
|
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). |
|||||
|
|
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 |
|||
|
|