mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
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)
This commit is contained in:
@ -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
|
||||||
|
1
configure
vendored
1
configure
vendored
@ -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
|
||||||
|
Reference in New Issue
Block a user