Constrains of LGPL of Qt
-
wrote on 20 Jun 2011, 10:29 last edited by
If you want to information to persist, and you think this forum post isn't a good way to do that, I suggest that you either create a wiki page for it, or attach a good docnote at the appropriate licencing page in the documentation.
-
wrote on 20 Jun 2011, 13:19 last edited by
ok, point taken.
sorry I suggested it, but at that time it seemed to be a good idea.
-
wrote on 20 Jun 2011, 13:23 last edited by
[quote author="Eddy" date="1308575977"]sorry I suggested it, but at that time it seemed to be a good idea.[/quote]
Nothing to be sorry about Eddy, we would much rather have too many suggestions than too few :) Thanks!
-
wrote on 20 Jun 2011, 16:54 last edited by
yeh, a license page with simple Q&A using Laymen term would be a nice addition to the wiki.
I would like to do it. :) In fact the questions and answers are in a perfect order, just copy pasting and rearranging a little will do the job.
-
wrote on 19 Jul 2011, 05:29 last edited by
Ok, sorry guys. I have to pop this thing up again since I can not afford a lawyer (I would just buy the commercial licence if I could) :-)
If I understand correctly (and thats what this is all about: interpretation :-) I just have to make the changes I made to Qt itself public, bot the source code of my own exe binary?
I made one Qt DLL out of QtCore, QtGui, QtXml and QtNetwork, packed it using UPX and linked my exe dynamically to it. This reduces dramatically the installation package. So is that compliant with LGPL?
Thanks,
Sam. -
wrote on 19 Jul 2011, 11:25 last edited by
[quote author="SamuelTee" date="1311053391"]... I made one Qt DLL out of QtCore, QtGui, QtXml and QtNetwork, packed it using UPX and linked my exe dynamically to it. This reduces dramatically the installation package. ...[/quote]
<offtopic>
I do not have an answer to your question, but I have ... two questions for you, from a technical point of view:a) Can you provide some additional details on how you did this?
b) Will your executable work with the "standard" Qt-dll files?
</offtopic> -
wrote on 19 Jul 2011, 15:01 last edited by
you can find more information in this link "GNU project ":http://www.gnu.org/philosophy/why-not-lgpl.html
-
wrote on 19 Jul 2011, 16:35 last edited by
[quote author="SamuelTee" date="1311053391"]I made one Qt DLL out of QtCore, QtGui, QtXml and QtNetwork, packed it using UPX and linked my exe dynamically to it. This reduces dramatically the installation package. So is that compliant with LGPL?[/quote]That big Qt DLL represents clearly a -derived work- work based on the Qt Library, that means you need to provide all the source code needed to rebuild it.
But the LGPL 2.1 (in the preamble which is in plain English or sections 6a & 6c) and LGPL 3 (section 4d0) do explicitly allow static linking, so you might be able to further reduce the size of your application without modifying Qt itself, as long as you provide a way (6a) or just a written offer for that way (6c) to relink your application with a modified version of the library.
-
wrote on 20 Jul 2011, 09:16 last edited by
@Stavros
a)
Well I just created a new folder under /Qt/src (such as /Qt/src/QtBase) and copied all the stuff from /Qt/src/corelib, /Qt/src/gui, /Qt/src/xml and /Qt/src/network into it (I had to rename some *.pri files to avoid duplicity). After that I created a new pro file for it ... and compiled.b) No. It will not.
@alexisdm
I know that my "single Qt DLL" is a derived work (and therefor I need to provide the above mentioned info). But is my own exe (linked against this derived-"single Qt DLL") also such a derived work or not? -
wrote on 20 Jul 2011, 10:08 last edited by
@SamuelTee: This blog post written by our legal council is recommended reading: http://blog.qt.nokia.com/2009/11/30/qt-making-the-right-licensing-decision/. Also check out her detailed answer to the questions in the comments.
-
wrote on 26 Mar 2012, 04:05 last edited by
Great thread, if I read it correctly then I can use Qt under LGPL in this scenario:
- I modify QtWebkit->QWebPage adding additional public methods, and additional helper classes
- Modified QtWebKit has a dependency on QtXml.dll
- Compile as shared library (e.g. DLL)
- Link commercial app against this modified library
- Bundle in LGPL statement with commercial app, and links to modified QtWebKit source (and whatever else is required in LGPL in terms of notifications, header notices etc)
- DO NOT need to make available the source code for my compiled app.
Did I get that right?
Otherwise if I have an issue with sharing my QtWebKit mods or LGPL forces me to provide source code for my commercial app then I need a commercial license.
-
wrote on 14 Nov 2015, 13:05 last edited by
Is there a new URL for the "blog post written by our legal [counsel]"? The given URL is no longer valid.
Thanks!