diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-12-23 04:24:52 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-12-25 13:00:49 +0100 |
commit | bd0fba87972b1be826361a5acda363586708d38d (patch) | |
tree | e3c55887e2a8ec4b9c6e0e71e43d6a865825f6d8 /configure | |
parent | d06ca2040c0f30345b4aa8e83d824297535953c5 (diff) | |
download | ffmpeg-bd0fba87972b1be826361a5acda363586708d38d.tar.gz |
configure: Explicitly disable w32threads if the test for it fails
This avoids false positive enabling of w32threads if explicitly
requested on the command line, but dependencies are missing.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3850,7 +3850,8 @@ check_header windows.h check_header X11/extensions/XvMClib.h if ! disabled w32threads && ! enabled pthreads; then - check_func_headers "windows.h process.h" _beginthreadex && enable w32threads + check_func_headers "windows.h process.h" _beginthreadex && + enable w32threads || disable w32threads fi # check for some common methods of building with pthread support |