summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2019-01-04 23:31:37 +0400
committerMarc-André Lureau <marcandre.lureau@redhat.com>2019-01-14 14:58:39 +0400
commit68d2b9870d3aef3925ba6823f46d92203b59e56f (patch)
treef8dc6682e19f0b438ebf6a90f220b8465e403d1f /meson_options.txt
parent13c9cc173f63c2863e18710af8c3d77bd3811d8f (diff)
meson: choose a better default coroutine
Let's have a new 'auto' default value, and use winfibers on Windows. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Acked-by: Victor Toso <victortoso@redhat.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 09cab1e..1397664 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -45,7 +45,8 @@ option('usb-ids-path',
option('coroutine',
type : 'combo',
- choices : ['ucontext', 'gthread', 'winfiber'],
+ value : 'auto',
+ choices : ['auto', 'ucontext', 'gthread', 'winfiber'],
description : 'Use ucontext or GThread for coroutines')
option('introspection',