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
14 lines
650 B
Diff
14 lines
650 B
Diff
Index: VirtualBox-6.1.26/configure
|
|
===================================================================
|
|
--- VirtualBox-6.1.26.orig/configure
|
|
+++ VirtualBox-6.1.26/configure
|
|
@@ -1561,7 +1561,7 @@ EOF
|
|
qt5_ver=`pkg-config Qt5Core --modversion 2>> $LOG`
|
|
if [ $? -eq 0 ]; then
|
|
echo "(Qt5 from pkg-config)" >> $LOG
|
|
- FLGQT5=`pkg-config Qt5Core Qt5Gui --cflags`
|
|
+ FLGQT5=`pkg-config Qt5Core --cflags`
|
|
# gcc 4.8 is able to compile with C++11 (see also VBOX_GCC_std in Config.kmk)
|
|
[ $(($cc_maj * 100 + $cc_min)) -ge 408 ] && FLGQT5="$FLGQT5 -std=c++11"
|
|
INCQT5=`strip_I "$FLGQT5"`
|