Browse Source

Print compiler version and build date before configuration in console output.

Originally committed as revision 19962 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun 15 years ago
parent
commit
5c1f57ffdf
1 changed files with 2 additions and 2 deletions
  1. 2 2
      cmdutils.c

+ 2 - 2
cmdutils.c

@@ -333,14 +333,14 @@ void show_banner(void)
 {
     fprintf(stderr, "%s version " FFMPEG_VERSION ", Copyright (c) %d-%d Fabrice Bellard, et al.\n",
             program_name, program_birth_year, this_year);
-    fprintf(stderr, "  configuration: " FFMPEG_CONFIGURATION "\n");
-    print_all_lib_versions(stderr, 1);
     fprintf(stderr, "  built on " __DATE__ " " __TIME__);
 #ifdef __GNUC__
     fprintf(stderr, ", gcc: " __VERSION__ "\n");
 #else
     fprintf(stderr, ", using a non-gcc compiler\n");
 #endif
+    fprintf(stderr, "  configuration: " FFMPEG_CONFIGURATION "\n");
+    print_all_lib_versions(stderr, 1);
 }
 
 void show_version(void) {