Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Should Translations of some GPL code to other languages be licensed as GPL?

For ex we have x264 C/C++ H264 encoding open source GPL lib. We translate it from… C\C++ to Java or C# should we license our code as GPL?

share|improve this question
Do you really mean should or shall? I don't know if you have to but probably you should... for the gain of the community :) – Jorge Córdoba Nov 12 '09 at 16:45

3 Answers

up vote 3 down vote accepted

Yes, GPL code translated to another language or platform is still subject to the terms of the GPL. It constitutes a "modified version."

share|improve this answer
And what if my translator (Adobe Alchemy for ex if we talk about AS3) gives me only binary’s what should i do? – Spender Nov 12 '09 at 16:57
And If I use a compiled binary of some GPL code in my project do I need to make my entire project GPL? – Spender Nov 12 '09 at 17:01
Yes, your program is still considered a derivative under the GPL if you link into any GPL'd component directly. – cookiecaper Nov 12 '09 at 17:08

IANAL, but, yes it would count as a derivative work

share|improve this answer

The GPL stipulates that all derivative works share its license.

I guess that legally you may not be obliged to license under the GPL depending on how you port the software, but you certainly should license under the GPL as the original author's intention is obviously to apply the GPL to all other software based off of the GPL'd work.

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.