[libgda: 1/2] WEB: Fixing provider dependecy



commit 79aa8a043b70fc010d51fd95c0b2f0b8589d3d7f
Author: Pavlo Solntsev <p sun fun gmail com>
Date:   Thu Feb 21 11:58:41 2019 -0600

    WEB: Fixing provider dependecy
    
    WEB provider depends on MySQL. Therefore, web directory should be
    compiled only then MySQL provider is available. This MR introduce thi
    dependecy.

 providers/meson.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/providers/meson.build b/providers/meson.build
index b1f87a464..7de13d0ab 100644
--- a/providers/meson.build
+++ b/providers/meson.build
@@ -28,6 +28,6 @@ if mysql_dep.found()
 subdir('mysql')
 endif
 
-if soup_dep.found() and get_option('with-libsoup')
+if soup_dep.found() and get_option('with-libsoup') and mysql_dep.found()
 subdir('web')
-endif
\ No newline at end of file
+endif


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