summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2018-06-05 11:26:57 +0200
committerFrediano Ziglio <fziglio@redhat.com>2018-06-05 14:09:55 +0100
commit72b0d603e128cd3af15974fe6b3e4b56ea9c6f34 (patch)
treef48c56a1cc964c8cf8c74c0e49f42c2e3cbf6277 /meson_options.txt
parente98f8a430f7e2fd64dab74f9b9a85ee2dfa1b92f (diff)
build: Disable celt 0.5.1 by default
This version of the CELT codec has long been obsolete, and Opus support has been added nearly 5 years ago. It's time we move on and try to stop using Celt ;) This commit disables CELT by default, but since this could be an unexpected change for packagers, if CELT 0.5.1 development headers are installed, it will error out unless --enable-celt051/--disable-celt051 has been explicitly specified. Signed-off-by: Christophe Fergeau <cfergeau@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 5189f4f..9f07bcc 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -12,8 +12,8 @@ option('extra-checks',
option('celt051',
type : 'boolean',
- value : true,
- description: 'Enable celt051 audio codec (default=true)')
+ value : false,
+ description: 'Enable celt051 audio codec (default=false)')
option('python-checks',
type : 'boolean',