From owner-svn-ports-all@FreeBSD.ORG Thu Sep 26 20:09:58 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 73C2337F; Thu, 26 Sep 2013 20:09:58 +0000 (UTC) (envelope-from nox@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 60D5F27F8; Thu, 26 Sep 2013 20:09:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8QK9woZ045850; Thu, 26 Sep 2013 20:09:58 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8QK9wMF045848; Thu, 26 Sep 2013 20:09:58 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201309262009.r8QK9wMF045848@svn.freebsd.org> From: Juergen Lock Date: Thu, 26 Sep 2013 20:09:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328411 - in head/emulators: kqemu-kmod-devel/files kqemu-kmod/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 20:09:58 -0000 Author: nox Date: Thu Sep 26 20:09:57 2013 New Revision: 328411 URL: http://svnweb.freebsd.org/changeset/ports/328411 Log: (Attempt to) fix build on i386 with gcc46 and -Werror. Submitted by: beefy1 via pkg-fallout Added: head/emulators/kqemu-kmod-devel/files/patch-common-interp.c (contents, props changed) head/emulators/kqemu-kmod/files/patch-common-interp.c (contents, props changed) Added: head/emulators/kqemu-kmod-devel/files/patch-common-interp.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/kqemu-kmod-devel/files/patch-common-interp.c Thu Sep 26 20:09:57 2013 (r328411) @@ -0,0 +1,15 @@ +--- common/interp.c.orig ++++ common/interp.c +@@ -1870,11 +1870,11 @@ static void helper_wrmsr(struct kqemu_st + { + #ifdef __x86_64__ + struct kqemu_cpu_state *env = &s->cpu_state; +-#endif + uint64_t val; + + val = ((uint32_t)s->regs1.eax) | + ((uint64_t)((uint32_t)s->regs1.edx) << 32); ++#endif + + switch((uint32_t)s->regs1.ecx) { + #ifdef __x86_64__ Added: head/emulators/kqemu-kmod/files/patch-common-interp.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/kqemu-kmod/files/patch-common-interp.c Thu Sep 26 20:09:57 2013 (r328411) @@ -0,0 +1,15 @@ +--- common/interp.c.orig ++++ common/interp.c +@@ -1623,11 +1623,11 @@ static void helper_wrmsr(struct kqemu_st + { + #ifdef __x86_64__ + struct kqemu_cpu_state *env = &s->cpu_state; +-#endif + uint64_t val; + + val = ((uint32_t)s->regs1.eax) | + ((uint64_t)((uint32_t)s->regs1.edx) << 32); ++#endif + + switch((uint32_t)s->regs1.ecx) { + #ifdef __x86_64__