e3d2082b35
commit e37c110
("package/gnuradio: bump version to 3.10.4.0")
included two numbered patches. Those are generating
"make check-package" warnings.
Fixes:
make check-package
package/gnuradio/0001-blocks-Including-missing-vector-in-blockinterleaver.patch:4: generate your patches with 'git format-patch -N'
package/gnuradio/0002-blocks-blockinterleaving.h-add-missing-cstddef-heade.patch:4: generate your patches with 'git format-patch -N'
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 901c2ad1ac88908a2e6db5615d5af39a218d826d Mon Sep 17 00:00:00 2001
|
||
From: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
|
||
Date: Fri, 23 Sep 2022 08:41:26 +0200
|
||
Subject: [PATCH] blocks/blockinterleaving.h: add missing cstddef header
|
||
(required for size_t)
|
||
|
||
Fix build failure like:
|
||
|
||
gnuradio/gr-blocks/lib/../include/gnuradio/blocks/blockinterleaving.h:25:36: error: ‘size_t’ was not declared in this scope
|
||
|
||
This failure is due to the miss of cstddef include
|
||
|
||
Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
|
||
[Upstream status: https://github.com/gnuradio/gnuradio/pull/6188]
|
||
---
|
||
gr-blocks/include/gnuradio/blocks/blockinterleaving.h | 1 +
|
||
1 file changed, 1 insertion(+)
|
||
|
||
diff --git a/gr-blocks/include/gnuradio/blocks/blockinterleaving.h b/gr-blocks/include/gnuradio/blocks/blockinterleaving.h
|
||
index df831fe5a..33c59e35b 100644
|
||
--- a/gr-blocks/include/gnuradio/blocks/blockinterleaving.h
|
||
+++ b/gr-blocks/include/gnuradio/blocks/blockinterleaving.h
|
||
@@ -13,6 +13,7 @@
|
||
|
||
#include <gnuradio/blocks/api.h>
|
||
#include <vector>
|
||
+#include <cstddef>
|
||
|
||
namespace gr {
|
||
namespace blocks {
|
||
--
|
||
2.35.1
|
||
|