[libsoup/gnome-3-38] Meson: Fix fallback to sqlite3 subproject



commit 7f5af593e8cebebd310d45b3708f69f46ff01c51
Author: Xavier Claessens <xavier claessens collabora com>
Date:   Mon Jun 14 18:14:54 2021 -0400

    Meson: Fix fallback to sqlite3 subproject
    
    Meson's wrapdb had both sqlite and sqlite3 but the former is outdated.

 meson.build | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
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)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]