diff options
author | Mike Melanson <mike@multimedia.cx> | 2004-07-01 03:34:49 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2004-07-01 03:34:49 +0000 |
commit | da1da890441595da69df733dad7eb54a400aa21a (patch) | |
tree | 4c7421872ef06ee71964c68e009626e8c3fb951d /ffmpeg.c | |
parent | f6fa7a6cf5e0f06d729f617615631bc6aaf17c99 (diff) | |
download | ffmpeg-da1da890441595da69df733dad7eb54a400aa21a.tar.gz |
use a more portable version macro
Originally committed as revision 3281 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -3802,8 +3802,7 @@ static void show_banner(void) LIBAVCODEC_BUILD); printf(" built on " __DATE__ " " __TIME__); #ifdef __GNUC__ - printf(", using gcc %d.%d.%d\n", - __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__); + printf(", gcc: %s\n", __VERSION__); #else printf(", using a non-gcc compiler\n"); #endif |