summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2014-05-17 11:47:28 +1000
committerTim Mayberry <mojofunk@gmail.com>2015-01-02 22:11:59 +0700
commit50c4385b6b00daab8964938b7c2b97b40d27e923 (patch)
tree2fafce037616c70032a90dc7504a9119e41b365b /wscript
parent6bb82bfd305e4527d328995b4f3bb5872e117447 (diff)
Increase minimum required Glib version to 2.28 for g_get_monotonic_time
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 80c8691428..3728c37951 100644
--- a/wscript
+++ b/wscript
@@ -819,7 +819,7 @@ def configure(conf):
if re.search ("linux", sys.platform) != None and Options.options.dist_target != 'mingw':
autowaf.check_pkg(conf, 'alsa', uselib_store='ALSA')
- autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.2', mandatory=True)
+ autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.28', mandatory=True)
autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.2', mandatory=True)
autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.32.0', mandatory=True)
autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18', mandatory=True)