1
0
forked from pool/virtualbox

Accepting request 289330 from Virtualization

- Version bump to 2.3.24:
  * VMM: emulation fix for the ENTER instruction under certain conditions; fixes
    Solaris 10 guests (VT-x without unrestricted guest execution)
  * VMM: fix for handling NMIs on Linux hosts with X2APIC enabled
  * NAT/NAT Network: fix connection drops when the host's DHCP lease was renewed
    (4.3.22 regression; Windows hosts only; bug #13839)
  * NAT: don't crash on an empty domain list when switching the DNS host
    configuration (4.3.22 regression; Mac OS X hosts only; bug #13874)
  * PXE: re-enable it on Windows hosts (4.3.22 regression; Windows hosts only; bug
    #13842)
  * Shared Folders: fixed a problem with Windows guests (4.3.22 regression; bug
    #13786)
  * Audio: improved record quality when using the DirectSound audio backend
  * VBoxManage: when executing the controlvm command take care that the
    corresponding VM runtime changes are saved permanently (bug #13892)
  * Windows Installer: properly install the 32-bit version of VBoxRes.dll on 32-bit
    hosts (bug #13876)
  * Linux hosts / guests: Linux 4.0 fixes (bug #13835)
  * OS/2 Additions: fixed mouse integration (4.3.22 regression; bug #13825)
  * X11 Additions: fixed a sporadic failure to deactivate virtual screens (bug
    #13845)
- Use smp_mflags when building kernel modules

- Install vboxvideo_drv_117.so on Factory

OBS-URL: https://build.opensuse.org/request/show/289330
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/virtualbox?expand=0&rev=94
This commit is contained in:
Dominique Leuenberger 2015-03-09 09:01:36 +00:00 committed by Git OBS Bridge
commit 54bb0a216e
5 changed files with 45 additions and 8 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2d6338cb27953976c322888301df1c457f32e044f3c019f61addd6e8c0545c7e
size 6298827
oid sha256:4402fe9c7b7df4a850786d4e1ad7a38958e715fbf7716ff8d178d1f3b172a119
size 6306888

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a3dac5cc476c8ce14e830cb25037b45fdd49edb9b9194e108d8c342eedb1b6f8
size 74530135

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:645e70a1adb11f8cdd0d3918f9ddb5717889cddb66825b97b3061445b09cd7af
size 74529955

View File

@ -1,3 +1,34 @@
-------------------------------------------------------------------
Wed Mar 4 11:41:54 UTC 2015 - tchvatal@suse.com
- Version bump to 2.3.24:
* VMM: emulation fix for the ENTER instruction under certain conditions; fixes
Solaris 10 guests (VT-x without unrestricted guest execution)
* VMM: fix for handling NMIs on Linux hosts with X2APIC enabled
* NAT/NAT Network: fix connection drops when the host's DHCP lease was renewed
(4.3.22 regression; Windows hosts only; bug #13839)
* NAT: don't crash on an empty domain list when switching the DNS host
configuration (4.3.22 regression; Mac OS X hosts only; bug #13874)
* PXE: re-enable it on Windows hosts (4.3.22 regression; Windows hosts only; bug
#13842)
* Shared Folders: fixed a problem with Windows guests (4.3.22 regression; bug
#13786)
* Audio: improved record quality when using the DirectSound audio backend
* VBoxManage: when executing the controlvm command take care that the
corresponding VM runtime changes are saved permanently (bug #13892)
* Windows Installer: properly install the 32-bit version of VBoxRes.dll on 32-bit
hosts (bug #13876)
* Linux hosts / guests: Linux 4.0 fixes (bug #13835)
* OS/2 Additions: fixed mouse integration (4.3.22 regression; bug #13825)
* X11 Additions: fixed a sporadic failure to deactivate virtual screens (bug
#13845)
- Use smp_mflags when building kernel modules
-------------------------------------------------------------------
Thu Feb 26 18:13:18 UTC 2015 - wbauer@tmo.at
- Install vboxvideo_drv_117.so on Factory
-------------------------------------------------------------------
Sun Feb 15 20:40:46 UTC 2015 - zaitor@opensuse.org

View File

@ -19,7 +19,7 @@
%define _vbox_instdir %{_libexecdir}/virtualbox
%define _udevrulesdir %{_libexecdir}/udev/rules.d
Name: virtualbox
Version: 4.3.22
Version: 4.3.24
Release: 0
Summary: VirtualBox is an Emulator
License: GPL-2.0+
@ -293,6 +293,7 @@ rm -rf src/libs/{libpng-*,libxml2-*,libxslt-*,zlib-*,boost-*}
# --disable-kmods don't build Linux kernel modules - but use SUSE specific way see few lines under
# --nofatal try to avoid build fail caused by missing makeself package
# NOT an autoconf configure macro
./configure \
--enable-vnc \
--enable-vde \
@ -344,7 +345,7 @@ for vbox_module in out/linux.*/release/bin/src/vbox{drv,netflt,netadp,pci} \
$PWD/modules_build_dir/$flavor/$module_name
fi
# build the module for the specific flavor
make -C %{_prefix}/src/linux-obj/%{_target_cpu}/$flavor modules \
make %{?_smp_mflags} -C %{_prefix}/src/linux-obj/%{_target_cpu}/$flavor modules \
M=$PWD/modules_build_dir/$flavor/$module_name
done
done
@ -382,7 +383,7 @@ do
#and trought the all flavors
for flavor in %{flavors_to_build}; do
#to install modules use Makefile from %{_prefix}/src/linux-obj/%_target_cpu/$flavor and builds from $PWD/modules_build_dir/$flavor/$module_name
make -C %{_prefix}/src/linux-obj/%{_target_cpu}/$flavor modules_install M=$PWD/modules_build_dir/$flavor/$module_name
make %{?_smp_mflags} -C %{_prefix}/src/linux-obj/%{_target_cpu}/$flavor modules_install M=$PWD/modules_build_dir/$flavor/$module_name
done
done
@ -412,6 +413,10 @@ install -m 755 VBoxClient %{buildroot}%{_bindir}
# check the patch https://www.virtualbox.org/changeset/38784, regarding the
# dropped xorg mouse driver in >= 1130
%if 0%{?suse_version} > 1320
install -m 755 vboxvideo_drv_117.so \
%{buildroot}%{_libdir}/xorg/modules/drivers/vboxvideo_drv.so
%else
%if 0%{?suse_version} >= 1315
install -m 755 vboxvideo_drv_116.so \
%{buildroot}%{_libdir}/xorg/modules/drivers/vboxvideo_drv.so
@ -420,6 +425,7 @@ install -m 755 VBoxClient %{buildroot}%{_bindir}
install -m 755 vboxvideo_drv_114.so \
%{buildroot}%{_libdir}/xorg/modules/drivers/vboxvideo_drv.so
%endif
%endif
popd
# VBoxOGL* libs for guest-x11 subpackage
install -m 644 out/linux.*/release/bin/additions/VBoxOGL*.so \