summaryrefslogtreecommitdiff
path: root/net-mail/mu/files/mu-1.12.0-cld2-opt.patch
diff options
context:
space:
mode:
Diffstat (limited to 'net-mail/mu/files/mu-1.12.0-cld2-opt.patch')
-rw-r--r--net-mail/mu/files/mu-1.12.0-cld2-opt.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/net-mail/mu/files/mu-1.12.0-cld2-opt.patch b/net-mail/mu/files/mu-1.12.0-cld2-opt.patch
deleted file mode 100644
index 124675868670..000000000000
--- a/net-mail/mu/files/mu-1.12.0-cld2-opt.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-https://github.com/djcb/mu/pull/2632
-
---- a/meson.build
-+++ b/meson.build
-@@ -189,11 +189,11 @@ else
- endif
-
- # optionally, use Compact Language Detector2 if we can find it.
--cld2_dep = meson.get_compiler('cpp').find_library('cld2', required: false)
--if cld2_dep.found()
-+cld2_dep = meson.get_compiler('cpp').find_library('cld2', required: get_option('cld2'))
-+if not get_option('cld2').disabled() and cld2_dep.found()
- config_h_data.set('HAVE_CLD2', 1)
- else
-- message('CLD2 not found; no support for language detection')
-+ message('CLD2 not found or disabled; no support for language detection')
- endif
-
- # note: these are for the unit-tests
---- a/meson_options.txt
-+++ b/meson_options.txt
-@@ -24,6 +24,11 @@ option('guile',
- value: 'auto',
- description: 'build the guile scripting support (requires guile-3.x)')
-
-+option('cld2',
-+ type : 'feature',
-+ value: 'auto',
-+ description: 'Compact Language Detector2')
-+
- # by default, this uses guile_dep.get_variable(pkgconfig: 'extensiondir')
- option('guile-extension-dir',
- type: 'string',
---
-2.44.0
-