forked from pool/virtualbox
d3fa2d0e39
Added file "README.build" with instructions for me and any eventual successors. - Version update to 6.0.12 (released September 03 2019 by Oracle) This is a maintenance release. The following items were fixed and/or added: OCI export: handle empty disk image correctly API: fix potential crash when using the medium I/O functionality VBoxManage: fixed documentation of VBoxManage modifyvm uarttype documentation (bug #18759) Network: scrub inbound TCP URG pointer, working around incorrect OOB handling USB: Improved identification of power-saved devices on Windows hosts Audio: in the AC97 work around buggy guest drivers which reprogram the sampling rate, breaking audio in and/or audio out Linux host and guest: fix kernel module build for SLES 12 SP4 kernel 3D: fixed state saving and loading when the VBoxVGA graphics adapter is used with 3D enabled (bug #18802, 6.0.10 regression) Windows guests: fixed mouse cursor visibility updating Windows guests: fixed graphics corruption in Windows 10 search menu with VBoxSVGA adapter Windows guests: fixed dwm.exe crashes related to the WDDM driver for VBoxSVGA adapter when the VM has lots of RAM MacOS Guest Additions fail to start in 6.0.10 (bug #18793) Windows guests: fixed crashes when using shared folders (bug #18766) Linux guests: unprivileged users unable to create files inside shared folders (bug #18737) Linux guests: improve compatibility of vboxvideo.ko kernel module build logic (bug #18869) OBS-URL: https://build.opensuse.org/request/show/729117 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=502
42 lines
1.7 KiB
Diff
42 lines
1.7 KiB
Diff
Index: VirtualBox-6.0.12/configure
|
|
===================================================================
|
|
--- VirtualBox-6.0.12.orig/configure
|
|
+++ VirtualBox-6.0.12/configure
|
|
@@ -1546,14 +1546,14 @@ EOF
|
|
INCQT5="$q/include $q/include/QtCore"
|
|
FLGQT5="-DQT_SHARED"
|
|
I_INCQT5=`prefix_I "$INCQT5"`
|
|
- LIBQT5="-L$q/lib -lQt5CoreVBox"
|
|
+ LIBQT5="-L$q/lib -L$q/usr/lib64 -lQt5CoreVBox"
|
|
TOOLQT5="$q"
|
|
if test_compile "$LIBQT5 $LIBPTHREAD $I_INCQT5 $FLGQT5" qt5 qt5 nofatal &&
|
|
test_execute_path "`L_to_PATH "$LIBQT5"`" nofatal; then
|
|
foundqt5=2 # internal
|
|
break;
|
|
fi
|
|
- LIBQT5="-L$q/lib -lQt5Core"
|
|
+ LIBQT5="-L$q/lib -L$q/usr/lib64 -lQt5Core"
|
|
if test_compile "$LIBQT5 $LIBPTHREAD $I_INCQT5 $FLGQT5" qt5 qt5 nofatal &&
|
|
test_execute_path "`L_to_PATH "$LIBQT5"`" nofatal; then
|
|
foundqt5=1 # no pkg-config, Qt directory
|
|
Index: VirtualBox-6.0.12/src/VBox/Additions/common/crOpenGL/Makefile.kmk
|
|
===================================================================
|
|
--- VirtualBox-6.0.12.orig/src/VBox/Additions/common/crOpenGL/Makefile.kmk
|
|
+++ VirtualBox-6.0.12/src/VBox/Additions/common/crOpenGL/Makefile.kmk
|
|
@@ -224,15 +224,7 @@ VBoxOGL_LIBS.win += \
|
|
$(PATH_STAGE_LIB)/additions/VBoxCrHgsmi$(VBOX_SUFF_LIB)
|
|
|
|
if1of ($(KBUILD_TARGET), linux solaris freebsd)
|
|
- ifdef VBOX_USE_SYSTEM_GL_HEADERS
|
|
VBoxOGL_LIBS += Xcomposite Xdamage Xfixes Xext
|
|
- else
|
|
- VBoxOGL_LIBS += \
|
|
- $(PATH_STAGE_LIB)/libXcomposite.so \
|
|
- $(PATH_STAGE_LIB)/libXdamage.so \
|
|
- $(PATH_STAGE_LIB)/libXfixes.so \
|
|
- $(PATH_STAGE_LIB)/libXext.so
|
|
- endif
|
|
ifdef VBoxOGL_FAKEDRI
|
|
ifeq ($(KBUILD_TARGET), freebsd)
|
|
VBoxOGL_LIBS += \
|