summaryrefslogtreecommitdiff
path: root/config/libc/mingw.in
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2016-11-13 18:33:24 (GMT)
committerGitHub <noreply@github.com>2016-11-13 18:33:24 (GMT)
commit8fbe000639d408f61ba216bbeb42d4a55e45a00a (patch)
treedb7b5888c7f3202a59d23389ed643205e94a63e4 /config/libc/mingw.in
parent2d2bf76e9132693e6c7d424f646dc4c92eb17434 (diff)
parent2cc9e68596005f5e742b5aae0bb8b73cd15cf367 (diff)
Merge pull request #368 from dremon/master
MinGW: add C++11 posix threads support
Diffstat (limited to 'config/libc/mingw.in')
-rw-r--r--config/libc/mingw.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/libc/mingw.in b/config/libc/mingw.in
index 88088e9..45b6971 100644
--- a/config/libc/mingw.in
+++ b/config/libc/mingw.in
@@ -3,12 +3,14 @@
## depends on WINDOWS
##
## select LIBC_SUPPORT_THREADS_NATIVE
+## select LIBC_SUPPORT_THREADS_POSIX
## select CC_CORE_PASS_2_NEEDED
##
## help The de-facto standard for Mingw distributions.
config THREADS
- default "win32"
+ default "win32" if THREADS_NATIVE
+ default "posix" if THREADS_POSIX
choice
bool