diff options
author | James Almer <jamrial@gmail.com> | 2016-12-05 13:07:10 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-12-05 19:22:13 -0300 |
commit | a57b701bdc2083c2d5da85ed6b90ce644cd0f385 (patch) | |
tree | d5e1ab8d895fdca9458f41e2691f4ca0d8fcb304 | |
parent | e08b1cf2df8cfdb3394aa5ab0320739f8b5a1c4f (diff) | |
download | ffmpeg-a57b701bdc2083c2d5da85ed6b90ce644cd0f385.tar.gz |
configure: check for strtoull on msvc
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit b52d3574d466e745834d1283b55570dee1e2d4cd)
-rw-r--r-- | Changelog | 1 | ||||
-rwxr-xr-x | configure | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -2,6 +2,7 @@ Entries are sorted chronologically from oldest to youngest within each release, releases are sorted from youngest to oldest. version 3.1.6: +- configure: check for strtoull on msvc - http: move chunk handling from http_read_stream() to http_buf_read(). - http: make length/offset-related variables unsigned. - ffserver: Check chunk size @@ -6197,6 +6197,7 @@ __declspec($_restrict) void* foo(int); EOF fi check_func strtoll || add_cflags -Dstrtoll=_strtoi64 + check_func strtoull || add_cflags -Dstrtoull=_strtoui64 fi for pfx in "" host_; do |