Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Apr 2020 02:29:04 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r531736 - in head/emulators/virtualbox-ose: . files
Message-ID:  <202004150229.03F2T40w020408@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Wed Apr 15 02:29:03 2020
New Revision: 531736
URL: https://svnweb.freebsd.org/changeset/ports/531736

Log:
  Fix r531689 i386 build.
  
  PR:		236616, 244847
  Submitted by:	kevans
  MFH:		2020Q2 (blanket: major runtime build fix)
  MFH-with:	r531689

Added:
  head/emulators/virtualbox-ose/files/patch-src_VBox_VMM_include_IEMInternal.h   (contents, props changed)
Modified:
  head/emulators/virtualbox-ose/Makefile   (contents, props changed)

Modified: head/emulators/virtualbox-ose/Makefile
==============================================================================
--- head/emulators/virtualbox-ose/Makefile	Wed Apr 15 00:01:37 2020	(r531735)
+++ head/emulators/virtualbox-ose/Makefile	Wed Apr 15 02:29:03 2020	(r531736)
@@ -3,7 +3,7 @@
 
 PORTNAME=	virtualbox-ose
 PORTVERSION=	5.2.34
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	emulators
 MASTER_SITES=	https://download.oracle.com/virtualbox/${PORTVERSION}/
 DISTFILES=	VirtualBox-${PORTVERSION}${EXTRACT_SUFX} ${GUESTADDITIONS}

Added: head/emulators/virtualbox-ose/files/patch-src_VBox_VMM_include_IEMInternal.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/virtualbox-ose/files/patch-src_VBox_VMM_include_IEMInternal.h	Wed Apr 15 02:29:03 2020	(r531736)
@@ -0,0 +1,11 @@
+--- src/VBox/VMM/include/IEMInternal.h.orig	2020-04-14 19:58:48 UTC
++++ src/VBox/VMM/include/IEMInternal.h
+@@ -1082,7 +1082,7 @@ typedef enum IEMACCESSCRX
+ 
+ #if defined(__GNUC__) && defined(RT_ARCH_X86)
+ # define IEM_DECL_IMPL_TYPE(a_RetType, a_Name, a_ArgList) \
+-    __attribute__((__fastcall__)) a_RetType (a_Name) a_ArgList
++    __attribute__((__fastcall__, __nothrow__)) a_RetType (a_Name) a_ArgList
+ # define IEM_DECL_IMPL_DEF(a_RetType, a_Name, a_ArgList) \
+     __attribute__((__fastcall__, __nothrow__)) a_RetType a_Name a_ArgList
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004150229.03F2T40w020408>