Commit a57b701b authored by James Almer's avatar James Almer

configure: check for strtoull on msvc

Reviewed-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
(cherry picked from commit b52d3574)
parent e08b1cf2
...@@ -2,6 +2,7 @@ Entries are sorted chronologically from oldest to youngest within each release, ...@@ -2,6 +2,7 @@ Entries are sorted chronologically from oldest to youngest within each release,
releases are sorted from youngest to oldest. releases are sorted from youngest to oldest.
version 3.1.6: version 3.1.6:
- configure: check for strtoull on msvc
- http: move chunk handling from http_read_stream() to http_buf_read(). - http: move chunk handling from http_read_stream() to http_buf_read().
- http: make length/offset-related variables unsigned. - http: make length/offset-related variables unsigned.
- ffserver: Check chunk size - ffserver: Check chunk size
......
...@@ -6197,6 +6197,7 @@ __declspec($_restrict) void* foo(int); ...@@ -6197,6 +6197,7 @@ __declspec($_restrict) void* foo(int);
EOF EOF
fi fi
check_func strtoll || add_cflags -Dstrtoll=_strtoi64 check_func strtoll || add_cflags -Dstrtoll=_strtoi64
check_func strtoull || add_cflags -Dstrtoull=_strtoui64
fi fi
for pfx in "" host_; do for pfx in "" host_; do
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment