From 09e4d1b6d236bf862885f6ab116e69420af3dc6f Mon Sep 17 00:00:00 2001 From: Albert Cahalan Date: Thu, 29 May 2008 16:47:21 +0000 Subject: [PATCH] use of $(warning ...) will not terminate the build; it is just a warning --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 91ead338a..63b1137e4 100644 --- a/Makefile +++ b/Makefile @@ -162,11 +162,7 @@ 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) - -# Unnecessary to die, I think... INSTALL.txt says we can disable! -bjk 2008.05.29 -# $(warning -lSDL_Pango failed, no scripts for you!)) - +NOPANGOFLAG:=$(if $(SDL_PANGO_LIB),,-DNO_SDLPANGO$(warning -lSDL_Pango failed, no scripts for you!)) SDL_LIBS+=$(SDL_MIXER_LIB) $(SDL_PANGO_LIB)