diff options
author | Matthieu Bouron <matthieu.bouron@stupeflix.com> | 2016-02-25 15:00:59 +0100 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@stupeflix.com> | 2016-02-26 09:23:17 +0100 |
commit | 885a6d83247b76d4e58084440189620c6f22ca13 (patch) | |
tree | 6653b272e4c2129d4403b281d1cde78666bdddef | |
parent | 0eb0f29a404e62ac3926a3778656454460184baf (diff) | |
download | ffmpeg-885a6d83247b76d4e58084440189620c6f22ca13.tar.gz |
configure: only check dispatch header on darwin
Fixes build of lavd/jack on linux if dispatch happens to be available on
this platform. dispatch, as well as its dependencies kqueue and pwq are
generally not installed / distribued on linux systems. If it happens to
be the case, you want to explicitely link against the libraries (using
-ldispatch) as opposed to darwin where it is part of the standard
library and -ldispatch doesn't work.
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4533,6 +4533,7 @@ case $target_os in enabled x86_64 && objformat="macho64" enabled_any pic shared x86_64 || { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; } + check_header dispatch/dispatch.h ;; msys*) die "Native MSYS builds are discouraged, please use the MINGW environment."; @@ -5347,7 +5348,6 @@ check_func_headers glob.h glob enabled xlib && check_func_headers "X11/Xlib.h X11/extensions/Xvlib.h" XvGetPortAttribute -lXv -lX11 -lXext -check_header dispatch/dispatch.h check_header direct.h check_header dirent.h check_header dlfcn.h |