From d73fe2c22e0c8bf11a69aff7297348da657b8cbc Mon Sep 17 00:00:00 2001 From: Layla Marchant Date: Fri, 19 Mar 2021 16:07:25 -0400 Subject: [PATCH] Removed attempts to colorize echos. It caused errors. Not sure why, but I don't think it's worth investigating. --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index ae5371d..c6b2fe3 100644 --- a/configure.ac +++ b/configure.ac @@ -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])