Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wondering if a developer released code under a GPL License and a Proprietary License, and modifications were made to the GPL License copy by others, could the original author take those modifications and add them the Proprietary version?

share|improve this question

4 Answers

up vote 8 down vote accepted

Short answer: No, he can't since the modifications are released under the GPL. You would have to discuss a license change with the developer who holds the copyright for the modification, i.e., the one who wrote it.

share|improve this answer

No, the modified code is licensed under GPL and not solely owned by you. You can't add any proprietary version to it unless all the other authors agree. Otherwise, there is no point using GPL, GPL would be just an easy way for free labor.

share|improve this answer

In general, no. Or at least if he does, he'd be better off keeping quiet about it. Unless of course an exception was explicitly stated in the license for the GPL version, but then it's not really released under the GPL License, strictly speaking. Assuming no such exception was present in the licensing terms, then any new code submitted is GPL'ed code and thus not (legally) compatible with the proprietary version.

I'd suggest that this developer learn from his mistake and choose a more permissive license in the future, such as an MIT- or BSD-style license.

share|improve this answer
But if someone makes changes to the MIT- or BSD-licensed code they don't need to release the new code at all. How is that better for the original developer? – Emil Vikström May 11 '12 at 6:33
It's not necessarily better for the original developer. But giving the original developer a stranglehold over every piece of future work that uses their work even in a minor/trivial/tangential way is not better for the software development community as a whole. Personally I side with the community over the individual copyright holder. And the thing that most benefits the community is to have a permissive license that allows both proprietary and open-source extensions of open-source code. – aroth May 11 '12 at 12:29

No, not by default.

The GPL does not offer others to put GPL'ed code under a proprietary license.

That would mean that the changes would become non-free.

The GPL has been created to ensure the freedom of software instead so that the software remain free for all of it's users.

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.