Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hutchinson <qyot27@gmail.com>2015-08-18 19:00:06 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-08-18 22:20:50 +0300
commitc5308eea29216c218b61599dc83911d2c1afe716 (patch)
tree95e3529508a20206d555c5b596c27a0268150981 /configure
parent3285005347b2980fc078d4b5777844070bb6113b (diff)
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>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 49d4ff313b..bc2160df7c 100755
--- a/configure
+++ b/configure
@@ -5376,6 +5376,9 @@ if ! disabled sdl; then
disable sdl
fi
fi
+ if test $target_os = "mingw32"; then
+ sdl_libs="$sdl_libs -mconsole"
+ fi
fi
enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs