summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2022-09-03 10:42:43 +0200
committerJens Georg <mail@jensge.org>2022-09-03 10:43:03 +0200
commitd70935ae60b9c4388c82922149a2fab2d292de4c (patch)
tree6a8dea1532f4a7f2d37f595cb9caf720a64db3be
parent7a7760516ac295eb0bd92b11d28dea417c75561a (diff)
downloadgupnp-d70935ae60b9c4388c82922149a2fab2d292de4c.tar.gz
build: Add missing libxml2_dep variable
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index caad6e6..d854e6c 100644
--- a/meson.build
+++ b/meson.build
@@ -30,8 +30,8 @@ conf.set('GLIB_VERSION_MAX_ALLOWED', 'GLIB_VERSION_2_70'.format(glib_version.und
subdir('internal')
gssdp_dep = dependency('gssdp-1.6', version : '>= 1.5.2', default_options: ['sniffer=false'], fallback: 'gssdp-1.6')
-
gio_unix = dependency('gio-unix-2.0', version: '>= 2.44', required: host_machine.system() != 'windows')
+libxml_dep = dependency('libxml-2.0')
dependencies = [
dependency('glib-2.0', version : '>= ' + glib_version),
@@ -40,7 +40,7 @@ dependencies = [
dependency('gobject-2.0', version : '>= ' + glib_version),
dependency('libsoup-3.0', version : '>= 2.99.0'),
gssdp_dep,
- dependency('libxml-2.0'),
+ libxml_dep
]
subdir('libgupnp')