forked from pool/virtualbox
6ad5784215
- Version bump to 6.1.26 (released July 28 2021 by Oracle) This is a maintenance release. The following items were fixed and/or added: VMSVGA: fixed VM screen artifacts after restoring from saved state (bug #20067) Storage: Fixed audio endianness for certain CUE sheet CD/DVD images. VBoxHeadless: Running VM will save its state on host shutdown VBoxManage: Fix OS detection for Ubuntu 20.10 ISO with unattended install Linux Additions: Fixed mouse pointer offsetting issue for VMSVGA graphics adapter in multi-monitor VM setup (6.1.24 regression) File "fix_ordering_of_qt_includes.patch" added for Leap and SLR builds. OBS-URL: https://build.opensuse.org/request/show/909267 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=613
22 lines
989 B
Diff
22 lines
989 B
Diff
Index: VirtualBox-6.1.26/configure
|
|
===================================================================
|
|
--- VirtualBox-6.1.26.orig/configure
|
|
+++ VirtualBox-6.1.26/configure
|
|
@@ -1586,14 +1586,14 @@ EOF
|
|
INCQT5="$q/include $q/include/QtCore"
|
|
FLGQT5="-DQT_SHARED"
|
|
I_INCQT5=`prefix_I "$INCQT5"`
|
|
- LIBQT5="-L$q/lib -lQt5CoreVBox -lQt5GuiVBox"
|
|
+ LIBQT5="-L$q/lib -L$q/usr/lib64 -lQt5CoreVBox -lQt5GuiVBox"
|
|
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 -lQt5Gui"
|
|
+ LIBQT5="-L$q/lib -L$q/usr/lib64 -lQt5Core -lQt5Gui"
|
|
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
|