Date: Thu, 16 Apr 2020 00:19:35 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r531801 - in branches/2020Q2/emulators/virtualbox-ose: . files Message-ID: <202004160019.03G0JZaJ039933@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kevans Date: Thu Apr 16 00:19:35 2020 New Revision: 531801 URL: https://svnweb.freebsd.org/changeset/ports/531801 Log: MFH: r531736 Fix r531689 i386 build. PR: 236616, 244847 Submitted by: kevans MFH-with: r531689 Approved by: ports-secteam (blanket: i386 build fix) Added: branches/2020Q2/emulators/virtualbox-ose/files/patch-src_VBox_VMM_include_IEMInternal.h - copied unchanged from r531736, head/emulators/virtualbox-ose/files/patch-src_VBox_VMM_include_IEMInternal.h Modified: branches/2020Q2/emulators/virtualbox-ose/Makefile Directory Properties: branches/2020Q2/ (props changed) Modified: branches/2020Q2/emulators/virtualbox-ose/Makefile ============================================================================== --- branches/2020Q2/emulators/virtualbox-ose/Makefile Thu Apr 16 00:15:09 2020 (r531800) +++ branches/2020Q2/emulators/virtualbox-ose/Makefile Thu Apr 16 00:19:35 2020 (r531801) @@ -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} Copied: branches/2020Q2/emulators/virtualbox-ose/files/patch-src_VBox_VMM_include_IEMInternal.h (from r531736, head/emulators/virtualbox-ose/files/patch-src_VBox_VMM_include_IEMInternal.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q2/emulators/virtualbox-ose/files/patch-src_VBox_VMM_include_IEMInternal.h Thu Apr 16 00:19:35 2020 (r531801, copy of r531736, head/emulators/virtualbox-ose/files/patch-src_VBox_VMM_include_IEMInternal.h) @@ -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?202004160019.03G0JZaJ039933>