Is there a risk of legal trouble if you include GPL or LGPL licensed icons in a closed source software?

Would it force it to become open source just to include the icon?

Does it matter if the icon is compiled as a resource?

Are the creative common licensed icons safe to use if you follow the attribution rules specified by the license?

link|improve this question
feedback

2 Answers

up vote 19 down vote accepted

For GPL, yes. Any GPL Code/Content that's compiled into your Application will make it GPL. (Edit: What could be safe is if the Icon is a separate file and is used. That could be a grey area, as you are not using GPL Code to access it. But any attempt to embed it will force your program to GPL, it's one of the most restrictive licenses out there)

LGPL is fine: Any modification to LGPL Content has to be released under LGPL, but using the Code/Content is safe.

Addition: Like LGPL, CreativeCommons usually only affects the Content you're using. So if you're using a CC Icon and modify it, you will have to give out the modified item under CreativeCommons, but your Application is not affected. Just mind the "Non-Commercial" Clause if it exists.

link|improve this answer
This is nice to know, and it sucks if my application is BSD. I have to make it un-free-er to use GPL icons :( – Hugo Jun 24 '11 at 2:35
3  
Or you just ask the author for permission. – ThiefMaster Jul 6 '11 at 15:06
It is very strange, i have seen many large companies mixing LGPL, GPL and still they are not bank corrupt and growing. There must be something missing – YumYumYum Mar 12 at 17:17
@YumYumYum gpl-violations.org can only go after so many people. A lot of the tiny one-man GPL projects don't bother going after violations. Also, GPL is only a "problem" if you release software. For internal stuff and web apps, it's less of an issue (for web apps, the AGPL closes that loophole). – Michael Stum Mar 12 at 17:29
@MichaelStum: How come company use BusyBox busybox.net/license.html And there project is about 5/6 year close source? If its correct GPL drags to GPL? – YumYumYum Mar 12 at 20:29
show 2 more comments
feedback

It's a tricky area, at a minimum you should probably arrange for the icons to be loaded at run time so that they can be replaced with other versions, this is at least the spirit of the GPL.

An article discusses this at http://www.linux.com/feature/119212

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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