[libgda] Web provider now is experimental
- From: Daniel Espinosa Ortiz <despinosa src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgda] Web provider now is experimental
- Date: Fri, 5 Apr 2019 23:27:21 +0000 (UTC)
commit 425829dc244cbbb5e138bac3f54a0dc5487d62ef
Author: Daniel Espinosa <esodan gmail com>
Date: Fri Apr 5 17:26:02 2019 -0600
Web provider now is experimental
Also requires enable-web to true, in order to build
meson_options.txt | 5 +++--
providers/meson.build | 2 +-
2 files changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/meson_options.txt b/meson_options.txt
index ef1e3a2f9..9ee9ae292 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -11,9 +11,10 @@ option('with-libsecret', type : 'boolean', value : false, description : 'Enable
option('with-gnome-keyring', type : 'boolean', value : false, description : 'Enable gnome-keyring support')
option('enable-debug', type : 'boolean', value : false, description : 'Enable debug mode')
option('with-examples', type : 'boolean', value : false, description : 'Compile examples [default=false')
-option('enable-tools', type : 'boolean', value : false, description : 'Enable build GUI Tools')
+option('enable-tools', type : 'boolean', value : false, description : 'Enable build experimental GUI Tools')
option('glade-catalog-dir', type : 'string', value : '', description : 'Use the given directory to install
glade catalog files. If glade is not available this option is ignored. If it is not given the valaue from
pkg-config will be used')
option('glade-pixmap-dir', type : 'string', value : '', description : 'Use the given directory to install
glade pixmap files. If glade is not available this option is ignored. If it is not given the valaue from
pkg-config will be used')
option('enable-gtk-doc', type : 'boolean', value : false, description : 'Enable documentation generation
[default = false]')
option('enable-experimental', type : 'boolean', value : false, description : 'Enable experimental features
[default = false]')
-option('enable-ldap', type : 'boolean', value : false, description : 'Enable LDAP provider')
+option('enable-ldap', type : 'boolean', value : false, description : 'Enable experimental LDAP provider')
+option('enable-web', type : 'boolean', value : false, description : 'Enable experimental WEB provider')
diff --git a/providers/meson.build b/providers/meson.build
index 57492154e..445482246 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') and mysql_dep.found() and postgres_dep.found()
+if soup_dep.found() and get_option('with-libsoup') and mysql_dep.found() and postgres_dep.found() and
get_option('enable-web') and get_option('enable-experimental')
subdir('web')
endif
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]