Commit 1bb9f7f3 authored by melanson's avatar melanson

use a more portable version macro


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3281 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fc6f73e5
...@@ -3802,8 +3802,7 @@ static void show_banner(void) ...@@ -3802,8 +3802,7 @@ static void show_banner(void)
LIBAVCODEC_BUILD); LIBAVCODEC_BUILD);
printf(" built on " __DATE__ " " __TIME__); printf(" built on " __DATE__ " " __TIME__);
#ifdef __GNUC__ #ifdef __GNUC__
printf(", using gcc %d.%d.%d\n", printf(", gcc: %s\n", __VERSION__);
__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__);
#else #else
printf(", using a non-gcc compiler\n"); printf(", using a non-gcc compiler\n");
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment