mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 14:44:11 +02:00
Backport patch for libfmt-11 compatibility. Closes: https://bugs.gentoo.org/938105 Signed-off-by: Alfred Wingate <parona@protonmail.com> Signed-off-by: Michał Górny <mgorny@gentoo.org>
25 lines
726 B
Diff
25 lines
726 B
Diff
https://gitlab.com/mbunkus/mkvtoolnix/-/merge_requests/2259
|
|
https://gitlab.com/mbunkus/mkvtoolnix/-/commit/b57dde69dc80b151844e0762a2ae6bca3ba86d95
|
|
|
|
From b57dde69dc80b151844e0762a2ae6bca3ba86d95 Mon Sep 17 00:00:00 2001
|
|
From: Kefu Chai <tchaikov@gmail.com>
|
|
Date: Mon, 15 Jul 2024 11:10:09 +0800
|
|
Subject: [PATCH] fix build with fmt v11
|
|
|
|
fmt::join() was moved into fmt/ranges.h since fmt 11, so let's
|
|
include this header for using it.
|
|
|
|
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
|
|
--- a/src/common/common.h
|
|
+++ b/src/common/common.h
|
|
@@ -35,6 +35,7 @@
|
|
|
|
#include <fmt/format.h>
|
|
#include <fmt/ostream.h>
|
|
+#include <fmt/ranges.h>
|
|
|
|
#include <boost/algorithm/string.hpp>
|
|
#include <boost/multiprecision/cpp_int.hpp>
|
|
--
|
|
GitLab
|
|
|