diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2014-12-04 01:29:58 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2014-12-04 01:29:58 +0100 |
commit | 04820ca69d4ef9eca8d7139ee95181ae9a1ef506 (patch) | |
tree | a1a58d7803df8e40dc6e830b1c03ad0d1a131910 /lib/wrappers/sdl | |
parent | 85d83fd8cb43a1d49a18a6f6329662da47059646 (diff) | |
parent | 51d2096cd340ec9ef0cb1e598d5c389a95b9c456 (diff) | |
download | Nim-04820ca69d4ef9eca8d7139ee95181ae9a1ef506.tar.gz |
Merge pull request #1702 from dustinlacewell/sdl_ttf_linker_update
Adds some flexibility to the lib name of SDL_ttf to allow for newer dist...
Diffstat (limited to 'lib/wrappers/sdl')
-rw-r--r-- | lib/wrappers/sdl/sdl_ttf.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wrappers/sdl/sdl_ttf.nim b/lib/wrappers/sdl/sdl_ttf.nim index e0410c798..9ebe70b9d 100644 --- a/lib/wrappers/sdl/sdl_ttf.nim +++ b/lib/wrappers/sdl/sdl_ttf.nim @@ -163,7 +163,7 @@ elif defined(macosx): ttfLibName = "libSDL_ttf-2.0.0.dylib" else: const - ttfLibName = "libSDL_ttf.so(|.1|.0)" + ttfLibName = "libSDL_ttf(|-2.0).so(|.1|.0)" const MAJOR_VERSION* = 2 MINOR_VERSION* = 0 |