From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:55549) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RuKx6-0008HR-LV for qemu-devel@nongnu.org; Mon, 06 Feb 2012 04:33:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RuKx1-0005lS-28 for qemu-devel@nongnu.org; Mon, 06 Feb 2012 04:33:36 -0500 Received: from mail-ee0-f45.google.com ([74.125.83.45]:47209) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RuKx0-0005lE-Rj for qemu-devel@nongnu.org; Mon, 06 Feb 2012 04:33:31 -0500 Received: by eekd17 with SMTP id d17so2228305eek.4 for ; Mon, 06 Feb 2012 01:33:29 -0800 (PST) Date: Mon, 6 Feb 2012 08:29:44 +0000 From: Stefan Hajnoczi Message-ID: <20120206082944.GA354@stefanha-thinkpad.localdomain> References: <4F1869B6.3040700@rdsoftware.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4F1869B6.3040700@rdsoftware.de> Subject: Re: [Qemu-devel] Build failure in test-coroutine.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Erik Rull Cc: qemu-devel@nongnu.org On Thu, Jan 19, 2012 at 08:06:30PM +0100, Erik Rull wrote: > test-coroutine.c:92: warning: implicit declaration of function > 'g_assert_cmpint' ... > erik@debian:~/qemu-test/qemu-kvm$ This must be an old Debian box. Debian stable has a new enough glib that provides g_assert_cmpint(). The glib testing infrastructure requires glib 2.16 or later. It's trivial to write a replacement g_assert_cmpint() for old systems but unfortunately you're also missing the core testing framework (g_test_run() and friends) so it's not that easy to backport. Which version of distro version are you using? Which glib version are you using? Stefan