summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-10-11 18:14:47 -0400
committerDavid Robillard <d@drobilla.net>2024-10-11 18:14:47 -0400
commitc627dc84ede8b7c2c607ed1a871707969269748b (patch)
tree8144775b69b9e32796fb61bccfbf30fa7fe1b483
parentf5482ac7af7f2b96451fa7e88a6ab75467339273 (diff)
downloadpatchage-c627dc84ede8b7c2c607ed1a871707969269748b.tar.gz
patchage-c627dc84ede8b7c2c607ed1a871707969269748b.tar.bz2
patchage-c627dc84ede8b7c2c607ed1a871707969269748b.zip
Remove redundant default values for meson options
-rw-r--r--meson_options.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt
index edc88cd..be37ed4 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,16 +1,16 @@
# Copyright 2022-2023 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR GPL-3.0-or-later
-option('alsa', type: 'feature', value: 'auto', yield: true,
+option('alsa', type: 'feature', yield: true,
description: 'Build ALSA sequencer support')
option('checks', type: 'feature', value: 'enabled', yield: true,
description: 'Check for platform-specific features')
-option('jack', type: 'feature', value: 'auto', yield: true,
+option('jack', type: 'feature', yield: true,
description: 'Build JACK audio and MIDI support')
-option('jack_dbus', type: 'feature', value: 'auto', yield: true,
+option('jack_dbus', type: 'feature', yield: true,
description: 'Use JACK via D-Bus')
option('lint', type: 'boolean', value: false, yield: true,
@@ -19,7 +19,7 @@ option('lint', type: 'boolean', value: false, yield: true,
option('strict', type: 'boolean', value: false, yield: true,
description: 'Enable ultra-strict warnings')
-option('tests', type: 'feature', value: 'auto', yield: true,
+option('tests', type: 'feature', yield: true,
description: 'Build tests')
option('title', type: 'string', value: 'Patchage',