summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2017-11-10 16:31:39 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2017-11-10 16:31:39 +0100
commitcdc33bf54f501a8b4574f86945628ab6c2036d64 (patch)
tree60d6c5caec399da3ae7b727bc841f1baa1b2bbf3 /meson_options.txt
parent327f1eee192a742a92e57345d25eda85cce630e6 (diff)
downloadgvfs-cdc33bf54f501a8b4574f86945628ab6c2036d64.tar.gz
build: Rename build options
Following the new meson porting guidelines, this patch renames the build options. The list of changes is as follows: - Remove the enable prefix from boolean options. - Remove the with prefix from string options. - The character separator from multi-word options has been changed to underscore. https://bugzilla.gnome.org/show_bug.cgi?id=786149
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt62
1 files changed, 31 insertions, 31 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 205bb61f..de30b570 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,34 +1,34 @@
-option('with-dbus-service-dir', type: 'string', value: '', description: 'custom directory for dbus service files')
-option('with-gio-module-dir', type: 'string', value: '', description: 'custom directory for gio modules')
-option('with-systemduserunitdir', type: 'string', value: '', description: 'custom directory for systemd user units, or \'no\' to disable')
-option('with-tmpfilesdir', type: 'string', value: '', description: 'custom directory for tmpfiles.d config files, or \'no\' to disable')
+option('dbus_service_dir', type: 'string', value: '', description: 'custom directory for dbus service files')
+option('gio_module_dir', type: 'string', value: '', description: 'custom directory for gio modules')
+option('systemduserunitdir', type: 'string', value: '', description: 'custom directory for systemd user units, or \'no\' to disable')
+option('tmpfilesdir', type: 'string', value: '', description: 'custom directory for tmpfiles.d config files, or \'no\' to disable')
-option('enable-admin', type: 'boolean', value: true, description: 'build with admin backend')
-option('enable-afc', type: 'boolean', value: true, description: 'build with afc backend and volume monitor')
-option('enable-afp', type: 'boolean', value: true, description: 'build with afp backends')
-option('enable-archive', type: 'boolean', value: true, description: 'build with archive backend')
-option('enable-cdda', type: 'boolean', value: true, description: 'build with cdda backend')
-option('enable-dnssd', type: 'boolean', value: true, description: 'build with dnssd backend')
-option('enable-gdu', type: 'boolean', value: false, description: 'build with gdu volume monitor')
-option('enable-goa', type: 'boolean', value: true, description: 'build with goa volume monitor')
-option('enable-google', type: 'boolean', value: true, description: 'build with google backend')
-option('enable-gphoto2', type: 'boolean', value: true, description: 'build with gphoto2 backend and volume monitor')
-option('enable-http', type: 'boolean', value: true, description: 'build with http/dav backends')
-option('enable-mtp', type: 'boolean', value: true, description: 'build with mtp backend and volume monitor')
-option('enable-nfs', type: 'boolean', value: true, description: 'build with nfs backend')
-option('enable-smb', type: 'boolean', value: true, description: 'build with smb backends')
-option('enable-udisks2', type: 'boolean', value: true, description: 'build with udisks2 volume monitor')
+option('admin', type: 'boolean', value: true, description: 'build with admin backend')
+option('afc', type: 'boolean', value: true, description: 'build with afc backend and volume monitor')
+option('afp', type: 'boolean', value: true, description: 'build with afp backends')
+option('archive', type: 'boolean', value: true, description: 'build with archive backend')
+option('cdda', type: 'boolean', value: true, description: 'build with cdda backend')
+option('dnssd', type: 'boolean', value: true, description: 'build with dnssd backend')
+option('gdu', type: 'boolean', value: false, description: 'build with gdu volume monitor')
+option('goa', type: 'boolean', value: true, description: 'build with goa volume monitor')
+option('google', type: 'boolean', value: true, description: 'build with google backend')
+option('gphoto2', type: 'boolean', value: true, description: 'build with gphoto2 backend and volume monitor')
+option('http', type: 'boolean', value: true, description: 'build with http/dav backends')
+option('mtp', type: 'boolean', value: true, description: 'build with mtp backend and volume monitor')
+option('nfs', type: 'boolean', value: true, description: 'build with nfs backend')
+option('smb', type: 'boolean', value: true, description: 'build with smb backends')
+option('udisks2', type: 'boolean', value: true, description: 'build with udisks2 volume monitor')
-option('enable-bluray', type: 'boolean', value: true, description: 'build with bluray metadata support')
-option('enable-fuse', type: 'boolean', value: true, description: 'build with fuse support')
-option('enable-gcr', type: 'boolean', value: true, description: 'build with gcr certificate support')
-option('enable-gcrypt', type: 'boolean', value: true, description: 'build with gcrypt support')
-option('enable-gudev', type: 'boolean', value: true, description: 'build with gudev device support')
-option('enable-keyring', type: 'boolean', value: true, description: 'build with keyring support')
-option('enable-logind', type: 'boolean', value: true, description: 'build with logind support')
-option('enable-libusb', type: 'boolean', value: true, description: 'build with libusb interruption support')
+option('bluray', type: 'boolean', value: true, description: 'build with bluray metadata support')
+option('fuse', type: 'boolean', value: true, description: 'build with fuse support')
+option('gcr', type: 'boolean', value: true, description: 'build with gcr certificate support')
+option('gcrypt', type: 'boolean', value: true, description: 'build with gcrypt support')
+option('gudev', type: 'boolean', value: true, description: 'build with gudev device support')
+option('keyring', type: 'boolean', value: true, description: 'build with keyring support')
+option('logind', type: 'boolean', value: true, description: 'build with logind support')
+option('libusb', type: 'boolean', value: true, description: 'build with libusb interruption support')
-option('enable-devel-utils', type: 'boolean', value: false, description: 'build with development utility programs')
-option('enable-installed-tests', type: 'boolean', value: false, description: 'enable installed unit tests')
-option('enable-man', type: 'boolean', value: false, description: 'generate man pages')
-option('enable-programs', type: 'boolean', value: false, description: 'generate deprecated programs')
+option('devel_utils', type: 'boolean', value: false, description: 'build with development utility programs')
+option('installed_tests', type: 'boolean', value: false, description: 'enable installed unit tests')
+option('man', type: 'boolean', value: false, description: 'generate man pages')
+option('deprecated_programs', type: 'boolean', value: false, description: 'generate deprecated programs')