From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45502) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X6SC2-0000AE-Sh for qemu-devel@nongnu.org; Sun, 13 Jul 2014 18:24:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X6SBx-00071l-LD for qemu-devel@nongnu.org; Sun, 13 Jul 2014 18:24:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58714) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X6SBx-00070f-DO for qemu-devel@nongnu.org; Sun, 13 Jul 2014 18:24:21 -0400 Date: Mon, 14 Jul 2014 01:26:34 +0300 From: "Michael S. Tsirkin" Message-ID: <20140713222634.GB8804@redhat.com> References: <20140709150442.6843.14602.stgit@3820> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140709150442.6843.14602.stgit@3820> Subject: Re: [Qemu-devel] [PATCH] qtest: fix vhost-user-test compilation with old GLib List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Nikolay Nikolaev Cc: kwolf@redhat.com, snabb-devel@googlegroups.com, qemu-devel@nongnu.org, tech@virtualopensystems.com On Wed, Jul 09, 2014 at 06:06:32PM +0300, Nikolay Nikolaev wrote: > Mising G_TIME_SPAN_SECOND definition breaks the RHEL6 compilation as GLib > version before 2.26 does not have it. In such case just define it. > > Reported-by: Kevin Wolf > Signed-off-by: Nikolay Nikolaev Applied, thanks! > --- > tests/vhost-user-test.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/tests/vhost-user-test.c b/tests/vhost-user-test.c > index b9dcec1..75fedf0 100644 > --- a/tests/vhost-user-test.c > +++ b/tests/vhost-user-test.c > @@ -22,6 +22,10 @@ > #include > > /* GLIB version compatibility flags */ > +#if !GLIB_CHECK_VERSION(2, 26, 0) > +#define G_TIME_SPAN_SECOND (G_GINT64_CONSTANT(1000000)) > +#endif > + > #if GLIB_CHECK_VERSION(2, 28, 0) > #define HAVE_MONOTONIC_TIME > #endif