# HG changeset patch # User John Tsiombikas # Date 1397530145 -10800 # Node ID 59e4bbbabddd0ecff5e14777d85ebe71cd5787ea # Parent 265d44de4d26c85bd7092083898a4dfbb1a4ba77 fixed the example makefiles diff -r 265d44de4d26 -r 59e4bbbabddd examples/nofreetype/Makefile --- a/examples/nofreetype/Makefile Tue Apr 15 05:47:46 2014 +0300 +++ b/examples/nofreetype/Makefile Tue Apr 15 05:49:05 2014 +0300 @@ -12,7 +12,7 @@ lib_so = libdrawtext-noft.dylib else libgl = -lGL -lGLU -lglut - lib_so = libdrawtext-noft.so.0.0 + lib_so = libdrawtext-noft.so.0.2 lib_soname = libdrawtext-noft.so.0 endif diff -r 265d44de4d26 -r 59e4bbbabddd examples/simple/Makefile --- a/examples/simple/Makefile Tue Apr 15 05:47:46 2014 +0300 +++ b/examples/simple/Makefile Tue Apr 15 05:49:05 2014 +0300 @@ -12,7 +12,7 @@ lib_so = libdrawtext.dylib else libgl = -lGL -lGLU -lglut - lib_so = libdrawtext.so.0.0 + lib_so = libdrawtext.so.0.2 endif $(bin): $(obj) $(lib_so) $(font) diff -r 265d44de4d26 -r 59e4bbbabddd examples/unicode/Makefile --- a/examples/unicode/Makefile Tue Apr 15 05:47:46 2014 +0300 +++ b/examples/unicode/Makefile Tue Apr 15 05:49:05 2014 +0300 @@ -12,7 +12,7 @@ lib_so = libdrawtext.dylib else libgl = -lGL -lGLU -lglut - lib_so = libdrawtext.so.0.0 + lib_so = libdrawtext.so.0.2 endif $(bin): $(obj) $(lib_so) $(fonts) diff -r 265d44de4d26 -r 59e4bbbabddd tools/font2glyphmap/Makefile --- a/tools/font2glyphmap/Makefile Tue Apr 15 05:47:46 2014 +0300 +++ b/tools/font2glyphmap/Makefile Tue Apr 15 05:49:05 2014 +0300 @@ -9,7 +9,7 @@ ifeq ($(shell uname -s), Darwin) lib_so = libdrawtext.dylib else - lib_so = libdrawtext.so.0.0 + lib_so = libdrawtext.so.0.2 endif $(bin): $(obj) $(lib_so) $(font)