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:
Layla Marchant 2021-03-19 16:07:25 -04:00
parent e993034e63
commit d73fe2c22e
No known key found for this signature in database
GPG Key ID: 52FB5C20A8336782
1 changed files with 4 additions and 4 deletions

View File

@ -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])