From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36421) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YsIW2-0001w8-A0 for qemu-devel@nongnu.org; Tue, 12 May 2015 18:19:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YsIVz-00044S-Oc for qemu-devel@nongnu.org; Tue, 12 May 2015 18:19:06 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47822) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YsIVz-00044I-Jb for qemu-devel@nongnu.org; Tue, 12 May 2015 18:19:03 -0400 From: John Snow Date: Tue, 12 May 2015 18:18:59 -0400 Message-Id: <1431469140-22208-2-git-send-email-jsnow@redhat.com> In-Reply-To: <1431469140-22208-1-git-send-email-jsnow@redhat.com> References: <1431469140-22208-1-git-send-email-jsnow@redhat.com> Subject: [Qemu-devel] [PATCH 1/2] 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@linaro.org, pbonzini@redhat.com, John Snow , imammedo@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 Signed-off-by: John Snow --- configure | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/configure b/configure index 1f0f485..0c86eb2 100755 --- a/configure +++ b/configure @@ -2773,12 +2773,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_modules=gthread-2.0 if test "$modules" = yes; then glib_modules="$glib_modules gmodule-2.0" -- 2.1.0