]> git.pld-linux.org Git - packages/gnuradio.git/blob - gnuradio-boost.patch
- added boost patch, more dependencies
[packages/gnuradio.git] / gnuradio-boost.patch
1 --- gnuradio-3.8.0.0/gnuradio-runtime/lib/block.cc.orig 2019-08-09 23:40:34.000000000 +0200
2 +++ gnuradio-3.8.0.0/gnuradio-runtime/lib/block.cc      2020-07-30 19:53:36.944956519 +0200
3 @@ -61,7 +61,7 @@
4  {
5      global_block_registry.register_primitive(alias(), this);
6      message_port_register_in(d_system_port);
7 -    set_msg_handler(d_system_port, boost::bind(&block::system_handler, this, _1));
8 +    set_msg_handler(d_system_port, boost::bind(&block::system_handler, this, boost::placeholders::_1));
9  
10      configure_default_loggers(d_logger, d_debug_logger, symbol_name());
11  }
12 --- gnuradio-3.8.0.0/gr-blocks/lib/mute_impl.cc.orig    2019-08-09 23:40:34.000000000 +0200
13 +++ gnuradio-3.8.0.0/gr-blocks/lib/mute_impl.cc 2020-07-30 20:01:57.627851457 +0200
14 @@ -47,7 +47,7 @@
15  {
16      this->message_port_register_in(pmt::intern("set_mute"));
17      this->set_msg_handler(pmt::intern("set_mute"),
18 -                          boost::bind(&mute_impl<T>::set_mute_pmt, this, _1));
19 +                          boost::bind(&mute_impl<T>::set_mute_pmt, this, boost::placeholders::_1));
20  }
21  
22  template <class T>
23 --- gnuradio-3.8.0.0/gr-blocks/lib/wavfile.cc.orig      2019-08-09 23:40:34.000000000 +0200
24 +++ gnuradio-3.8.0.0/gr-blocks/lib/wavfile.cc   2020-07-30 20:11:47.698777860 +0200
25 @@ -26,7 +26,7 @@
26  
27  #include <gnuradio/blocks/wavfile.h>
28  #include <stdint.h>
29 -#include <boost/detail/endian.hpp> //BOOST_BIG_ENDIAN
30 +#include <boost/predef/other/endian.h>
31  #include <cstring>
32  
33  namespace gr {
34 @@ -35,7 +35,7 @@
35  
36  // Basically, this is the opposite of htonx() and ntohx()
37  // Define host to/from worknet (little endian) short and long
38 -#ifdef BOOST_BIG_ENDIAN
39 +#if BOOST_ENDIAN_BIG_BYTE
40  
41  static inline uint16_t __gri_wav_bs16(uint16_t x) { return (x >> 8) | (x << 8); }
42  
43 @@ -57,7 +57,7 @@
44  #define htows(x) uint16_t(x)
45  #define wtohs(x) uint16_t(x)
46  
47 -#endif // BOOST_BIG_ENDIAN
48 +#endif // BOOST_ENDIAN_BIG_BYTE
49  
50  // WAV files are always little-endian, so we need some byte switching macros
51  static inline uint32_t host_to_wav(uint32_t x) { return htowl(x); }
52 --- gnuradio-3.8.0.0/gr-blocks/lib/copy_impl.cc.orig    2019-08-09 23:40:34.000000000 +0200
53 +++ gnuradio-3.8.0.0/gr-blocks/lib/copy_impl.cc 2020-07-30 20:14:40.057820267 +0200
54 @@ -44,7 +44,7 @@
55        d_enabled(true)
56  {
57      message_port_register_in(pmt::mp("en"));
58 -    set_msg_handler(pmt::mp("en"), boost::bind(&copy_impl::handle_enable, this, _1));
59 +    set_msg_handler(pmt::mp("en"), boost::bind(&copy_impl::handle_enable, this, boost::placeholders::_1));
60  }
61  
62  copy_impl::~copy_impl() {}
63 --- gnuradio-3.8.0.0/gr-blocks/lib/message_debug_impl.cc.orig   2019-08-09 23:40:34.000000000 +0200
64 +++ gnuradio-3.8.0.0/gr-blocks/lib/message_debug_impl.cc        2020-07-30 20:19:32.656506428 +0200
65 @@ -90,14 +90,14 @@
66      : block("message_debug", io_signature::make(0, 0, 0), io_signature::make(0, 0, 0))
67  {
68      message_port_register_in(pmt::mp("print"));
69 -    set_msg_handler(pmt::mp("print"), boost::bind(&message_debug_impl::print, this, _1));
70 +    set_msg_handler(pmt::mp("print"), boost::bind(&message_debug_impl::print, this, boost::placeholders::_1));
71  
72      message_port_register_in(pmt::mp("store"));
73 -    set_msg_handler(pmt::mp("store"), boost::bind(&message_debug_impl::store, this, _1));
74 +    set_msg_handler(pmt::mp("store"), boost::bind(&message_debug_impl::store, this, boost::placeholders::_1));
75  
76      message_port_register_in(pmt::mp("print_pdu"));
77      set_msg_handler(pmt::mp("print_pdu"),
78 -                    boost::bind(&message_debug_impl::print_pdu, this, _1));
79 +                    boost::bind(&message_debug_impl::print_pdu, this, boost::placeholders::_1));
80  }
81  
82  message_debug_impl::~message_debug_impl() {}
83 --- gnuradio-3.8.0.0/gr-blocks/lib/message_strobe_impl.cc.orig  2019-08-09 23:40:34.000000000 +0200
84 +++ gnuradio-3.8.0.0/gr-blocks/lib/message_strobe_impl.cc       2020-07-30 20:20:10.985184522 +0200
85 @@ -54,7 +54,7 @@
86  
87      message_port_register_in(pmt::mp("set_msg"));
88      set_msg_handler(pmt::mp("set_msg"),
89 -                    boost::bind(&message_strobe_impl::set_msg, this, _1));
90 +                    boost::bind(&message_strobe_impl::set_msg, this, boost::placeholders::_1));
91  }
92  
93  message_strobe_impl::~message_strobe_impl() {}
94 --- gnuradio-3.8.0.0/gr-blocks/lib/message_strobe_random_impl.cc.orig   2019-08-09 23:40:34.000000000 +0200
95 +++ gnuradio-3.8.0.0/gr-blocks/lib/message_strobe_random_impl.cc        2020-07-30 20:20:36.996549557 +0200
96 @@ -75,7 +75,7 @@
97  
98      message_port_register_in(pmt::mp("set_msg"));
99      set_msg_handler(pmt::mp("set_msg"),
100 -                    boost::bind(&message_strobe_random_impl::set_msg, this, _1));
101 +                    boost::bind(&message_strobe_random_impl::set_msg, this, boost::placeholders::_1));
102  }
103  
104  long message_strobe_random_impl::next_delay()
105 --- gnuradio-3.8.0.0/gr-blocks/lib/multiply_matrix_impl.cc.orig 2019-08-09 23:40:34.000000000 +0200
106 +++ gnuradio-3.8.0.0/gr-blocks/lib/multiply_matrix_impl.cc      2020-07-30 20:21:18.782075727 +0200
107 @@ -237,7 +237,7 @@
108      message_port_register_in(port_name);
109      set_msg_handler(
110          port_name,
111 -        boost::bind(&multiply_matrix_impl<gr_complex>::msg_handler_A, this, _1));
112 +        boost::bind(&multiply_matrix_impl<gr_complex>::msg_handler_A, this, boost::placeholders::_1));
113  }
114  
115  template <>
116 @@ -257,7 +257,7 @@
117      pmt::pmt_t port_name = pmt::string_to_symbol("set_A");
118      message_port_register_in(port_name);
119      set_msg_handler(port_name,
120 -                    boost::bind(&multiply_matrix_impl<float>::msg_handler_A, this, _1));
121 +                    boost::bind(&multiply_matrix_impl<float>::msg_handler_A, this, boost::placeholders::_1));
122  }
123  
124  
125 --- gnuradio-3.8.0.0/gr-blocks/lib/pdu_filter_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
126 +++ gnuradio-3.8.0.0/gr-blocks/lib/pdu_filter_impl.cc   2020-07-30 20:22:34.176032280 +0200
127 @@ -45,7 +45,7 @@
128      message_port_register_out(pdu::pdu_port_id());
129      message_port_register_in(pdu::pdu_port_id());
130      set_msg_handler(pdu::pdu_port_id(),
131 -                    boost::bind(&pdu_filter_impl::handle_msg, this, _1));
132 +                    boost::bind(&pdu_filter_impl::handle_msg, this, boost::placeholders::_1));
133  }
134  
135  void pdu_filter_impl::handle_msg(pmt::pmt_t pdu)
136 --- gnuradio-3.8.0.0/gr-blocks/lib/pdu_set_impl.cc.orig 2019-08-09 23:40:34.000000000 +0200
137 +++ gnuradio-3.8.0.0/gr-blocks/lib/pdu_set_impl.cc      2020-07-30 20:25:04.957278370 +0200
138 @@ -43,7 +43,7 @@
139  {
140      message_port_register_out(pdu::pdu_port_id());
141      message_port_register_in(pdu::pdu_port_id());
142 -    set_msg_handler(pdu::pdu_port_id(), boost::bind(&pdu_set_impl::handle_msg, this, _1));
143 +    set_msg_handler(pdu::pdu_port_id(), boost::bind(&pdu_set_impl::handle_msg, this, boost::placeholders::_1));
144  }
145  
146  void pdu_set_impl::handle_msg(pmt::pmt_t pdu)
147 --- gnuradio-3.8.0.0/gr-blocks/lib/pdu_remove_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
148 +++ gnuradio-3.8.0.0/gr-blocks/lib/pdu_remove_impl.cc   2020-07-30 20:25:43.595972568 +0200
149 @@ -43,7 +43,7 @@
150      message_port_register_out(pdu::pdu_port_id());
151      message_port_register_in(pdu::pdu_port_id());
152      set_msg_handler(pdu::pdu_port_id(),
153 -                    boost::bind(&pdu_remove_impl::handle_msg, this, _1));
154 +                    boost::bind(&pdu_remove_impl::handle_msg, this, boost::placeholders::_1));
155  }
156  
157  void pdu_remove_impl::handle_msg(pmt::pmt_t pdu)
158 --- gnuradio-3.8.0.0/gr-blocks/lib/random_pdu_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
159 +++ gnuradio-3.8.0.0/gr-blocks/lib/random_pdu_impl.cc   2020-07-30 20:54:28.889831075 +0200
160 @@ -53,7 +53,7 @@
161      message_port_register_out(pdu::pdu_port_id());
162      message_port_register_in(pmt::mp("generate"));
163      set_msg_handler(pmt::mp("generate"),
164 -                    boost::bind(&random_pdu_impl::generate_pdu, this, _1));
165 +                    boost::bind(&random_pdu_impl::generate_pdu, this, boost::placeholders::_1));
166      if (length_modulo < 1)
167          throw std::runtime_error("length_module must be >= 1");
168      if (max_items < length_modulo)
169 --- gnuradio-3.8.0.0/gr-blocks/lib/repeat_impl.cc.orig  2019-08-09 23:40:34.000000000 +0200
170 +++ gnuradio-3.8.0.0/gr-blocks/lib/repeat_impl.cc       2020-07-30 20:57:03.084578109 +0200
171 @@ -45,7 +45,7 @@
172  {
173      message_port_register_in(pmt::mp("interpolation"));
174      set_msg_handler(pmt::mp("interpolation"),
175 -                    boost::bind(&repeat_impl::msg_set_interpolation, this, _1));
176 +                    boost::bind(&repeat_impl::msg_set_interpolation, this, boost::placeholders::_1));
177  }
178  
179  void repeat_impl::msg_set_interpolation(pmt::pmt_t msg)
180 --- gnuradio-3.8.0.0/gr-blocks/lib/socket_pdu_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
181 +++ gnuradio-3.8.0.0/gr-blocks/lib/socket_pdu_impl.cc   2020-07-30 21:08:44.014634418 +0200
182 @@ -101,7 +101,7 @@
183          start_tcp_accept();
184  
185          set_msg_handler(pdu::pdu_port_id(),
186 -                        boost::bind(&socket_pdu_impl::tcp_server_send, this, _1));
187 +                        boost::bind(&socket_pdu_impl::tcp_server_send, this, boost::placeholders::_1));
188      } else if (type == "TCP_CLIENT") {
189          boost::system::error_code error = boost::asio::error::host_not_found;
190          d_tcp_socket.reset(new boost::asio::ip::tcp::socket(d_io_service));
191 @@ -111,7 +111,7 @@
192          d_tcp_socket->set_option(boost::asio::ip::tcp::no_delay(d_tcp_no_delay));
193  
194          set_msg_handler(pdu::pdu_port_id(),
195 -                        boost::bind(&socket_pdu_impl::tcp_client_send, this, _1));
196 +                        boost::bind(&socket_pdu_impl::tcp_client_send, this, boost::placeholders::_1));
197  
198          d_tcp_socket->async_read_some(
199              boost::asio::buffer(d_rxbuf),
200 @@ -131,7 +131,7 @@
201                          boost::asio::placeholders::bytes_transferred));
202  
203          set_msg_handler(pdu::pdu_port_id(),
204 -                        boost::bind(&socket_pdu_impl::udp_send, this, _1));
205 +                        boost::bind(&socket_pdu_impl::udp_send, this, boost::placeholders::_1));
206      } else if (type == "UDP_CLIENT") {
207          d_udp_socket.reset(
208              new boost::asio::ip::udp::socket(d_io_service, d_udp_endpoint));
209 @@ -144,7 +144,7 @@
210                          boost::asio::placeholders::bytes_transferred));
211  
212          set_msg_handler(pdu::pdu_port_id(),
213 -                        boost::bind(&socket_pdu_impl::udp_send, this, _1));
214 +                        boost::bind(&socket_pdu_impl::udp_send, this, boost::placeholders::_1));
215      } else
216          throw std::runtime_error("gr::blocks:socket_pdu: unknown socket type");
217  
218 --- gnuradio-3.8.0.0/gr-blocks/lib/tagged_stream_multiply_length_impl.cc.orig   2019-08-09 23:40:34.000000000 +0200
219 +++ gnuradio-3.8.0.0/gr-blocks/lib/tagged_stream_multiply_length_impl.cc        2020-07-30 21:10:41.004095833 +0200
220 @@ -51,7 +51,7 @@
221      message_port_register_in(pmt::intern("set_scalar"));
222      set_msg_handler(
223          pmt::intern("set_scalar"),
224 -        boost::bind(&tagged_stream_multiply_length_impl::set_scalar_pmt, this, _1));
225 +        boost::bind(&tagged_stream_multiply_length_impl::set_scalar_pmt, this, boost::placeholders::_1));
226  }
227  
228  tagged_stream_multiply_length_impl::~tagged_stream_multiply_length_impl() {}
229 --- gnuradio-3.8.0.0/gr-blocks/lib/tuntap_pdu_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
230 +++ gnuradio-3.8.0.0/gr-blocks/lib/tuntap_pdu_impl.cc   2020-07-30 21:17:07.857693002 +0200
231 @@ -96,7 +96,7 @@
232  
233      // set up input message port
234      message_port_register_in(pdu::pdu_port_id());
235 -    set_msg_handler(pdu::pdu_port_id(), boost::bind(&tuntap_pdu_impl::send, this, _1));
236 +    set_msg_handler(pdu::pdu_port_id(), boost::bind(&tuntap_pdu_impl::send, this, boost::placeholders::_1));
237  }
238  
239  int tuntap_pdu_impl::tun_alloc(char* dev, int flags)
240 --- gnuradio-3.8.0.0/gr-fec/lib/async_decoder_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
241 +++ gnuradio-3.8.0.0/gr-fec/lib/async_decoder_impl.cc   2020-07-30 21:35:53.983351061 +0200
242 @@ -65,10 +65,10 @@
243      if (d_packed) {
244          d_pack = new blocks::kernel::pack_k_bits(8);
245          set_msg_handler(d_in_port,
246 -                        boost::bind(&async_decoder_impl::decode_packed, this, _1));
247 +                        boost::bind(&async_decoder_impl::decode_packed, this, boost::placeholders::_1));
248      } else {
249          set_msg_handler(d_in_port,
250 -                        boost::bind(&async_decoder_impl::decode_unpacked, this, _1));
251 +                        boost::bind(&async_decoder_impl::decode_unpacked, this, boost::placeholders::_1));
252      }
253  
254      // The maximum frame size is set by the initial frame size of the decoder.
255 --- gnuradio-3.8.0.0/gr-fec/lib/async_encoder_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
256 +++ gnuradio-3.8.0.0/gr-fec/lib/async_encoder_impl.cc   2020-07-30 21:36:23.424894221 +0200
257 @@ -64,7 +64,7 @@
258  
259      if (d_packed) {
260          set_msg_handler(d_in_port,
261 -                        boost::bind(&async_encoder_impl::encode_packed, this, _1));
262 +                        boost::bind(&async_encoder_impl::encode_packed, this, boost::placeholders::_1));
263  
264          d_unpack = new blocks::kernel::unpack_k_bits(8);
265  
266 @@ -74,7 +74,7 @@
267  
268      } else {
269          set_msg_handler(d_in_port,
270 -                        boost::bind(&async_encoder_impl::encode_unpacked, this, _1));
271 +                        boost::bind(&async_encoder_impl::encode_unpacked, this, boost::placeholders::_1));
272      }
273  
274      if (d_packed || (strncmp(d_encoder->get_input_conversion(), "pack", 4) == 0)) {
275 --- gnuradio-3.8.0.0/gr-filter/lib/freq_xlating_fir_filter_impl.cc.orig 2019-08-09 23:40:34.000000000 +0200
276 +++ gnuradio-3.8.0.0/gr-filter/lib/freq_xlating_fir_filter_impl.cc      2020-07-30 21:45:00.281985689 +0200
277 @@ -72,7 +72,7 @@
278          boost::bind(
279              &freq_xlating_fir_filter_impl<IN_T, OUT_T, TAP_T>::handle_set_center_freq,
280              this,
281 -            _1));
282 +            boost::placeholders::_1));
283  }
284  
285  template <class IN_T, class OUT_T, class TAP_T>
286 --- gnuradio-3.8.0.0/gr-filter/lib/mmse_resampler_ff_impl.cc.orig       2019-08-09 23:40:34.000000000 +0200
287 +++ gnuradio-3.8.0.0/gr-filter/lib/mmse_resampler_ff_impl.cc    2020-07-30 21:46:30.340039944 +0200
288 @@ -54,7 +54,7 @@
289  
290      message_port_register_in(pmt::intern("msg_in"));
291      set_msg_handler(pmt::intern("msg_in"),
292 -                    boost::bind(&mmse_resampler_ff_impl::handle_msg, this, _1));
293 +                    boost::bind(&mmse_resampler_ff_impl::handle_msg, this, boost::placeholders::_1));
294  }
295  
296  mmse_resampler_ff_impl::~mmse_resampler_ff_impl() { delete d_resamp; }
297 --- gnuradio-3.8.0.0/gr-filter/lib/mmse_resampler_cc_impl.cc.orig       2019-08-09 23:40:34.000000000 +0200
298 +++ gnuradio-3.8.0.0/gr-filter/lib/mmse_resampler_cc_impl.cc    2020-07-30 21:54:49.519549624 +0200
299 @@ -53,7 +53,7 @@
300      set_inverse_relative_rate(d_mu_inc);
301      message_port_register_in(pmt::intern("msg_in"));
302      set_msg_handler(pmt::intern("msg_in"),
303 -                    boost::bind(&mmse_resampler_cc_impl::handle_msg, this, _1));
304 +                    boost::bind(&mmse_resampler_cc_impl::handle_msg, this, boost::placeholders::_1));
305  }
306  
307  mmse_resampler_cc_impl::~mmse_resampler_cc_impl() { delete d_resamp; }
308 --- gnuradio-3.8.0.0/gr-analog/lib/sig_source_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
309 +++ gnuradio-3.8.0.0/gr-analog/lib/sig_source_impl.cc   2020-07-30 22:22:11.068971917 +0200
310 @@ -67,7 +67,7 @@
311      this->set_phase(phase);
312      this->message_port_register_in(pmt::mp("freq"));
313      this->set_msg_handler(pmt::mp("freq"),
314 -                          boost::bind(&sig_source_impl<T>::set_frequency_msg, this, _1));
315 +                          boost::bind(&sig_source_impl<T>::set_frequency_msg, this, boost::placeholders::_1));
316  }
317  
318  template <class T>
319 --- gnuradio-3.8.0.0/gr-digital/lib/chunks_to_symbols_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
320 +++ gnuradio-3.8.0.0/gr-digital/lib/chunks_to_symbols_impl.cc   2020-07-30 22:24:21.095788569 +0200
321 @@ -54,7 +54,7 @@
322      this->set_msg_handler(
323          pmt::mp("set_symbol_table"),
324          boost::bind(
325 -            &chunks_to_symbols_impl<IN_T, OUT_T>::handle_set_symbol_table, this, _1));
326 +            &chunks_to_symbols_impl<IN_T, OUT_T>::handle_set_symbol_table, this, boost::placeholders::_1));
327  }
328  
329  template <class IN_T, class OUT_T>
330 --- gnuradio-3.8.0.0/gr-digital/lib/constellation_receiver_cb_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
331 +++ gnuradio-3.8.0.0/gr-digital/lib/constellation_receiver_cb_impl.cc   2020-07-30 22:28:04.524167819 +0200
332 @@ -63,12 +63,12 @@
333      message_port_register_in(pmt::mp("set_constellation"));
334      set_msg_handler(
335          pmt::mp("set_constellation"),
336 -        boost::bind(&constellation_receiver_cb_impl::handle_set_constellation, this, _1));
337 +        boost::bind(&constellation_receiver_cb_impl::handle_set_constellation, this, boost::placeholders::_1));
338  
339      message_port_register_in(pmt::mp("rotate_phase"));
340      set_msg_handler(
341          pmt::mp("rotate_phase"),
342 -        boost::bind(&constellation_receiver_cb_impl::handle_rotate_phase, this, _1));
343 +        boost::bind(&constellation_receiver_cb_impl::handle_rotate_phase, this, boost::placeholders::_1));
344  }
345  
346  constellation_receiver_cb_impl::~constellation_receiver_cb_impl() {}
347 --- gnuradio-3.8.0.0/gr-digital/lib/costas_loop_cc_impl.cc.orig 2019-08-09 23:40:34.000000000 +0200
348 +++ gnuradio-3.8.0.0/gr-digital/lib/costas_loop_cc_impl.cc      2020-07-30 22:30:35.412077208 +0200
349 @@ -82,7 +82,7 @@
350  
351      message_port_register_in(pmt::mp("noise"));
352      set_msg_handler(pmt::mp("noise"),
353 -                    boost::bind(&costas_loop_cc_impl::handle_set_noise, this, _1));
354 +                    boost::bind(&costas_loop_cc_impl::handle_set_noise, this, boost::placeholders::_1));
355  }
356  
357  costas_loop_cc_impl::~costas_loop_cc_impl() {}
358 --- gnuradio-3.8.0.0/gr-digital/lib/crc32_async_bb_impl.cc.orig 2019-08-09 23:40:34.000000000 +0200
359 +++ gnuradio-3.8.0.0/gr-digital/lib/crc32_async_bb_impl.cc      2020-07-31 06:23:29.025293773 +0200
360 @@ -48,9 +48,9 @@
361      message_port_register_out(d_out_port);
362  
363      if (check)
364 -        set_msg_handler(d_in_port, boost::bind(&crc32_async_bb_impl::check, this, _1));
365 +        set_msg_handler(d_in_port, boost::bind(&crc32_async_bb_impl::check, this, boost::placeholders::_1));
366      else
367 -        set_msg_handler(d_in_port, boost::bind(&crc32_async_bb_impl::calc, this, _1));
368 +        set_msg_handler(d_in_port, boost::bind(&crc32_async_bb_impl::calc, this, boost::placeholders::_1));
369  }
370  
371  crc32_async_bb_impl::~crc32_async_bb_impl() {}
372 --- gnuradio-3.8.0.0/gr-digital/lib/header_payload_demux_impl.cc.orig   2019-08-09 23:40:34.000000000 +0200
373 +++ gnuradio-3.8.0.0/gr-digital/lib/header_payload_demux_impl.cc        2020-07-31 06:40:37.305888600 +0200
374 @@ -152,7 +152,7 @@
375      message_port_register_in(msg_port_id());
376      set_msg_handler(
377          msg_port_id(),
378 -        boost::bind(&header_payload_demux_impl::parse_header_data_msg, this, _1));
379 +        boost::bind(&header_payload_demux_impl::parse_header_data_msg, this, boost::placeholders::_1));
380      for (size_t i = 0; i < special_tags.size(); i++) {
381          d_special_tags.push_back(pmt::string_to_symbol(special_tags[i]));
382          d_special_tags_last_value.push_back(pmt::PMT_NIL);
383 --- gnuradio-3.8.0.0/gr-digital/lib/protocol_formatter_async_impl.cc.orig       2019-08-09 23:40:34.000000000 +0200
384 +++ gnuradio-3.8.0.0/gr-digital/lib/protocol_formatter_async_impl.cc    2020-07-31 06:58:30.315505541 +0200
385 @@ -55,7 +55,7 @@
386      message_port_register_out(d_pld_port);
387  
388      set_msg_handler(d_in_port,
389 -                    boost::bind(&protocol_formatter_async_impl::append, this, _1));
390 +                    boost::bind(&protocol_formatter_async_impl::append, this, boost::placeholders::_1));
391  }
392  
393  protocol_formatter_async_impl::~protocol_formatter_async_impl() {}
394 --- gnuradio-3.8.0.0/gr-qtgui/lib/time_sink_c_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
395 +++ gnuradio-3.8.0.0/gr-qtgui/lib/time_sink_c_impl.cc   2020-07-30 22:18:56.578775775 +0200
396 @@ -79,7 +79,7 @@
397  
398      // setup PDU handling input port
399      message_port_register_in(pmt::mp("in"));
400 -    set_msg_handler(pmt::mp("in"), boost::bind(&time_sink_c_impl::handle_pdus, this, _1));
401 +    set_msg_handler(pmt::mp("in"), boost::bind(&time_sink_c_impl::handle_pdus, this, boost::placeholders::_1));
402  
403      // +2 for the PDU message buffers
404      for (unsigned int n = 0; n < d_nconnections + 2; n++) {
405 --- gnuradio-3.8.0.0/gr-qtgui/lib/time_sink_f_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
406 +++ gnuradio-3.8.0.0/gr-qtgui/lib/time_sink_f_impl.cc   2020-07-31 06:24:17.624509437 +0200
407 @@ -80,7 +80,7 @@
408  
409      // setup PDU handling input port
410      message_port_register_in(pmt::mp("in"));
411 -    set_msg_handler(pmt::mp("in"), boost::bind(&time_sink_f_impl::handle_pdus, this, _1));
412 +    set_msg_handler(pmt::mp("in"), boost::bind(&time_sink_f_impl::handle_pdus, this, boost::placeholders::_1));
413  
414      // +1 for the PDU buffer
415      for (unsigned int n = 0; n < d_nconnections + 1; n++) {
416 --- gnuradio-3.8.0.0/gr-qtgui/lib/sink_f_impl.cc.orig   2019-08-09 23:40:34.000000000 +0200
417 +++ gnuradio-3.8.0.0/gr-qtgui/lib/sink_f_impl.cc        2020-07-31 06:24:57.396595458 +0200
418 @@ -95,7 +95,7 @@
419      // double-clicked
420      message_port_register_out(d_port);
421      message_port_register_in(d_port);
422 -    set_msg_handler(d_port, boost::bind(&sink_f_impl::handle_set_freq, this, _1));
423 +    set_msg_handler(d_port, boost::bind(&sink_f_impl::handle_set_freq, this, boost::placeholders::_1));
424  
425      d_main_gui = NULL;
426  
427 --- gnuradio-3.8.0.0/gr-qtgui/lib/time_raster_sink_b_impl.cc.orig       2019-08-09 23:40:34.000000000 +0200
428 +++ gnuradio-3.8.0.0/gr-qtgui/lib/time_raster_sink_b_impl.cc    2020-07-31 06:27:45.998772669 +0200
429 @@ -84,7 +84,7 @@
430      // setup PDU handling input port
431      message_port_register_in(pmt::mp("in"));
432      set_msg_handler(pmt::mp("in"),
433 -                    boost::bind(&time_raster_sink_b_impl::handle_pdus, this, _1));
434 +                    boost::bind(&time_raster_sink_b_impl::handle_pdus, this, boost::placeholders::_1));
435  
436      d_scale = 1.0f;
437  
438 --- gnuradio-3.8.0.0/gr-qtgui/lib/time_raster_sink_f_impl.cc.orig       2019-08-09 23:40:34.000000000 +0200
439 +++ gnuradio-3.8.0.0/gr-qtgui/lib/time_raster_sink_f_impl.cc    2020-07-31 06:28:21.497301415 +0200
440 @@ -84,7 +84,7 @@
441      // setup PDU handling input port
442      message_port_register_in(pmt::mp("in"));
443      set_msg_handler(pmt::mp("in"),
444 -                    boost::bind(&time_raster_sink_f_impl::handle_pdus, this, _1));
445 +                    boost::bind(&time_raster_sink_f_impl::handle_pdus, this, boost::placeholders::_1));
446  
447      d_icols = static_cast<int>(ceil(d_cols));
448      d_tmpflt = (float*)volk_malloc(d_icols * sizeof(float), volk_get_alignment());
449 --- gnuradio-3.8.0.0/gr-qtgui/lib/freq_sink_c_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
450 +++ gnuradio-3.8.0.0/gr-qtgui/lib/freq_sink_c_impl.cc   2020-07-31 06:29:00.492680256 +0200
451 @@ -81,17 +81,17 @@
452  
453      // setup bw input port
454      message_port_register_in(d_port_bw);
455 -    set_msg_handler(d_port_bw, boost::bind(&freq_sink_c_impl::handle_set_bw, this, _1));
456 +    set_msg_handler(d_port_bw, boost::bind(&freq_sink_c_impl::handle_set_bw, this, boost::placeholders::_1));
457  
458      // setup output message port to post frequency when display is
459      // double-clicked
460      message_port_register_out(d_port);
461      message_port_register_in(d_port);
462 -    set_msg_handler(d_port, boost::bind(&freq_sink_c_impl::handle_set_freq, this, _1));
463 +    set_msg_handler(d_port, boost::bind(&freq_sink_c_impl::handle_set_freq, this, boost::placeholders::_1));
464  
465      // setup PDU handling input port
466      message_port_register_in(pmt::mp("in"));
467 -    set_msg_handler(pmt::mp("in"), boost::bind(&freq_sink_c_impl::handle_pdus, this, _1));
468 +    set_msg_handler(pmt::mp("in"), boost::bind(&freq_sink_c_impl::handle_pdus, this, boost::placeholders::_1));
469  
470      d_main_gui = NULL;
471  
472 --- gnuradio-3.8.0.0/gr-qtgui/lib/freq_sink_f_impl.cc.orig      2019-08-09 23:40:34.000000000 +0200
473 +++ gnuradio-3.8.0.0/gr-qtgui/lib/freq_sink_f_impl.cc   2020-07-31 06:29:42.008191290 +0200
474 @@ -82,17 +82,17 @@
475  
476      // setup bw input port
477      message_port_register_in(d_port_bw);
478 -    set_msg_handler(d_port_bw, boost::bind(&freq_sink_f_impl::handle_set_bw, this, _1));
479 +    set_msg_handler(d_port_bw, boost::bind(&freq_sink_f_impl::handle_set_bw, this, boost::placeholders::_1));
480  
481      // setup output message port to post frequency when display is
482      // double-clicked
483      message_port_register_out(d_port);
484      message_port_register_in(d_port);
485 -    set_msg_handler(d_port, boost::bind(&freq_sink_f_impl::handle_set_freq, this, _1));
486 +    set_msg_handler(d_port, boost::bind(&freq_sink_f_impl::handle_set_freq, this, boost::placeholders::_1));
487  
488      // setup PDU handling input port
489      message_port_register_in(pmt::mp("in"));
490 -    set_msg_handler(pmt::mp("in"), boost::bind(&freq_sink_f_impl::handle_pdus, this, _1));
491 +    set_msg_handler(pmt::mp("in"), boost::bind(&freq_sink_f_impl::handle_pdus, this, boost::placeholders::_1));
492  
493      d_main_gui = NULL;
494  
495 --- gnuradio-3.8.0.0/gr-qtgui/lib/const_sink_c_impl.cc.orig     2019-08-09 23:40:34.000000000 +0200
496 +++ gnuradio-3.8.0.0/gr-qtgui/lib/const_sink_c_impl.cc  2020-07-31 06:30:26.163840812 +0200
497 @@ -70,7 +70,7 @@
498      // setup PDU handling input port
499      message_port_register_in(pmt::mp("in"));
500      set_msg_handler(pmt::mp("in"),
501 -                    boost::bind(&const_sink_c_impl::handle_pdus, this, _1));
502 +                    boost::bind(&const_sink_c_impl::handle_pdus, this, boost::placeholders::_1));
503  
504      for (int i = 0; i < d_nconnections; i++) {
505          d_residbufs_real.push_back(
506 --- gnuradio-3.8.0.0/gr-qtgui/lib/sink_c_impl.cc.orig   2019-08-09 23:40:34.000000000 +0200
507 +++ gnuradio-3.8.0.0/gr-qtgui/lib/sink_c_impl.cc        2020-07-31 06:31:05.122550637 +0200
508 @@ -96,7 +96,7 @@
509      // double-clicked
510      message_port_register_out(d_port);
511      message_port_register_in(d_port);
512 -    set_msg_handler(d_port, boost::bind(&sink_c_impl::handle_set_freq, this, _1));
513 +    set_msg_handler(d_port, boost::bind(&sink_c_impl::handle_set_freq, this, boost::placeholders::_1));
514  
515      d_main_gui = NULL;
516  
517 --- gnuradio-3.8.0.0/gr-qtgui/lib/waterfall_sink_c_impl.cc.orig 2019-08-09 23:40:34.000000000 +0200
518 +++ gnuradio-3.8.0.0/gr-qtgui/lib/waterfall_sink_c_impl.cc      2020-07-31 06:31:35.524144831 +0200
519 @@ -117,19 +117,19 @@
520      // setup bw input port
521      message_port_register_in(d_port_bw);
522      set_msg_handler(d_port_bw,
523 -                    boost::bind(&waterfall_sink_c_impl::handle_set_bw, this, _1));
524 +                    boost::bind(&waterfall_sink_c_impl::handle_set_bw, this, boost::placeholders::_1));
525  
526      // setup output message port to post frequency when display is
527      // double-clicked
528      message_port_register_out(d_port);
529      message_port_register_in(d_port);
530      set_msg_handler(d_port,
531 -                    boost::bind(&waterfall_sink_c_impl::handle_set_freq, this, _1));
532 +                    boost::bind(&waterfall_sink_c_impl::handle_set_freq, this, boost::placeholders::_1));
533  
534      // setup PDU handling input port
535      message_port_register_in(pmt::mp("in"));
536      set_msg_handler(pmt::mp("in"),
537 -                    boost::bind(&waterfall_sink_c_impl::handle_pdus, this, _1));
538 +                    boost::bind(&waterfall_sink_c_impl::handle_pdus, this, boost::placeholders::_1));
539  }
540  
541  waterfall_sink_c_impl::~waterfall_sink_c_impl()
542 --- gnuradio-3.8.0.0/gr-qtgui/lib/histogram_sink_f_impl.cc.orig 2019-08-09 23:40:34.000000000 +0200
543 +++ gnuradio-3.8.0.0/gr-qtgui/lib/histogram_sink_f_impl.cc      2020-07-31 06:34:49.240969587 +0200
544 @@ -82,7 +82,7 @@
545      // setup PDU handling input port
546      message_port_register_in(pmt::mp("in"));
547      set_msg_handler(pmt::mp("in"),
548 -                    boost::bind(&histogram_sink_f_impl::handle_pdus, this, _1));
549 +                    boost::bind(&histogram_sink_f_impl::handle_pdus, this, boost::placeholders::_1));
550  
551      // +1 for the PDU buffer
552      for (int i = 0; i < d_nconnections + 1; i++) {
553 --- gnuradio-3.8.0.0/gr-qtgui/lib/waterfall_sink_f_impl.cc.orig 2019-08-09 23:40:34.000000000 +0200
554 +++ gnuradio-3.8.0.0/gr-qtgui/lib/waterfall_sink_f_impl.cc      2020-07-31 06:36:02.938167442 +0200
555 @@ -116,19 +116,19 @@
556      // setup bw input port
557      message_port_register_in(d_port_bw);
558      set_msg_handler(d_port_bw,
559 -                    boost::bind(&waterfall_sink_f_impl::handle_set_bw, this, _1));
560 +                    boost::bind(&waterfall_sink_f_impl::handle_set_bw, this, boost::placeholders::_1));
561  
562      // setup output message port to post frequency when display is
563      // double-clicked
564      message_port_register_out(d_port);
565      message_port_register_in(d_port);
566      set_msg_handler(d_port,
567 -                    boost::bind(&waterfall_sink_f_impl::handle_set_freq, this, _1));
568 +                    boost::bind(&waterfall_sink_f_impl::handle_set_freq, this, boost::placeholders::_1));
569  
570      // setup PDU handling input port
571      message_port_register_in(pmt::mp("in"));
572      set_msg_handler(pmt::mp("in"),
573 -                    boost::bind(&waterfall_sink_f_impl::handle_pdus, this, _1));
574 +                    boost::bind(&waterfall_sink_f_impl::handle_pdus, this, boost::placeholders::_1));
575  }
576  
577  waterfall_sink_f_impl::~waterfall_sink_f_impl()
578 --- gnuradio-3.8.0.0/gr-qtgui/lib/edit_box_msg_impl.cc.orig     2019-08-09 23:40:34.000000000 +0200
579 +++ gnuradio-3.8.0.0/gr-qtgui/lib/edit_box_msg_impl.cc  2020-07-31 06:37:00.264506844 +0200
580 @@ -158,7 +158,7 @@
581      message_port_register_out(d_port);
582      message_port_register_in(pmt::mp("val"));
583  
584 -    set_msg_handler(pmt::mp("val"), boost::bind(&edit_box_msg_impl::set_value, this, _1));
585 +    set_msg_handler(pmt::mp("val"), boost::bind(&edit_box_msg_impl::set_value, this, boost::placeholders::_1));
586  }
587  
588  edit_box_msg_impl::~edit_box_msg_impl()
589 --- gnuradio-3.8.0.0/gr-zeromq/lib/pub_msg_sink_impl.cc.orig    2019-08-09 23:40:34.000000000 +0200
590 +++ gnuradio-3.8.0.0/gr-zeromq/lib/pub_msg_sink_impl.cc 2020-07-31 07:34:23.895216804 +0200
591 @@ -55,7 +55,7 @@
592      d_socket->bind(address);
593  
594      message_port_register_in(pmt::mp("in"));
595 -    set_msg_handler(pmt::mp("in"), boost::bind(&pub_msg_sink_impl::handler, this, _1));
596 +    set_msg_handler(pmt::mp("in"), boost::bind(&pub_msg_sink_impl::handler, this, boost::placeholders::_1));
597  }
598  
599  pub_msg_sink_impl::~pub_msg_sink_impl()
600 --- gnuradio-3.8.0.0/gr-zeromq/lib/push_msg_sink_impl.cc.orig   2019-08-09 23:40:34.000000000 +0200
601 +++ gnuradio-3.8.0.0/gr-zeromq/lib/push_msg_sink_impl.cc        2020-07-31 07:35:24.158380374 +0200
602 @@ -57,7 +57,7 @@
603      d_socket->bind(address);
604  
605      message_port_register_in(pmt::mp("in"));
606 -    set_msg_handler(pmt::mp("in"), boost::bind(&push_msg_sink_impl::handler, this, _1));
607 +    set_msg_handler(pmt::mp("in"), boost::bind(&push_msg_sink_impl::handler, this, boost::placeholders::_1));
608  }
609  
610  push_msg_sink_impl::~push_msg_sink_impl()
This page took 2.211745 seconds and 3 git commands to generate.