Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] Workaround build bug with GCC 6.2.1
@ 2017-11-23 15:57 Philipp Rudo
  2017-11-23 19:39 ` Sergio Durigan Junior
  0 siblings, 1 reply; 6+ messages in thread
From: Philipp Rudo @ 2017-11-23 15:57 UTC (permalink / raw)
  To: gdb-patches

Building GDB with GCC 6.2.1 gives multiple errors like

gdb/dtrace-probe.c: In member function ‘void dtrace_probe::build_arg_exprs(gdbarch*)’:
gdb/dtrace-probe.c:627:8: error: types may not be defined in a for-range-declaration [-Werror]
    for (struct dtrace_probe_arg &arg : m_args

Fix it by removing the 'struct' keyword.

A similar Bug was already fixed for GCC 6.3.1
https://sourceware.org/ml/gdb-patches/2017-10/msg00442.html
---
 gdb/dtrace-probe.c | 8 ++++----
 gdb/probe.c        | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/gdb/dtrace-probe.c b/gdb/dtrace-probe.c
index ace3d306a1..1c88f89054 100644
--- a/gdb/dtrace-probe.c
+++ b/gdb/dtrace-probe.c
@@ -624,7 +624,7 @@ dtrace_probe::build_arg_exprs (struct gdbarch *gdbarch)
   /* Iterate over the arguments in the probe and build the
      corresponding GDB internal expression that will generate the
      value of the argument when executed at the PC of the probe.  */
-  for (struct dtrace_probe_arg &arg : m_args)
+  for (dtrace_probe_arg &arg : m_args)
     {
       struct cleanup *back_to;
       struct parser_state pstate;
@@ -684,7 +684,7 @@ dtrace_probe::is_enabled () const
 {
   struct gdbarch *gdbarch = this->get_gdbarch ();
 
-  for (const struct dtrace_probe_enabler &enabler : m_enablers)
+  for (const dtrace_probe_enabler &enabler : m_enablers)
     if (!gdbarch_dtrace_probe_is_enabled (gdbarch, enabler.address))
       return false;
 
@@ -796,7 +796,7 @@ dtrace_probe::enable ()
 
   /* Iterate over all defined enabler in the given probe and enable
      them all using the corresponding gdbarch hook.  */
-  for (const struct dtrace_probe_enabler &enabler : m_enablers)
+  for (const dtrace_probe_enabler &enabler : m_enablers)
     if (gdbarch_dtrace_enable_probe_p (gdbarch))
       gdbarch_dtrace_enable_probe (gdbarch, enabler.address);
 }
@@ -826,7 +826,7 @@ dtrace_probe::disable ()
 
   /* Iterate over all defined enabler in the given probe and disable
      them all using the corresponding gdbarch hook.  */
-  for (struct dtrace_probe_enabler &enabler : m_enablers)
+  for (dtrace_probe_enabler &enabler : m_enablers)
     if (gdbarch_dtrace_disable_probe_p (gdbarch))
       gdbarch_dtrace_disable_probe (gdbarch, enabler.address);
 }
diff --git a/gdb/probe.c b/gdb/probe.c
index 1be8faad35..e20bf31630 100644
--- a/gdb/probe.c
+++ b/gdb/probe.c
@@ -367,7 +367,7 @@ gen_ui_out_table_header_info (const std::vector<bound_probe> &probes,
   std::vector<struct info_probe_column> headings
     = spops->gen_info_probes_table_header ();
 
-  for (const struct info_probe_column &column : headings)
+  for (const info_probe_column &column : headings)
     {
       size_t size_max = strlen (column.print_name);
 
@@ -410,7 +410,7 @@ print_ui_out_not_applicables (const static_probe_ops *spops)
    std::vector<struct info_probe_column> headings
      = spops->gen_info_probes_table_header ();
 
-  for (const struct info_probe_column &column : headings)
+  for (const info_probe_column &column : headings)
     current_uiout->field_string (column.field_name, _("n/a"));
 }
 
-- 
2.13.5


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Workaround build bug with GCC 6.2.1
  2017-11-23 15:57 [PATCH] Workaround build bug with GCC 6.2.1 Philipp Rudo
@ 2017-11-23 19:39 ` Sergio Durigan Junior
  2017-11-24 10:06   ` Philipp Rudo
  0 siblings, 1 reply; 6+ messages in thread
From: Sergio Durigan Junior @ 2017-11-23 19:39 UTC (permalink / raw)
  To: Philipp Rudo; +Cc: gdb-patches

On Thursday, November 23 2017, Philipp Rudo wrote:

> Building GDB with GCC 6.2.1 gives multiple errors like
>
> gdb/dtrace-probe.c: In member function ‘void dtrace_probe::build_arg_exprs(gdbarch*)’:
> gdb/dtrace-probe.c:627:8: error: types may not be defined in a for-range-declaration [-Werror]
>     for (struct dtrace_probe_arg &arg : m_args
>
> Fix it by removing the 'struct' keyword.

Thanks for the patch, Philipp.

This is missing a ChangeLog entry.  It's OK to push once this is
addressed.

> A similar Bug was already fixed for GCC 6.3.1
> https://sourceware.org/ml/gdb-patches/2017-10/msg00442.html
> ---
>  gdb/dtrace-probe.c | 8 ++++----
>  gdb/probe.c        | 4 ++--
>  2 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/gdb/dtrace-probe.c b/gdb/dtrace-probe.c
> index ace3d306a1..1c88f89054 100644
> --- a/gdb/dtrace-probe.c
> +++ b/gdb/dtrace-probe.c
> @@ -624,7 +624,7 @@ dtrace_probe::build_arg_exprs (struct gdbarch *gdbarch)
>    /* Iterate over the arguments in the probe and build the
>       corresponding GDB internal expression that will generate the
>       value of the argument when executed at the PC of the probe.  */
> -  for (struct dtrace_probe_arg &arg : m_args)
> +  for (dtrace_probe_arg &arg : m_args)
>      {
>        struct cleanup *back_to;
>        struct parser_state pstate;
> @@ -684,7 +684,7 @@ dtrace_probe::is_enabled () const
>  {
>    struct gdbarch *gdbarch = this->get_gdbarch ();
>  
> -  for (const struct dtrace_probe_enabler &enabler : m_enablers)
> +  for (const dtrace_probe_enabler &enabler : m_enablers)
>      if (!gdbarch_dtrace_probe_is_enabled (gdbarch, enabler.address))
>        return false;
>  
> @@ -796,7 +796,7 @@ dtrace_probe::enable ()
>  
>    /* Iterate over all defined enabler in the given probe and enable
>       them all using the corresponding gdbarch hook.  */
> -  for (const struct dtrace_probe_enabler &enabler : m_enablers)
> +  for (const dtrace_probe_enabler &enabler : m_enablers)
>      if (gdbarch_dtrace_enable_probe_p (gdbarch))
>        gdbarch_dtrace_enable_probe (gdbarch, enabler.address);
>  }
> @@ -826,7 +826,7 @@ dtrace_probe::disable ()
>  
>    /* Iterate over all defined enabler in the given probe and disable
>       them all using the corresponding gdbarch hook.  */
> -  for (struct dtrace_probe_enabler &enabler : m_enablers)
> +  for (dtrace_probe_enabler &enabler : m_enablers)
>      if (gdbarch_dtrace_disable_probe_p (gdbarch))
>        gdbarch_dtrace_disable_probe (gdbarch, enabler.address);
>  }
> diff --git a/gdb/probe.c b/gdb/probe.c
> index 1be8faad35..e20bf31630 100644
> --- a/gdb/probe.c
> +++ b/gdb/probe.c
> @@ -367,7 +367,7 @@ gen_ui_out_table_header_info (const std::vector<bound_probe> &probes,
>    std::vector<struct info_probe_column> headings
>      = spops->gen_info_probes_table_header ();
>  
> -  for (const struct info_probe_column &column : headings)
> +  for (const info_probe_column &column : headings)
>      {
>        size_t size_max = strlen (column.print_name);
>  
> @@ -410,7 +410,7 @@ print_ui_out_not_applicables (const static_probe_ops *spops)
>     std::vector<struct info_probe_column> headings
>       = spops->gen_info_probes_table_header ();
>  
> -  for (const struct info_probe_column &column : headings)
> +  for (const info_probe_column &column : headings)
>      current_uiout->field_string (column.field_name, _("n/a"));
>  }
>  
> -- 
> 2.13.5

-- 
Sergio
GPG key ID: 237A 54B1 0287 28BF 00EF  31F4 D0EB 7628 65FC 5E36
Please send encrypted e-mail if possible
http://sergiodj.net/


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] Workaround build bug with GCC 6.2.1
  2017-11-24 10:06   ` Philipp Rudo
