From da1da890441595da69df733dad7eb54a400aa21a Mon Sep 17 00:00:00 2001 From: Mike Melanson Date: Thu, 1 Jul 2004 03:34:49 +0000 Subject: [PATCH] use a more portable version macro Originally committed as revision 3281 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index dc200bebcf..2222a5f424 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -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