Search code examples
licensinglinkerlgpl

If I modify and dynamically link against a modified LGLP Lib, do I have to make the changes available?


I have found a bug in an LGPL Lib that I currently link against dynamically.

  • The application is closed source
  • I link dynamically to the LGPL Lib
  • The application will be available to the public

If I modify the lib my understanding is that I will have to make the changed source files availible with the application, is this correct?


Solution

  • You are redistributing the modified code of the LGPL library, so you need to release the source for that library (your bug fix). That does not mean you need to release the source code for your entire application, just the library that's LGPL'ed.

    Also note that the GPL/LGPL only requires you to give the source code to someone that you give the binary to. It does not require you to e.g. put the source on the web for anyone in the world to download. A sure way to comply is to pack the source inside your distribution so people get it together with the binaries, then nobody can ever complain that the source wasn't available.