summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2021-06-14 18:14:54 -0400
committerPatrick Griffis <pgriffis@igalia.com>2021-07-20 13:09:57 -0500
commit7f5af593e8cebebd310d45b3708f69f46ff01c51 (patch)
treeb828a646b90da990a30cc222203d93d9c776b6a4
parent1d37844399452f66938183db40f1caca5e8c3911 (diff)
downloadlibsoup-7f5af593e8cebebd310d45b3708f69f46ff01c51.tar.gz
Meson: Fix fallback to sqlite3 subproject
Meson's wrapdb had both sqlite and sqlite3 but the former is outdated.
-rw-r--r--meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 03884d8f..1e81ef16 100644
--- a/meson.build
+++ b/meson.build
@@ -100,7 +100,8 @@ if not sqlite_dep.found()
endif
if not sqlite_dep.found()
- sqlite_dep = subproject('sqlite').get_variable('sqlite_dep')
+ # Allows fallback to subproject
+ sqlite_dep = dependency('sqlite3')
endif
libxml_dep = dependency('libxml-2.0', required: false)