diff options
author | Martin Storsjö <martin@martin.st> | 2014-08-11 15:02:28 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-08-13 14:39:01 +0300 |
commit | 72199e1041b4052544e181ad90b431ca6704da12 (patch) | |
tree | a62fa43336ee53e1765fb39ea5ce82bdc6b30ad4 /configure | |
parent | 428b0578c64241fc677fed7083cc8fe65e10f32e (diff) | |
download | ffmpeg-streaming-72199e1041b4052544e181ad90b431ca6704da12.zip ffmpeg-streaming-72199e1041b4052544e181ad90b431ca6704da12.tar.gz |
configure: Check for nanosleep in headers as well, not only in libs
On mingw64 with c++11 support, the link libraries do contain a
nanosleep function, while it isn't exposed via the headers. Using
check_func_headers instead of a plain check_func fixes this
misdetection.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4046,7 +4046,7 @@ check_func mkstemp check_func mmap check_func mprotect # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that -check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; } +check_func_headers time.h nanosleep || { check_func_headers time.h nanosleep -lrt && add_extralibs -lrt; } check_func sched_getaffinity check_func setrlimit check_func strerror_r |