summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2022-10-11 00:04:32 +0200
committerJens Georg <mail@jensge.org>2022-10-11 00:04:32 +0200
commit408e1622cb20d08ff6f5cd5235802ffbc4658817 (patch)
tree49b0a9b72cd67adf674b7d7c10317acbb8450caa
parent7ecb930d93714b34e751d63a1db47028a2bbf7fe (diff)
downloadgssdp-408e1622cb20d08ff6f5cd5235802ffbc4658817.tar.gz
build: Fix glib version hack
-rw-r--r--meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 3834021..d14f0a2 100644
--- a/meson.build
+++ b/meson.build
@@ -42,9 +42,9 @@ conf.set('HAVE_SIOCGIFINDEX', siocgifindex_available)
getipnettable2_available = cc.compiles(files('build-aux/getipnettable2-test.c'), args: '-liphlpapi', name: 'GetIpNetTable2 is available')
conf.set('HAVE_GETIPNETTABLE2', getipnettable2_available)
-glib_version = '2.69'
-conf.set('GLIB_VERSION_MIN_REQUIRED', 'GLIB_VERSION_2_70'.format(glib_version.underscorify()))
-conf.set('GLIB_VERSION_MAX_ALLOWED', 'GLIB_VERSION_2_70'.format(glib_version.underscorify()))
+glib_version = '2.70'
+conf.set('GLIB_VERSION_MIN_REQUIRED', 'GLIB_VERSION_@0@'.format(glib_version.underscorify()))
+conf.set('GLIB_VERSION_MAX_ALLOWED', 'GLIB_VERSION_@0@'.format(glib_version.underscorify()))