summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Beierlein <tomjbe@gentoo.org>2022-10-22 10:09:57 +0200
committerThomas Beierlein <tomjbe@gentoo.org>2022-10-22 10:09:57 +0200
commit15c69a630577d3a7e84cf8180d75f7a6be49acce (patch)
treecffd722db2262095cd2442850eb03c0993fd5c72 /net-wireless/gnuradio/files
parentnet-wireless/gnuradio: drop 3.10.3.0, 3.10.3.0-r1 (diff)
downloadgentoo-15c69a630577d3a7e84cf8180d75f7a6be49acce.tar.gz
gentoo-15c69a630577d3a7e84cf8180d75f7a6be49acce.tar.bz2
gentoo-15c69a630577d3a7e84cf8180d75f7a6be49acce.zip
net-wireless/gnuradio: add 3.10.4.0
Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
Diffstat (limited to 'net-wireless/gnuradio/files')
-rw-r--r--net-wireless/gnuradio/files/gnuradio-3.10.4.0-fix-blockinterleaving.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/net-wireless/gnuradio/files/gnuradio-3.10.4.0-fix-blockinterleaving.patch b/net-wireless/gnuradio/files/gnuradio-3.10.4.0-fix-blockinterleaving.patch
new file mode 100644
index 000000000000..b2c8270338c5
--- /dev/null
+++ b/net-wireless/gnuradio/files/gnuradio-3.10.4.0-fix-blockinterleaving.patch
@@ -0,0 +1,26 @@
+diff --git a/gr-blocks/include/gnuradio/blocks/blockinterleaving.h b/gr-blocks/include/gnuradio/blocks/blockinterleaving.h
+index 9d4e0f2..f6b8bc6 100644
+--- a/gr-blocks/include/gnuradio/blocks/blockinterleaving.h
++++ b/gr-blocks/include/gnuradio/blocks/blockinterleaving.h
+@@ -12,7 +12,8 @@
+ #define INCLUDED_GR_BLOCKS_BLOCKINTERLEAVING_H
+
+ #include <gnuradio/blocks/api.h>
+-
++#include <cstddef>
++#include <vector>
+
+ namespace gr {
+ namespace blocks {
+diff --git a/gr-blocks/lib/blockinterleaving.cc b/gr-blocks/lib/blockinterleaving.cc
+index fc5873e..768ad9e 100644
+--- a/gr-blocks/lib/blockinterleaving.cc
++++ b/gr-blocks/lib/blockinterleaving.cc
+@@ -12,6 +12,7 @@
+ #include <spdlog/fmt/fmt.h>
+ #include <algorithm>
+ #include <numeric>
++#include <vector>
+
+ namespace gr {
+ namespace blocks {