summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-03-25 19:08:18 +0100
committerMatthew Smith <matthew@gentoo.org>2024-04-14 18:36:45 +0000
commit8ac404a9fb5f456a96e196809537479a8c611b5d (patch)
tree59b50b2457bdda1d9cd5424ff0d4392c539bb9c9 /net-mail
parentdev-util/rebar: remove unused patch (diff)
downloadgentoo-8ac404a9fb5f456a96e196809537479a8c611b5d.tar.gz
gentoo-8ac404a9fb5f456a96e196809537479a8c611b5d.tar.bz2
gentoo-8ac404a9fb5f456a96e196809537479a8c611b5d.zip
net-mail/mu: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Matthew Smith <matthew@gentoo.org>
Diffstat (limited to 'net-mail')
-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
-