mirror of
https://github.com/mpv-player/mpv
synced 2025-02-05 14:42:24 +00:00
Make MPlayer/MEncoder print the compile-time configuration in verbose mode.
based on a patch by Brian Murray, brian game-sat com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21358 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
caffd06415
commit
0810e42750
5
configure
vendored
5
configure
vendored
@ -53,6 +53,9 @@
|
||||
LC_ALL=C
|
||||
export LC_ALL
|
||||
|
||||
# Store the configure line that was used
|
||||
_configuration="$*"
|
||||
|
||||
# Prefer these macros to full length text !
|
||||
# These macros only return an error code - NO display is done
|
||||
compile_check() {
|
||||
@ -7527,6 +7530,8 @@ cat > config.h << EOF
|
||||
#ifndef MPLAYER_CONFIG_H
|
||||
#define MPLAYER_CONFIG_H 1
|
||||
|
||||
#define CONFIGURATION "$_configuration"
|
||||
|
||||
/* use GNU internationalization */
|
||||
$_def_i18n
|
||||
|
||||
|
@ -495,6 +495,8 @@ if(!codecs_file || !parse_codec_cfg(codecs_file)){
|
||||
}
|
||||
}
|
||||
}
|
||||
/* Display what configure line was used */
|
||||
mp_msg(MSGT_MENCODER, MSGL_V, "Configuration: " CONFIGURATION "\n");
|
||||
|
||||
|
||||
if (frameno_filename) {
|
||||
|
@ -3757,6 +3757,9 @@ if(!codecs_file || !parse_codec_cfg(codecs_file)){
|
||||
} else gui_no_filename=1;
|
||||
}
|
||||
|
||||
/* Display what configure line was used */
|
||||
mp_msg(MSGT_CPLAYER, MSGL_V, "Configuration: " CONFIGURATION "\n");
|
||||
|
||||
// Many users forget to include command line in bugreports...
|
||||
if( mp_msg_test(MSGT_CPLAYER,MSGL_V) ){
|
||||
mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_CommandLine);
|
||||
|
Loading…
Reference in New Issue
Block a user