We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db02d6 commit 9711796Copy full SHA for 9711796
configure.ac
@@ -197,8 +197,8 @@ if test ${enable_output_sdl:=yes} = yes; then
197
AC_LANG_POP(C)
198
fi
199
dnl strip away options that would turn our application from console to a windows GUI application
200
- SDL_CFLAGS=`echo $SDL_CFLAGS |sed 's/-Dmain=SDL_main//g'`
201
- SDL_LIBS=`echo $SDL_LIBS | sed 's/-mwindows/-mconsole/g' 's/-lSDLmain//g' 's/-lSDL2main//g'`
+ SDL_CFLAGS=`echo $SDL_CFLAGS |sed -e 's/-Dmain=SDL_main//g'`
+ SDL_LIBS=`echo $SDL_LIBS | sed -e 's/-mwindows/-mconsole/g' -e 's/-lSDLmain//g' -e 's/-lSDL2main//g'`
202
203
204
# ALSA output
0 commit comments