forked from pool/virtualbox
6c3d667234
- Version bump to VirtualBox 7.0.14 (released January 16, 2024 by Oracle) This is a maintenance release. The following items were fixed and/or added: Audio: Added more fixes for switching host audio devices on Windows hosts using the WAS backend 3D: Added general improvements OCI: Fixed wrong guest RAM unit usage in VirtualSystemDescription, memory is provided in bytes, "Byte" is the base unit Main: OVF Import/Export: Added support for importing and exporting VMs containing NVMe storage controllers (bug #19320) Main: OVF Import/Export: Added support for exporting a VM which contains a medium inserted into a virtual CD/DVD drive which is attached to a Virtio-SCSI controller Devices: Fixed a problem where Windows guests "forget" in-progress touch events when the user holds down a finger without moving it for a period of time. macOS Host USB: Added support for newer storage devices macOS Host: Fixed memory Leak in the VBoxIntNetSwitch process when VM was configured to use 'Internal Networking' (bug #21752) Linux Host and Guest: Added initial support for RHEL 9.4 kernel Linux Guest Additions: Fixed kernel panic on RHEL 8.9 kernel caused by vboxvideo (bugs #10381 and #21911) Solaris Guest Additions: Added support for the Additions to be installed into an alternate root path ('pkgadd -R') Solaris Guest Additions: Removed requirement to reboot VM after uninstalling GAs RDP: Fix possible crash when connecting with the Apple Silicon variant of the Microsoft Remote Desktop application (bug #21820). BIOS: Fixed handle number used for DMI OEM table (bug #19781) ======= >>>>>>> ./virtualbox.changes.new OBS-URL: https://build.opensuse.org/request/show/1142681 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=720
68 lines
2.0 KiB
Diff
68 lines
2.0 KiB
Diff
# https://www.virtualbox.org/changeset/90537/vbox
|
|
|
|
Index: VirtualBox-7.0.14/src/libs/xpcom18a4/python/Makefile.kmk
|
|
===================================================================
|
|
--- VirtualBox-7.0.14.orig/src/libs/xpcom18a4/python/Makefile.kmk
|
|
+++ VirtualBox-7.0.14/src/libs/xpcom18a4/python/Makefile.kmk
|
|
@@ -642,11 +642,57 @@ ifndef VBOX_ONLY_SDK
|
|
VBoxPython3_12_x86_LIBS = $(VBOX_PYTHON312_LIB_X86)
|
|
endif
|
|
endif
|
|
+endif
|
|
+
|
|
+ifdef VBOX_PYTHON310_INC
|
|
+#
|
|
+# Python 3.10 version
|
|
+#
|
|
+DLLS += VBoxPython3_10
|
|
+VBoxPython3_10_EXTENDS = VBoxPythonBase
|
|
+VBoxPython3_10_EXTENDS_BY = appending
|
|
+VBoxPython3_10_TEMPLATE = XPCOM
|
|
+VBoxPython3_10_INCS = $(VBOX_PYTHON310_INC)
|
|
+VBoxPython3_10_LIBS = $(VBOX_PYTHON310_LIB)
|
|
+
|
|
+ ifdef VBOX_WITH_32_ON_64_MAIN_API
|
|
+ ifdef VBOX_PYTHON310_LIB_X86
|
|
+DLLS += VBoxPython3_10_x86
|
|
+VBoxPython3_10_x86_EXTENDS = VBoxPythonBase_x86
|
|
+VBoxPython3_10_x86_EXTENDS_BY = appending
|
|
+VBoxPython3_10_x86_TEMPLATE = XPCOM
|
|
+VBoxPython3_10_x86_INCS = $(VBOX_PYTHON310_INC)
|
|
+VBoxPython3_10_x86_LIBS = $(VBOX_PYTHON310_LIB_X86)
|
|
endif
|
|
+ endif
|
|
+endif
|
|
|
|
- ifdef VBOX_PYTHONDEF_INC
|
|
- #
|
|
- # Python without versioning
|
|
+ifdef VBOX_PYTHON310M_INC
|
|
+#
|
|
+# Python 3.10 version with pymalloc
|
|
+#
|
|
+DLLS += VBoxPython3_10m
|
|
+VBoxPython3_10m_EXTENDS = VBoxPythonBase_m
|
|
+VBoxPython3_10m_EXTENDS_BY = appending
|
|
+VBoxPython3_10m_TEMPLATE = XPCOM
|
|
+VBoxPython3_10m_INCS = $(VBOX_PYTHON310M_INC)
|
|
+VBoxPython3_10m_LIBS = $(VBOX_PYTHON310M_LIB)
|
|
+
|
|
+ ifdef VBOX_WITH_32_ON_64_MAIN_API
|
|
+ ifdef VBOX_PYTHON310M_LIB_X86
|
|
+DLLS += VBoxPython3_10m_x86
|
|
+VBoxPython3_10m_x86_EXTENDS = VBoxPythonBase_x86_m
|
|
+VBoxPython3_10m_x86_EXTENDS_BY = appending
|
|
+VBoxPython3_10m_x86_TEMPLATE_ = XPCOM
|
|
+VBoxPython3_10m_x86_INCS = $(VBOX_PYTHON310M_INC)
|
|
+VBoxPython3_10m_x86_LIBS = $(VBOX_PYTHON310M_LIB_X86)
|
|
+ endif
|
|
+ endif
|
|
+endif
|
|
+
|
|
+ifdef VBOX_PYTHONDEF_INC
|
|
+#
|
|
+# Python without versioning
|
|
#
|
|
DLLS += VBoxPython
|
|
VBoxPython_EXTENDS = VBoxPythonBase
|