So, I borrowed a function from SDL_ttf in my own project
(UTF8_to_UNICODE) to help me handling strings and drawing text, etc…
and I now (or will eventually) need to know how I accredit this
function to the proper owner so that I’m not violating any licensing
issues. I would appreciate any input that someone might have on the
matter.
Does anyone know the proper/right thing to do in this case?
SDL_ttf is under LGPL 2.1, see the “copying”-file in the SDL_ttf-archive.
All the rules and regulations are stated in that file and I think you might find the answer in there.
Scott Harper wrote:> Hello,
So, I borrowed a function from SDL_ttf in my own project
(UTF8_to_UNICODE) to help me handling strings and drawing text, etc…
and I now (or will eventually) need to know how I accredit this function
to the proper owner so that I’m not violating any licensing issues. I
would appreciate any input that someone might have on the matter.
Does anyone know the proper/right thing to do in this case?
SDL_ttf is under LGPL 2.1, see the “copying”-file in the SDL_ttf-archive.
All the rules and regulations are stated in that file and I think you might find the answer in there.
LGPL can’t usually be borrowed from, if your code isn’t GPL/LGPL itself.
Here’s my Unicode code, under the zlib license (basically: do whatever
you want with it)…