[FFmpeg-cvslog] configure: Suppress "potentially uninitialized variable" warnings from MSVC
Diego Biurrun
git at videolan.org
Fri Aug 22 18:49:40 CEST 2014
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Fri Aug 15 20:03:27 2014 +0200| [b0bfd09f88da8b7c7666faf0ac7d5e74559dba9f] | committer: Diego Biurrun
configure: Suppress "potentially uninitialized variable" warnings from MSVC
The same is done for GCC and clang already.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b0bfd09f88da8b7c7666faf0ac7d5e74559dba9f
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index c073f30..db3ee36 100755
--- a/configure
+++ b/configure
@@ -2688,7 +2688,7 @@ msvc_flags(){
-Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
-wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
-wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
- -wd4273 ;;
+ -wd4273 -wd4701 ;;
esac
done
}
More information about the ffmpeg-cvslog
mailing list