diff options
author | James Almer <jamrial@gmail.com> | 2016-12-05 13:07:10 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-12-05 14:28:10 -0300 |
commit | b52d3574d466e745834d1283b55570dee1e2d4cd (patch) | |
tree | 99e017a1ae4f9a3c8a37bf21f9ed2629361be5dc /configure | |
parent | 55affd95bd9b3212dc505aec67f9be58d519b4fe (diff) | |
download | ffmpeg-b52d3574d466e745834d1283b55570dee1e2d4cd.tar.gz |
configure: check for strtoull on msvc
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6284,6 +6284,7 @@ __declspec($_restrict) void* foo(int); EOF fi check_func strtoll || add_cflags -Dstrtoll=_strtoi64 + check_func strtoull || add_cflags -Dstrtoull=_strtoui64 # the new SSA optimzer in VS2015 U3 is mis-optimizing some parts of the code # this flag should be re-checked on newer compiler releases and put under a # version check once its fixed |