From owner-svn-ports-all@FreeBSD.ORG Thu Jul 10 16:44:22 2014 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 ESMTPS id F0952A44; Thu, 10 Jul 2014 16:44:22 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DD26D2D3C; Thu, 10 Jul 2014 16:44:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6AGiMnH089720; Thu, 10 Jul 2014 16:44:22 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6AGiMJx089715; Thu, 10 Jul 2014 16:44:22 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201407101644.s6AGiMJx089715@svn.freebsd.org> From: Juergen Lock Date: Thu, 10 Jul 2014 16:44:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361475 - in head/emulators/qemu-devel: . 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.18 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, 10 Jul 2014 16:44:23 -0000 Author: nox Date: Thu Jul 10 16:44:22 2014 New Revision: 361475 URL: http://svnweb.freebsd.org/changeset/ports/361475 QAT: https://qat.redports.org/buildarchive/r361475/ Log: Fix build on 8 and 9. Submitted by: beefy1 via pkg-fallout Added: head/emulators/qemu-devel/files/extra-patch-bsd-user-freebsd-os-sys.c (contents, props changed) Modified: head/emulators/qemu-devel/Makefile Modified: head/emulators/qemu-devel/Makefile ============================================================================== --- head/emulators/qemu-devel/Makefile Thu Jul 10 16:34:18 2014 (r361474) +++ head/emulators/qemu-devel/Makefile Thu Jul 10 16:44:22 2014 (r361475) @@ -77,6 +77,7 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch- EXTRA_PATCHES+= ${FILESDIR}/extra-patch-bsd-user-sparc64-target_arch_cpu.h EXTRA_PATCHES+= ${FILESDIR}/extra-patch-bsd-user-trapsig EXTRA_PATCHES+= ${FILESDIR}/extra-patch-21927cffcc7bcacbb953155f778200846df9f60e +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-bsd-user-freebsd-os-sys.c .endif CONFIGURE_ARGS+= --extra-ldflags=-L${LOCALBASE}/lib Added: head/emulators/qemu-devel/files/extra-patch-bsd-user-freebsd-os-sys.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/qemu-devel/files/extra-patch-bsd-user-freebsd-os-sys.c Thu Jul 10 16:44:22 2014 (r361475) @@ -0,0 +1,13 @@ +--- a/bsd-user/freebsd/os-sys.c ++++ b/bsd-user/freebsd/os-sys.c +@@ -75,8 +75,10 @@ host_to_target_vfc_flags(int flags) + ret |= TARGET_VFCF_JAIL; + if (flags & VFCF_DELEGADMIN) + ret |= TARGET_VFCF_DELEGADMIN; ++#ifdef VFCF_SBDRY + if (flags & VFCF_SBDRY) + ret |= TARGET_VFCF_SBDRY; ++#endif + + return ret; + }