Re: [Qemu-devel] [PATCH] glib: add compatibility interface for g_strcmp0()

2014-10-17 Thread Peter Maydell
On 16 October 2014 12:59, wrote: > From: Gonglei > > This patch fixes compilation errors when building against glib < 2.16.0 > due to the missing g_strcmp0() function. > > Suggested-by: Peter Maydell > Signed-off-by: Gonglei > --- > Because g_strcmp0() was called in three places, I provide >

[Qemu-devel] [PATCH] glib: add compatibility interface for g_strcmp0()

2014-10-16 Thread arei.gonglei
From: Gonglei This patch fixes compilation errors when building against glib < 2.16.0 due to the missing g_strcmp0() function. Suggested-by: Peter Maydell Signed-off-by: Gonglei --- Because g_strcmp0() was called in three places, I provide a back-compat implementation. --- include/glib-com