Commit 8ce2b76b authored by Tim-Philipp Müller's avatar Tim-Philipp Müller Committed by Olivier Crête

meson: add fallbacks for glib and gio

parent 15c2d359
...@@ -163,8 +163,10 @@ foreach w : warnings ...@@ -163,8 +163,10 @@ foreach w : warnings
endforeach endforeach
# Dependencies # Dependencies
glib_dep = dependency('gio-2.0', version: glib_req) glib_dep = dependency('gio-2.0', version: glib_req,
gthread_dep = dependency('gthread-2.0') fallback: ['glib', 'libgio_dep'])
gthread_dep = dependency('gthread-2.0',
fallback: ['glib', 'libgthread_dep'])
# Cryto library # Cryto library
opt_cryptolib = get_option('crypto-library') opt_cryptolib = get_option('crypto-library')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment