>
> On Tue, 2016-10-18 at 10:38 +0200, Francois Gouget wrote:
> > On Tue, 18 Oct 2016, Pavel Grunt wrote:
> > [...]
> > > > +#if !GLIB_CHECK_VERSION(2,30,0)
> > > > +static inline gboolean
> > > > +g_queue_remove_boolean(GQueue *queue, gconstpointer data)
> > > > +{
> > > > + GList *link = g
On Tue, 2016-10-18 at 10:38 +0200, Francois Gouget wrote:
> On Tue, 18 Oct 2016, Pavel Grunt wrote:
> [...]
> > > +#if !GLIB_CHECK_VERSION(2,30,0)
> > > +static inline gboolean
> > > +g_queue_remove_boolean(GQueue *queue, gconstpointer data)
> > > +{
> > > + GList *link = g_queue_find(queue, data);
On Tue, 18 Oct 2016, Pavel Grunt wrote:
[...]
> > +#if !GLIB_CHECK_VERSION(2,30,0)
> > +static inline gboolean
> > +g_queue_remove_boolean(GQueue *queue, gconstpointer data)
> > +{
> > + GList *link = g_queue_find(queue, data);
> > + if (!link) {
> > + return FALSE;
> > + }
> > +
Hi,
On Mon, 2016-10-17 at 14:26 +0100, Frediano Ziglio wrote:
> Signed-off-by: Frediano Ziglio
> ---
> server/Makefile.am | 1 +
> server/glib-compat.h | 47
> +++
> 2 files changed, 48 insertions(+)
> create mode 100644 server/glib-compat.h
>
> d
Signed-off-by: Frediano Ziglio
---
server/Makefile.am | 1 +
server/glib-compat.h | 47 +++
2 files changed, 48 insertions(+)
create mode 100644 server/glib-compat.h
diff --git a/server/Makefile.am b/server/Makefile.am
index 036abcd..dff1ad2 100644