mirror of https://git.ffmpeg.org/ffmpeg.git
configure: Add -D_CRT_NONSTDC_NO_WARNINGS when building with msvc
This silences warnings like this one: libavformat/file.c(62) : warning C4996: 'read': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _read. See online help for details. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
8edaf625f3
commit
567ca14295
|
@ -3113,7 +3113,7 @@ probe_cc(){
|
||||||
_ld_lib='lib%.a'
|
_ld_lib='lib%.a'
|
||||||
_ld_path='-libpath:'
|
_ld_path='-libpath:'
|
||||||
_flags='-nologo'
|
_flags='-nologo'
|
||||||
_cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS'
|
_cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS'
|
||||||
elif $_cc 2>&1 | grep -q Intel; then
|
elif $_cc 2>&1 | grep -q Intel; then
|
||||||
_type=icl
|
_type=icl
|
||||||
_ident=$($_cc 2>&1 | head -n1)
|
_ident=$($_cc 2>&1 | head -n1)
|
||||||
|
|
Loading…
Reference in New Issue