Skip to content
Snippets Groups Projects
Commit bd0fba87 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

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.
parent d06ca204
No related branches found
No related tags found
No related merge requests found
...@@ -3850,7 +3850,8 @@ check_header windows.h ...@@ -3850,7 +3850,8 @@ check_header windows.h
check_header X11/extensions/XvMClib.h check_header X11/extensions/XvMClib.h
if ! disabled w32threads && ! enabled pthreads; then 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 fi
# check for some common methods of building with pthread support # check for some common methods of building with pthread support
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment