From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51042) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSogP-0007c7-Uj for qemu-devel@nongnu.org; Tue, 03 Mar 2015 10:24:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YSogL-0002Sk-UZ for qemu-devel@nongnu.org; Tue, 03 Mar 2015 10:24:29 -0500 Received: from mail-wi0-x236.google.com ([2a00:1450:400c:c05::236]:44613) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSogL-0002SZ-Nv for qemu-devel@nongnu.org; Tue, 03 Mar 2015 10:24:25 -0500 Received: by wiwl15 with SMTP id l15so23582488wiw.3 for ; Tue, 03 Mar 2015 07:24:25 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 3 Mar 2015 16:24:15 +0100 Message-Id: <1425396255-14470-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH] configure: require glib 2.22 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@redhat.com, armbru@redhat.com, mst@redhat.com 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 --- 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