[libgda] meson: introducing disable-sqlcipher option



commit c184a79ebdef5f38618e142f069c66261131683b
Author: Daniel Espinosa Ortiz <esodan gmail com>
Date:   Thu Mar 7 17:10:37 2019 -0600

    meson: introducing disable-sqlcipher option
    
    Replace disable-crypto option

 meson_options.txt     | 2 +-
 providers/meson.build | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/meson_options.txt b/meson_options.txt
index b08bed0b2..a1d6c0652 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -5,7 +5,7 @@ option('with-goocanvas', type : 'boolean', value : false, description : 'Enable
 option('with-graphviz', type : 'boolean', value : false, description : 'Enable using Graphviz')
 option('enable-json', type : 'boolean', value : true, description : 'Enable support for JSON, disabled by 
default')
 option('enable-gda-gi', type : 'boolean', value : false, description : 'Enable GObject Introspection for 
libgda')
-option('disable-crypto', type : 'boolean', value : false, description : 'Disable SQLCipher database provider 
(using the libcrypto library, part of OpenSSL)')
+option('disable-sqlcipher', type : 'boolean', value : false, description : 'Disable SQLCipher database 
provider')
 option('with-libsoup', type : 'boolean', value : true, description : 'Enable libsoup support')
 option('with-libsecret', type : 'boolean', value : false, description : 'Enable libsecret support')
 option('with-gnome-keyring', type : 'boolean', value : false, description : 'Enable gnome-keyring support')
diff --git a/providers/meson.build b/providers/meson.build
index 35655d5bf..52b24b86f 100644
--- a/providers/meson.build
+++ b/providers/meson.build
@@ -4,7 +4,7 @@ subdir('reuseable')
 subdir('sqlite')
 subdir('skel-implementation')
 
-if sqlcipher_dep.found() and libcrypto_dep.found () and not get_option('disable-crypto')
+if sqlcipher_dep.found() and not get_option('disable-sqlcipher')
 subdir('sqlcipher')
 endif
 


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