]> git.sesse.net Git - ffmpeg/commit
configure: force -mconsole when linking SDL under MinGW
authorStephen Hutchinson <qyot27@gmail.com>
Tue, 18 Aug 2015 16:00:06 +0000 (12:00 -0400)
committerMichael Niedermayer <michael@niedermayer.cc>
Tue, 18 Aug 2015 19:20:50 +0000 (21:20 +0200)
commitc5308eea29216c218b61599dc83911d2c1afe716
tree95e3529508a20206d555c5b596c27a0268150981
parent3285005347b2980fc078d4b5777844070bb6113b
configure: force -mconsole when linking SDL under MinGW

When building SDL with MinGW, it sets -mwindows with the
assumption that the application is a GUI application. If this
is linked without passing -mconsole to configure via
--extra-ldflags, stdout will be silenced from cmd.exe while
running FFmpeg.

The -mwindows flag that causes this behavior is included in the
sdl_libs variable, so append -mconsole there rather than create
an sdl_ldflags case just to insert it (especially if -mconsole
must come *after* -mwindows in order to be effective).

Reviewed-by: Timothy Gu <timothygu99@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
configure