Removed attempts to colorize echos.
It caused errors. Not sure why, but I don't think it's worth investigating.
This commit is contained in:
parent
e993034e63
commit
d73fe2c22e
|
@ -38,7 +38,7 @@ PKG_CHECK_EXISTS([SDL2_mixer], [
|
|||
], [
|
||||
PKG_CHECK_MODULES([SDL], [sdl2 SDL2_image SDL2_mixer])
|
||||
STARFIGHTER_CPPFLAGS="$STARFIGHTER_CPPFLAGS -DNOFONT"
|
||||
echo -e "\033[1mWARNING: SDL_ttf not found; Unicode will not be supported.\033[0m"
|
||||
echo "WARNING: SDL_ttf not found; Unicode will not be supported."
|
||||
])
|
||||
], [
|
||||
PKG_CHECK_EXISTS([SDL2_ttf], [
|
||||
|
@ -46,15 +46,15 @@ PKG_CHECK_EXISTS([SDL2_mixer], [
|
|||
], [
|
||||
PKG_CHECK_MODULES([SDL], [sdl2 SDL2_image])
|
||||
STARFIGHTER_CPPFLAGS="$STARFIGHTER_CPPFLAGS -DNOFONT"
|
||||
echo -e "\033[1mWARNING: SDL_ttf not found; Unicode will not be supported.\033[0m"
|
||||
echo "WARNING: SDL_ttf not found; Unicode will not be supported."
|
||||
])
|
||||
STARFIGHTER_CPPFLAGS="$STARFIGHTER_CPPFLAGS -DNOSOUND"
|
||||
echo -e "\033[1mWARNING: SDL_mixer not found; audio will not be supported.\033[0m"
|
||||
echo "WARNING: SDL_mixer not found; audio will not be supported."
|
||||
])
|
||||
PKG_CHECK_MODULES([PANGO], [pango], [
|
||||
], [
|
||||
STARFIGHTER_CPPFLAGS="$STARFIGHTER_CPPFLAGS -DNOFONT"
|
||||
echo -e "\033[1mWARNING: Pango not found; Unicode will not be supported.\033[0m"
|
||||
echo "WARNING: Pango not found; Unicode will not be supported."
|
||||
])
|
||||
|
||||
AC_ARG_VAR([SF_WARN], [Set to 1 to enable compiler warnings])
|
||||
|
|
Loading…
Reference in New Issue