Getting --uppercase working (mostly) without Pango, too.

No longer aborting build when Pango is disabled or not found.
This commit is contained in:
William Kendrick 2008-05-29 16:06:07 +00:00
parent 5d1204f83c
commit e4e06ad2a4
2 changed files with 8 additions and 4 deletions

View file

@ -4,7 +4,7 @@
# bill@newbreedsoftware.com
# http://www.tuxpaint.org/
# June 14, 2002 - May 28, 2008
# June 14, 2002 - May 29, 2008
# The version number, for release:
@ -162,7 +162,11 @@ NOSOUNDFLAG:=$(if $(SDL_MIXER_LIB),,-DNOSOUND$(warning -lSDL_Mixer failed, no so
# SDL Pango is needed to render complex scripts like Thai and Arabic
SDL_PANGO_LIB:=$(call linktest,-lSDL_Pango,$(SDL_LIBS))
NOPANGOFLAG:=$(if $(SDL_PANGO_LIB),,-DNO_SDLPANGO$(warning -lSDL_Pango failed, no scripts for you!))
NOPANGOFLAG:=$(if $(SDL_PANGO_LIB),,-DNO_SDLPANGO)
# Unnecessary to die, I think... INSTALL.txt says we can disable! -bjk 2008.05.29
# $(warning -lSDL_Pango failed, no scripts for you!))
SDL_LIBS+=$(SDL_MIXER_LIB) $(SDL_PANGO_LIB)