[libgda] LDAP provider now is experimental



commit c4d2f82be52a5368803ddab3d16a6d5d5c83ac98
Author: Daniel Espinosa <esodan gmail com>
Date:   Fri Apr 5 17:17:19 2019 -0600

    LDAP provider now is experimental

 libgda/meson.build                | 2 +-
 libgda/sqlite/virtual/meson.build | 2 +-
 providers/meson.build             | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/libgda/meson.build b/libgda/meson.build
index 2ba015703..6fe7ab5b5 100644
--- a/libgda/meson.build
+++ b/libgda/meson.build
@@ -263,7 +263,7 @@ libgda_source_all += [
        ]
 
 ldap_cargs = []
-if ldap_found
+if ldap_found and get_option('enable-experimental')
 ldaph_sources = files ([
        'gda-data-model-ldap.h',
        'gda-tree-mgr-ldap.h'
diff --git a/libgda/sqlite/virtual/meson.build b/libgda/sqlite/virtual/meson.build
index bdd40c69a..941e46061 100644
--- a/libgda/sqlite/virtual/meson.build
+++ b/libgda/sqlite/virtual/meson.build
@@ -23,7 +23,7 @@ libgda_virtual_sources = files(
        )
 libgda_virtual_sources += virtual_headers
 
-if ldap_found
+if ldap_found and get_option('enable-experimental')
 ldaph_virtual = files('gda-ldap-connection.h')
 ldapc_virtual= files('gda-ldap-connection.c')
 libgda_virtual_sources += [
diff --git a/providers/meson.build b/providers/meson.build
index 52b24b86f..9ea47ac7e 100644
--- a/providers/meson.build
+++ b/providers/meson.build
@@ -12,7 +12,7 @@ if postgres_dep.found()
 subdir('postgres')
 endif
 
-if ldap_found
+if ldap_found and get_option('enable-experimental')
 subdir('ldap')
 endif
 


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