I'm a developer and going to publish my library code under GPL license.

As may you now, LGPL license allows your library to be used on commercial projects although GPL only allows it to be used on opensource projects.

My question is that can i "myself" break GPL license law and use "MY OWN" library code on commercial projects while i prohibit others to do that?

For example: think that a library named XYZLib is licensed under GPL by it's author "Jack" so nobody can use it on commercial project. can "Jack" itself use XYZLib on a commercial project?

link|improve this question
feedback

3 Answers

up vote 6 down vote accepted

Yes. GPL and its ilk give people other than the copyright holder a licence to do things that they don't have under regular copyright law (such as modification and distribution) provided they follow the rules.

As the copyright holder yourself, you have full rights to do with the code what you will and are not subject to the limitations of the GPL.

You should also keep in mind that GPL itself doesn't prevent use in commercial projects, provided you follow the actual rules of the licence. There's little un-commercial about Red Hat Enterprise Linux, for example, despite the fact they adhere to the GPL.

Some relevant snippets from the GPL FAQ:


I heard that someone got a copy of a GPL'ed program under another license. Is this possible?

The GNU GPL does not give users permission to attach other licenses to the program. But the copyright holder for a program can release it under several different licenses in parallel. One of them may be the GNU GPL.

The license that comes in your copy, assuming it was put in by the copyright holder and that you got the copy legitimately, is the license that applies to your copy.

I would like to release a program I wrote under the GNU GPL, but I would like to use the same code in non-free programs.

To release a non-free program is always ethically tainted, but legally there is no obstacle to your doing this. If you are the copyright holder for the code, you can release it under various different non-exclusive licenses at various times.

Is the developer of a GPL-covered program bound by the GPL? Could the developer's actions ever be a violation of the GPL?

Strictly speaking, the GPL is a license from the developer for others to use, distribute and change the program. The developer itself is not bound by it, so no matter what the developer does, this is not a “violation” of the GPL.

However, if the developer does something that would violate the GPL if done by someone else, the developer will surely lose moral standing in the community.

link|improve this answer
feedback

You'd still own the copyright. A common misconception is that by licensing code under the GPL, you're also relinquishing your copyright rights - which is not true at all. The fact you'd still own the copyright rights means you can dual license your code - something that a lot of open source projects do.

Remember a license doesn't transfer ownership of the code, just permission to do certain things that are allowed by the license.

link|improve this answer
1  
Multilicensing is right choice. thanks. – zxcmehran Jul 31 '11 at 16:50
feedback

Yes, of course you can. You own the code and can do as you see fit with it. What you can't do is to release it under the GPL and then consequently use it commercially if you include any GPL-contributed source code. You only have rights to do what you like with the code that you own.

This model is commonly used to provide both free and commercial versions of software. Qt is a good example of this, albeit under the LGPL rather than the GPL now.

link|improve this answer
Would the downvoter care to explain their reasoning? – Stu Mackellar Jul 31 '11 at 16:01
im not the downvoter and upvoted you cause i think you are right. – zxcmehran Jul 31 '11 at 16:48
and thank you for Qt example. – zxcmehran Jul 31 '11 at 16:49
+1 for the important caveat: If you included anyone else's code, you are no longer the sole copyright holder, so you cannot dual-license it (without getting all the other copyright holders to agree). – Thilo Nov 12 '11 at 23:40
feedback

Your Answer

 
or
required, but never shown

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