Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sdl2.nim
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ else:
elif defined(haiku):
const LibName* = "libSDL2-2.0.so.0"
else:
const LibName* = "libSDL2.so"
const LibName* = "libSDL2(|-2.0).so(|.0)"

{.pop.}

Expand Down
2 changes: 1 addition & 1 deletion src/sdl2/gfx.nim
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ when not defined(SDL_Static):
elif defined(macosx):
const LibName = "libSDL2_gfx.dylib"
else:
const LibName = "libSDL2_gfx(|-2.0).so(|.0)"
const LibName = "libSDL2_gfx(|-1.0).so(|.0)"
else:
static: echo "SDL_Static option is deprecated and will soon be removed. Instead please use --dynlibOverride:SDL2_gfx."

Expand Down