mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 13:33:28 +08:00
package/gnuradio: fix build by removing unneeded package patch
The gnuradio package patch 0001 was introduced in commit81e6541ef
"package/gnuradio: fix build with fmt >= 11.x" [1] while Buildroot was in a release client stabilization branch. It was first in included in the 2024.08-rc2 tag. This is why the gnuradio version was _not_ bumped at that time. At the same time, the gnuradio package was also broken in the "next" branch for the same reason. It was fixed by bumping the gnuradio version in commit101e7b69d
"package/gnuradio: bump version to 3.10.11.0" [2] which contained the 0001 patch. Both commits [1] and [2] are individually working. The gnuradio package fails to build since the merge commit3daa03752
"Merge branch 'next'" [3]. This commit fixes the issue by removing the package patch. Fixes: - http://autobuild.buildroot.org/results/dfda705bb1b3b975bde3d84c6b25a9b41c545c84 - http://autobuild.buildroot.org/results/7c32bd40b5e1420535734480bf5a4d4365b8896f - https://gitlab.com/buildroot.org/buildroot/-/jobs/7888800399 [1]81e6541efe
[2]101e7b69da
[3]3daa037528
Signed-off-by: Thomas Perale <thomas.perale@mind.be> Reviewed-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
parent
d91624ad47
commit
f634043b29
@ -1,38 +0,0 @@
|
||||
From 03c9a40883e610e54b8fc3c3ce1842d68d7ce2e4 Mon Sep 17 00:00:00 2001
|
||||
From: Kefu Chai <tchaikov@gmail.com>
|
||||
Date: Mon, 15 Jul 2024 09:27:16 +0800
|
||||
Subject: [PATCH] blocks,runtime: io_signature: include spdlog/*/ranges.h for
|
||||
using fmt::join()
|
||||
|
||||
fmt::join() was moved into fmt/ranges.h since fmt 11, so let's
|
||||
include the corresponding header in spdlog for using it.
|
||||
|
||||
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
|
||||
(cherry picked from commit 19b070051c1c2b5fb6f2da8fb6422b27418c3dfa)
|
||||
Signed-off-by: Jeff Long <willcode4@gmail.com>
|
||||
Upstream: https://github.com/gnuradio/gnuradio/commit/ead459813367e7fd679dad067d1b020010d49b4f
|
||||
[Julien: backported commit ead45981 from v3.10.11.0]
|
||||
Signed-off-by: Julien Olivain <ju.o@free.fr>
|
||||
---
|
||||
gr-blocks/lib/message_debug_impl.cc | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/gr-blocks/lib/message_debug_impl.cc b/gr-blocks/lib/message_debug_impl.cc
|
||||
index 1e81aec0d..415d2be97 100644
|
||||
--- a/gr-blocks/lib/message_debug_impl.cc
|
||||
+++ b/gr-blocks/lib/message_debug_impl.cc
|
||||
@@ -14,6 +14,11 @@
|
||||
#include <pmt/pmt.h>
|
||||
#include <spdlog/common.h>
|
||||
#include <spdlog/fmt/fmt.h>
|
||||
+#if __has_include(<spdlog/fmt/ranges.h>)
|
||||
+#include <spdlog/fmt/ranges.h>
|
||||
+#elif __has_include(<spdlog/fmt/bundled/ranges.h>)
|
||||
+#include <spdlog/fmt/bundled/ranges.h>
|
||||
+#endif
|
||||
#include <functional>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
--
|
||||
2.46.0
|
||||
|
Loading…
Reference in New Issue
Block a user