[libgda] Options: renamed with-libsoup to libsoup



commit 6e80f3f8c348844b3b472342d77910798ab97d48
Author: Daniel Espinosa <esodan gmail com>
Date:   Sun Jan 31 15:14:31 2021 -0600

    Options: renamed with-libsoup to libsoup

 meson.build           | 2 +-
 meson_options.txt     | 2 +-
 providers/meson.build | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/meson.build b/meson.build
index f45197cf6..10b9e66c6 100644
--- a/meson.build
+++ b/meson.build
@@ -254,7 +254,7 @@ endif
 libcrypto_dep = dependency('libcrypto', version : '>=1.1', required: false)
 
 soup_dep = dependency('libsoup-2.4', required: false)
-if soup_dep.found() and get_option('with-libsoup')
+if soup_dep.found() and get_option('libsoup')
   libgda_dep += [soup_dep]
 endif
 
diff --git a/meson_options.txt b/meson_options.txt
index a0e8bcff3..e208696b4 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -5,7 +5,7 @@ option('help', type : 'boolean', value : true, description : 'Enable building he
 option('graphviz', type : 'boolean', value : false, description : 'Enable using Graphviz')
 option('json', type : 'boolean', value : true, description : 'Enable support for JSON, disabled by default')
 option('sqlcipher', type : 'boolean', value : true, description : 'Build SQLCipher database provider')
-option('with-libsoup', type : 'boolean', value : true, description : 'Enable libsoup support')
+option('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')
 option('with-examples', type : 'boolean', value : false, description : 'Compile examples [default=false')
diff --git a/providers/meson.build b/providers/meson.build
index 53d61febe..a6e8d6681 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() and 
get_option('enable-web') and get_option('experimental')
+if soup_dep.found() and get_option('libsoup') and mysql_dep.found() and postgres_dep.found() and 
get_option('enable-web') and get_option('experimental')
 subdir('web')
 endif


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