@ 2017-11-24 10:06     ` Philipp Rudo
  2017-11-24 16:21       ` Sergio Durigan Junior
  0 siblings, 1 reply; 6+ messages in thread
From: Philipp Rudo @ 2017-11-24 10:06 UTC (permalink / raw)
  To: Sergio Durigan Junior; +Cc: gdb-patches

Building GDB with GCC 6.2.1 gives multiple errors like

gdb/dtrace-probe.c: In member function ‘void dtrace_probe::build_arg_exprs(gdbarch*)’:
gdb/dtrace-probe.c:627:8: error: types may not be defined in a for-range-declaration [-Werror]
    for (struct dtrace_probe_arg &arg : m_args

Fix it by removing the 'struct' keyword.

A similar Bug was already fixed for GCC 6.3.1
https://sourceware.org/ml/gdb-patches/2017-10/msg00442.html

gdb/ChangeLog:

	* dtrace-probe.c (dtrace_probe::build_arg_exprs)
	(dtrace_probe::is_enabled, dtrace_probe::enable)
	(dtrace_probe::disable): Remove keyword 'struct' at for-range
	variable
	* probe.c (gen_ui_out_table_header_info)
	(print_ui_out_not_applicables):  Remove keyword 'struct' at
	for-range variable

---
 gdb/dtrace-probe.c | 8 ++++----
 gdb/probe.c        | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/gdb/dtrace-probe.c b/gdb/dtrace-probe.c
index ace3d306a1..1c88f89054 100644
--- a/gdb/dtrace-probe.c
+++ b/gdb/dtrace-probe.c
@@ -624,7 +624,7 @@ dtrace_probe::build_arg_exprs (struct gdbarch *gdbarch)
   /* Iterate over the arguments in the probe and build the
      corresponding GDB internal expression that will generate the
      value of the argument when executed at the PC of the probe.  */
-  for (struct dtrace_probe_arg &arg : m_args)
+  for (dtrace_probe_arg &arg : m_args)
     {
       struct cleanup *back_to;
       struct parser_state pstate;
@@ -684,7 +684,7 @@ dtrace_probe::is_enabled () const
 {
   struct gdbarch *gdbarch = this->get_gdbarch ();
 
-  for (const struct dtrace_probe_enabler &enabler : m_enablers)
+  for (const dtrace_probe_enabler &enabler : m_enablers)
     if (!gdbarch_dtrace_probe_is_enabled (gdbarch, enabler.address))
       return false;
 
@@ -796,7 +796,7 @@ dtrace_probe::enable ()
 
   /* Iterate over all defined enabler in the given probe and enable
      them all using the corresponding gdbarch hook.  */
-  for (const struct dtrace_probe_enabler &enabler : m_enablers)
+  for (const dtrace_probe_enabler &enabler : m_enablers)
     if (gdbarch_dtrace_enable_probe_p (gdbarch))
       gdbarch_dtrace_enable_probe (gdbarch, enabler.address);
 }
@@ -826,7 +826,7 @@ dtrace_probe::disable ()
 
   /* Iterate over all defined enabler in the given probe and disable
      them all using the corresponding gdbarch hook.  */
-  for (struct dtrace_probe_enabler &enabler : m_enablers)
+  for (dtrace_probe_enabler &enabler : m_enablers)
     if (gdbarch_dtrace_disable_probe_p (gdbarch))
       gdbarch_dtrace_disable_probe (gdbarch, enabler.address);
 }
diff --git a/gdb/probe.c b/gdb/probe.c
index 1be8faad35..e20bf31630 100644
--- a/gdb/probe.c
+++ b/gdb/probe.c
@@ -367,7 +367,7 @@ gen_ui_out_table_header_info (const std::vector<bound_probe> &probes,
   std::vector<struct info_probe_column> headings
     = spops->gen_info_probes_table_header ();
 
-  for (const struct info_probe_column &column : headings)
+  for (const info_probe_column &column : headings)
     {
       size_t size_max = strlen (column.print_name);
 
@@ -410,7 +410,7 @@ print_ui_out_not_applicables (const static_probe_ops *spops)
    std::vector<struct info_probe_column> headings
      = spops->gen_info_probes_table_header ();
 
-  for (const struct info_probe_column &column : headings)
+  for (const info_probe_column &column : headings)
     current_uiout->field_string (column.field_name, _("n/a"));
 }
 
-- 
2.13.5


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Workaround build bug with GCC 6.2.1
  2017-11-23 19:39 ` Sergio Durigan Junior
@ 2017-11-24 10:06   ` Philipp Rudo
  2017-11-24 10:06     ` Philipp Rudo
  0 siblings, 1 reply; 6+ messages in thread
From: Philipp Rudo @ 2017-11-24 10:06 UTC (permalink / raw)
  To: Sergio Durigan Junior; +Cc: gdb-patches

Oops, should have thought about the ChangeLog. The updated patch is
appended.

I'll ask Andreas to push once he is here. I still don't have the proper
rights to do it myself...

Thanks
Philipp


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Workaround build bug with GCC 6.2.1
  2017-11-24 10:06     ` Philipp Rudo
@ 2017-11-24 16:21       ` Sergio Durigan Junior
  2017-11-24 16:53         ` Philipp Rudo
  0 siblings, 1 reply; 6+ messages in thread
From: Sergio Durigan Junior @ 2017-11-24 16:21 UTC (permalink / raw)
  To: Philipp Rudo; +Cc: gdb-patches

On Friday, November 24 2017, Philipp Rudo wrote:

> Building GDB with GCC 6.2.1 gives multiple errors like
>
> gdb/dtrace-probe.c: In member function ‘void dtrace_probe::build_arg_exprs(gdbarch*)’:
> gdb/dtrace-probe.c:627:8: error: types may not be defined in a for-range-declaration [-Werror]
>     for (struct dtrace_probe_arg &arg : m_args
>
> Fix it by removing the 'struct' keyword.
>
> A similar Bug was already fixed for GCC 6.3.1
> https://sourceware.org/ml/gdb-patches/2017-10/msg00442.html
>
> gdb/ChangeLog:
>
> 	* dtrace-probe.c (dtrace_probe::build_arg_exprs)
> 	(dtrace_probe::is_enabled, dtrace_probe::enable)
> 	(dtrace_probe::disable): Remove keyword 'struct' at for-range
> 	variable
> 	* probe.c (gen_ui_out_table_header_info)
> 	(print_ui_out_not_applicables):  Remove keyword 'struct' at
> 	for-range variable

This is fine.  I pushed it for you:

30649c145114fe3aac089bf06e9457238d46341b

Thanks,

> ---
>  gdb/dtrace-probe.c | 8 ++++----
>  gdb/probe.c        | 4 ++--
>  2 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/gdb/dtrace-probe.c b/gdb/dtrace-probe.c
> index ace3d306a1..1c88f89054 100644
> --- a/gdb/dtrace-probe.c
> +++ b/gdb/dtrace-probe.c
> @@ -624,7 +624,7 @@ dtrace_probe::build_arg_exprs (struct gdbarch *gdbarch)
>    /* Iterate over the arguments in the probe and build the
>       corresponding GDB internal expression that will generate the
>       value of the argument when executed at the PC of the probe.  */
> -  for (struct dtrace_probe_arg &arg : m_args)
> +  for (dtrace_probe_arg &arg : m_args)
>      {
>        struct cleanup *back_to;
>        struct parser_state pstate;
> @@ -684,7 +684,7 @@ dtrace_probe::is_enabled () const
>  {
>    struct gdbarch *gdbarch = this->get_gdbarch ();
>  
> -  for (const struct dtrace_probe_enabler &enabler : m_enablers)
> +  for (const dtrace_probe_enabler &enabler : m_enablers)
>      if (!gdbarch_dtrace_probe_is_enabled (gdbarch, enabler.address))
>        return false;
>  
> @@ -796,7 +796,7 @@ dtrace_probe::enable ()
>  
>    /* Iterate over all defined enabler in the given probe and enable
>       them all using the corresponding gdbarch hook.  */
> -  for (const struct dtrace_probe_enabler &enabler : m_enablers)
> +  for (const dtrace_probe_enabler &enabler : m_enablers)
>      if (gdbarch_dtrace_enable_probe_p (gdbarch))
>        gdbarch_dtrace_enable_probe (gdbarch, enabler.address);
>  }
> @@ -826,7 +826,7 @@ dtrace_probe::disable ()
>  
>    /* Iterate over all defined enabler in the given probe and disable
>       them all using the corresponding gdbarch hook.  */
> -  for (struct dtrace_probe_enabler &enabler : m_enablers)
> +  for (dtrace_probe_enabler &enabler : m_enablers)
>      if (gdbarch_dtrace_disable_probe_p (gdbarch))
>        gdbarch_dtrace_disable_probe (gdbarch, enabler.address);
>  }
> diff --git a/gdb/probe.c b/gdb/probe.c
> index 1be8faad35..e20bf31630 100644
> --- a/gdb/probe.c
> +++ b/gdb/probe.c
> @@ -367,7 +367,7 @@ gen_ui_out_table_header_info (const std::vector<bound_probe> &probes,
>    std::vector<struct info_probe_column> headings
>      = spops->gen_info_probes_table_header ();
>  
> -  for (const struct info_probe_column &column : headings)
> +  for (const info_probe_column &column : headings)
>      {
>        size_t size_max = strlen (column.print_name);
>  
> @@ -410,7 +410,7 @@ print_ui_out_not_applicables (const static_probe_ops *spops)
>     std::vector<struct info_probe_column> headings
>       = spops->gen_info_probes_table_header ();
>  
> -  for (const struct info_probe_column &column : headings)
> +  for (const info_probe_column &column : headings)
>      current_uiout->field_string (column.field_name, _("n/a"));
>  }
>  
> -- 
> 2.13.5

-- 
Sergio
GPG key ID: 237A 54B1 0287 28BF 00EF  31F4 D0EB 7628 65FC 5E36
Please send encrypted e-mail if possible
http://sergiodj.net/


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Workaround build bug with GCC 6.2.1
  2017-11-24 16:21       ` Sergio Durigan Junior
@ 2017-11-24 16:53         ` Philipp Rudo
  0 siblings, 0 replies; 6+ messages in thread
From: Philipp Rudo @ 2017-11-24 16:53 UTC (permalink / raw)
  To: Sergio Durigan Junior; +Cc: gdb-patches

On Fri, 24 Nov 2017 11:21:09 -0500
Sergio Durigan Junior <sergiodj@redhat.com> wrote:

> On Friday, November 24 2017, Philipp Rudo wrote:
> 
> > Building GDB with GCC 6.2.1 gives multiple errors like
> >
> > gdb/dtrace-probe.c: In member function ‘void dtrace_probe::build_arg_exprs(gdbarch*)’:
> > gdb/dtrace-probe.c:627:8: error: types may not be defined in a for-range-declaration [-Werror]
> >     for (struct dtrace_probe_arg &arg : m_args
> >
> > Fix it by removing the 'struct' keyword.
> >
> > A similar Bug was already fixed for GCC 6.3.1
> > https://sourceware.org/ml/gdb-patches/2017-10/msg00442.html
> >
> > gdb/ChangeLog:
> >
> > 	* dtrace-probe.c (dtrace_probe::build_arg_exprs)
> > 	(dtrace_probe::is_enabled, dtrace_probe::enable)
> > 	(dtrace_probe::disable): Remove keyword 'struct' at for-range
> > 	variable
> > 	* probe.c (gen_ui_out_table_header_info)
> > 	(print_ui_out_not_applicables):  Remove keyword 'struct' at
> > 	for-range variable  
> 
> This is fine.  I pushed it for you:
> 
> 30649c145114fe3aac089bf06e9457238d46341b
> 
> Thanks,
> 
> > ---
> >  gdb/dtrace-probe.c | 8 ++++----
> >  gdb/probe.c        | 4 ++--
> >  2 files changed, 6 insertions(+), 6 deletions(-)
> >
> > diff --git a/gdb/dtrace-probe.c b/gdb/dtrace-probe.c
> > index ace3d306a1..1c88f89054 100644
> > --- a/gdb/dtrace-probe.c
> > +++ b/gdb/dtrace-probe.c
> > @@ -624,7 +624,7 @@ dtrace_probe::build_arg_exprs (struct gdbarch *gdbarch)
> >    /* Iterate over the arguments in the probe and build the
> >       corresponding GDB internal expression that will generate the
> >       value of the argument when executed at the PC of the probe.  */
> > -  for (struct dtrace_probe_arg &arg : m_args)
> > +  for (dtrace_probe_arg &arg : m_args)
> >      {
> >        struct cleanup *back_to;
> >        struct parser_state pstate;
> > @@ -684,7 +684,7 @@ dtrace_probe::is_enabled () const
> >  {
> >    struct gdbarch *gdbarch = this->get_gdbarch ();
> >  
> > -  for (const struct dtrace_probe_enabler &enabler : m_enablers)
> > +  for (const dtrace_probe_enabler &enabler : m_enablers)
> >      if (!gdbarch_dtrace_probe_is_enabled (gdbarch, enabler.address))
> >        return false;
> >  
> > @@ -796,7 +796,7 @@ dtrace_probe::enable ()
> >  
> >    /* Iterate over all defined enabler in the given probe and enable
> >       them all using the corresponding gdbarch hook.  */
> > -  for (const struct dtrace_probe_enabler &enabler : m_enablers)
> > +  for (const dtrace_probe_enabler &enabler : m_enablers)
> >      if (gdbarch_dtrace_enable_probe_p (gdbarch))
> >        gdbarch_dtrace_enable_probe (gdbarch, enabler.address);
> >  }
> > @@ -826,7 +826,7 @@ dtrace_probe::disable ()
> >  
> >    /* Iterate over all defined enabler in the given probe and disable
> >       them all using the corresponding gdbarch hook.  */
> > -  for (struct dtrace_probe_enabler &enabler : m_enablers)
> > +  for (dtrace_probe_enabler &enabler : m_enablers)
> >      if (gdbarch_dtrace_disable_probe_p (gdbarch))
> >        gdbarch_dtrace_disable_probe (gdbarch, enabler.address);
> >  }
> > diff --git a/gdb/probe.c b/gdb/probe.c
> > index 1be8faad35..e20bf31630 100644
> > --- a/gdb/probe.c
> > +++ b/gdb/probe.c
> > @@ -367,7 +367,7 @@ gen_ui_out_table_header_info (const std::vector<bound_probe> &probes,
> >    std::vector<struct info_probe_column> headings
> >      = spops->gen_info_probes_table_header ();
> >  
> > -  for (const struct info_probe_column &column : headings)
> > +  for (const info_probe_column &column : headings)
> >      {
> >        size_t size_max = strlen (column.print_name);
> >  
> > @@ -410,7 +410,7 @@ print_ui_out_not_applicables (const static_probe_ops *spops)
> >     std::vector<struct info_probe_column> headings
> >       = spops->gen_info_probes_table_header ();
> >  
> > -  for (const struct info_probe_column &column : headings)
> > +  for (const info_probe_column &column : headings)
> >      current_uiout->field_string (column.field_name, _("n/a"));
> >  }
> >  
> > -- 
> > 2.13.5  
> 

Wow, thanks.

Philipp


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-11-24 16:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-23 15:57 [PATCH] Workaround build bug with GCC 6.2.1 Philipp Rudo
2017-11-23 19:39 ` Sergio Durigan Junior
2017-11-24 10:06   ` Philipp Rudo
2017-11-24 10:06     ` Philipp Rudo
2017-11-24 16:21       ` Sergio Durigan Junior
2017-11-24 16:53         ` Philipp Rudo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox