# HG changeset patch # User John Tsiombikas # Date 1397530145 -10800 # Node ID 03699346d59fd1655ac5b0d798bfa78634fc5ee6 # Parent c535d48824f0a25d971da114792bb45cd6871b41 fixed the example makefiles diff -r c535d48824f0 -r 03699346d59f 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 c535d48824f0 -r 03699346d59f 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 c535d48824f0 -r 03699346d59f 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 c535d48824f0 -r 03699346d59f 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)