[FFmpeg-cvslog] configure: Check for nanosleep in headers as well, not only in libs
Martin Storsjö
git at videolan.org
Tue Aug 12 11:36:39 CEST 2014
ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Tue Aug 12 11:23:38 2014 +0200| [223c374a9d977fdfe9af94858693c632f644aac7] | committer: Michael Niedermayer
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.
Suggested-by: Hendrik Leppkes <h.leppkes at gmail.com>
See: [FFmpeg-devel] [PATCH] fix: 'make' with mingw32
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=223c374a9d977fdfe9af94858693c632f644aac7
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 0ac6132..7e6fe0a 100755
--- a/configure
+++ b/configure
@@ -4659,7 +4659,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_struct "sys/stat.h" "struct stat" st_mtim.tv_nsec -D_BSD_SOURCE
More information about the ffmpeg-cvslog
mailing list