From patchwork Mon Aug 22 14:57:13 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ed Maste X-Patchwork-Id: 9293767 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 24A40607FF for ; Mon, 22 Aug 2016 15:40:20 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 14707287C8 for ; Mon, 22 Aug 2016 15:40:20 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 06008287EA; Mon, 22 Aug 2016 15:40:20 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 6F319287C8 for ; Mon, 22 Aug 2016 15:40:18 +0000 (UTC) Received: from localhost ([::1]:41979 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bbrKi-0005Ss-ON for patchwork-qemu-devel@patchwork.kernel.org; Mon, 22 Aug 2016 11:40:16 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36534) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bbrKM-0005Pa-T6 for qemu-devel@nongnu.org; Mon, 22 Aug 2016 11:39:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bbrKI-0003Mi-Op for qemu-devel@nongnu.org; Mon, 22 Aug 2016 11:39:54 -0400 Received: from [72.143.111.78] (port=34028 helo=freebsd.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bbrKI-0003M0-HP for qemu-devel@nongnu.org; Mon, 22 Aug 2016 11:39:50 -0400 Received: from emaste (uid 1001) (envelope-from emaste@freebsd.org) id 9cc0e by freebsd.org (DragonFly Mail Agent v0.10); Mon, 22 Aug 2016 10:57:14 -0400 From: Ed Maste To: qemu-devel@nongnu.org Date: Mon, 22 Aug 2016 10:57:13 -0400 Message-Id: <1471877833-52343-1-git-send-email-emaste@freebsd.org> X-Mailer: git-send-email 2.8.1 X-detected-operating-system: by eggs.gnu.org: FreeBSD 9.x X-Received-From: 72.143.111.78 Subject: [Qemu-devel] [PATCH] Fix bsd-user build after d915b7bb X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: qemu-trivial@nongnu.org, Ed Maste Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP Must include "qemu-version.h" for the QEMU_PKGVERSION definition. Signed-off-by: Ed Maste --- bsd-user/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bsd-user/main.c b/bsd-user/main.c index b4a0a00..0fb08e4 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -17,6 +17,7 @@ * along with this program; if not, see . */ #include "qemu/osdep.h" +#include "qemu-version.h" #include #include "qapi/error.h"