[libsoup] Meson: Fix fallback to sqlite3 subproject



commit fcc79a377ec1e8e38c0554233bb565e41e0e3e94
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 09886bf4..4dfd8c15 100644
--- a/meson.build
+++ b/meson.build
@@ -112,7 +112,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]