diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-08-23 07:17:49 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-08-26 01:53:39 +0200 |
commit | 32726d5f4613392cb49ebf0144ef4cd5bf38c65a (patch) | |
tree | 2290801188d99c69660b93c335fdc4b878411016 /net-mail | |
parent | net-misc/rdate: remove unused patches (diff) | |
download | gentoo-32726d5f4613392cb49ebf0144ef4cd5bf38c65a.tar.gz gentoo-32726d5f4613392cb49ebf0144ef4cd5bf38c65a.tar.bz2 gentoo-32726d5f4613392cb49ebf0144ef4cd5bf38c65a.zip |
net-mail/mu: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/38253
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/mu/files/mu-1.12.2-musl.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/net-mail/mu/files/mu-1.12.2-musl.patch b/net-mail/mu/files/mu-1.12.2-musl.patch deleted file mode 100644 index 35f6017e56f3..000000000000 --- a/net-mail/mu/files/mu-1.12.2-musl.patch +++ /dev/null @@ -1,31 +0,0 @@ -From: https://github.com/djcb/mu/pull/2677 -From: Matthew Smith <matthew@gentoo.org> -Date: Mon, 1 Apr 2024 11:23:39 +0000 -Subject: [PATCH] mu-utils: Fix build with musl - -In musl, `stdout` is a macro that expands to `(stdout)`, and -`::(stdout)` is not valid C++. - -../mu-1.12.2/lib/utils/mu-utils.hh:268:32: error: expected - id-expression before '(' token - 268 | ::stdout); - | ^~~~~~ - -Nothing in the Mu namespace is named stdout, so it is safe to drop -the `::`. - -Bug: https://bugs.gentoo.org/928361 ---- a/lib/utils/mu-utils.hh -+++ b/lib/utils/mu-utils.hh -@@ -265,7 +265,7 @@ bool fputs_encoded (const std::string& str, FILE *stream); - template<typename...T> - static inline bool mu_print_encoded(fmt::format_string<T...> frm, T&&... args) noexcept { - return fputs_encoded(fmt::format(frm, std::forward<T>(args)...), -- ::stdout); -+ stdout); - } - - /** --- -2.44.0 - |