From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53298) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSqKS-0005Xi-DM for qemu-devel@nongnu.org; Tue, 03 Mar 2015 12:09:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YSqKR-0007gg-Iq for qemu-devel@nongnu.org; Tue, 03 Mar 2015 12:09:56 -0500 Received: from mx1.redhat.com ([209.132.183.28]:54374) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSqKR-0007gc-BY for qemu-devel@nongnu.org; Tue, 03 Mar 2015 12:09:55 -0500 Date: Tue, 3 Mar 2015 18:09:49 +0100 From: "Michael S. Tsirkin" Message-ID: <20150303170908.GA21803@redhat.com> References: <1425396255-14470-1-git-send-email-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1425396255-14470-1-git-send-email-pbonzini@redhat.com> Subject: Re: [Qemu-devel] [PATCH] configure: require glib 2.22 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: peter.maydell@linaro.org, qemu-devel@nongnu.org, armbru@redhat.com On Tue, Mar 03, 2015 at 04:24:15PM +0100, Paolo Bonzini wrote: > This provides g_ptr_array_new_with_free_func, as well as a few > other functions that we've been hacking around in glib-compat.h. > Cleaning up the compatibility headers will come later. > > Signed-off-by: Paolo Bonzini At least the g_ptr_array_new_with_free_func is easy to work around, I fixed that one up. If we are decided, maybe defer this until after 2.3, we have enough noise in 2.3 already ... > --- > configure | 8 +------- > 1 files changed, 1 insertions(+), 7 deletions(-) > > diff --git a/configure b/configure > index 4d9a2a7..833bd69 100755 > --- a/configure > +++ b/configure > @@ -2745,13 +2745,7 @@ fi > ########################################## > # glib support probe > > -if test "$mingw32" = yes; then > - # g_poll is required in order to integrate with the glib main loop. > - glib_req_ver=2.20 > -else > - glib_req_ver=2.12 > -fi > - > +glib_req_ver=2.22 > glib_pkg_config() > { > if $pkg_config --atleast-version=$glib_req_ver $1; then > -- > 1.7.1