svn commit: r531736 - in head/emulators/virtualbox-ose: . files

Cy Schubert cy at FreeBSD.org
Wed Apr 15 02:29:04 UTC 2020


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
+ 


More information about the svn-ports-all mailing list