From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49896) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X4tSM-0002UE-Ng for qemu-devel@nongnu.org; Wed, 09 Jul 2014 11:06:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X4tSD-0008JB-PJ for qemu-devel@nongnu.org; Wed, 09 Jul 2014 11:06:48 -0400 Received: from mail-we0-f180.google.com ([74.125.82.180]:62684) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X4tSD-0008J7-HY for qemu-devel@nongnu.org; Wed, 09 Jul 2014 11:06:41 -0400 Received: by mail-we0-f180.google.com with SMTP id x48so7631247wes.25 for ; Wed, 09 Jul 2014 08:06:40 -0700 (PDT) From: Nikolay Nikolaev Date: Wed, 09 Jul 2014 18:06:32 +0300 Message-ID: <20140709150442.6843.14602.stgit@3820> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [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: kwolf@redhat.com, snabb-devel@googlegroups.com, qemu-devel@nongnu.org, mst@redhat.com Cc: tech@virtualopensystems.com, n.nikolaev@virtualopensystems.com 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 --- 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