this post was submitted on 21 May 2022
9 points (100.0% liked)

Asklemmy

43394 readers
1802 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 5 years ago
MODERATORS
 

Apparently SDL-org changed the license of SDL from the LGPL (a copyleft license) to zlib (a permissive license).^[Older Releases (Check the license in versions before SDL2 and 1.3.)]

I don't get why SDL-org would make the license change; unless if it's for popularity.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] sasalzig@lemmy.ml 6 points 2 years ago (2 children)

It's so commercial game devs can ship it on iOS and consoles. I think Apple makes it impossible to comply with the LGPL. Probably same thing for Sony, XBox and Nintendo.

I'm not too mad even though I'm a GPL fanboy. If it helps SDL adoption among game devs then that will help portability and Linux support in the long run. It will also help games run better on Linux: plenty of games that don't use SDL have annoying issues with my tiling WM for example.

With SDL 2, they even thought about the future compatibility issues due to static linking: Even if a game statically links SDL, you can still override the static copy with your own dynamic library. The static SDL will forward all function calls to the user supplied SDL.

[โ€“] octt@feddit.it 3 points 2 years ago (1 children)

I never thought that holders of proprietary platforms could come close to this level of influence, making the developers of a libre library have to relicense their work, or otherwise app developers can't publish for those proprietary platforms if they decide to use the library in question.

I'm a strong (A)GPL fan but I see why proprietary companies hate it, but what is wrong to them with the already permissive LGPL?

[โ€“] sasalzig@lemmy.ml 2 points 2 years ago

LGPL says the user needs to be able to replace the LGPL'ed code with their own modified version. You can't do that on an iPhone. I think that's the issue there.

Also the SDL devs are themselves game developers/porters (I think that came out of Loki games), so it's not so hard to understand why they would relicense their stuff, it basically makes their own life easier also.