Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package virtualbox for openSUSE:Factory 
checked in at 2021-09-13 16:24:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/virtualbox (Old)
 and      /work/SRC/openSUSE:Factory/.virtualbox.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "virtualbox"

Mon Sep 13 16:24:21 2021 rev:223 rq:917603 version:6.1.26

Changes:
--------
--- /work/SRC/openSUSE:Factory/virtualbox/virtualbox.changes    2021-08-26 
23:14:11.796279578 +0200
+++ /work/SRC/openSUSE:Factory/.virtualbox.new.1899/virtualbox.changes  
2021-09-13 16:24:51.258767127 +0200
@@ -1,0 +2,5 @@
+Wed Sep  8 04:54:25 UTC 2021 - Larry Finger <larry.fin...@gmail.com>
+
+- Add file "fixes-for-5.15.patch" to fix builds on kernel 5.15.
+
+-------------------------------------------------------------------

New:
----
  fixes-for-5.15.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ virtualbox.spec ++++++
--- /var/tmp/diff_new_pack.mvP3ud/_old  2021-09-13 16:24:52.762768865 +0200
+++ /var/tmp/diff_new_pack.mvP3ud/_new  2021-09-13 16:24:52.766768870 +0200
@@ -178,6 +178,7 @@
 Patch142:       fixes_for_5.14.patch
 Patch143:       fix_ordering_of_qt_includes.patch
 Patch144:       fixes_for_leap15.4.patch
+Patch145:       fixes-for-5.15.patch
 Patch999:       virtualbox-fix-ui-background-color.patch
 #
 # Common BuildRequires for both virtualbox and virtualbox-kmp
@@ -308,7 +309,9 @@
 
 
 
+
 ##########################################
+
 %package qt
 Summary:        Qt GUI part for %{name}
 Group:          System/Emulators/PC
@@ -331,7 +334,9 @@
 
 
 
+
 #########################################
+
 %package websrv
 Summary:        WebService GUI part for %{name}
 Group:          System/Emulators/PC
@@ -348,7 +353,9 @@
 
 
 
+
 #########################################
+
 %package guest-x11
 Summary:        VirtualBox X11 drivers for mouse and video
 Group:          System/X11/Servers/XF86_4
@@ -367,7 +374,9 @@
 
 
 
+
 ###########################################
+
 %package guest-tools
 Summary:        VirtualBox guest tools
 Group:          System/Emulators/PC
@@ -391,7 +400,9 @@
 
 
 
+
 ###########################################
+
 %package -n python3-%{name}
 Summary:        Python bindings for %{name}
 Group:          Development/Libraries/Python
@@ -415,7 +426,9 @@
 
 
 
+
 ###########################################
+
 %package devel
 Summary:        Devel files for %{name}
 Group:          Development/Libraries/Other
@@ -434,7 +447,9 @@
 
 
 
+
 ###########################################
+
 %package host-source
 Summary:        Source files for %{name} host kernel modules
 Group:          Development/Sources
@@ -470,7 +485,9 @@
 
 
 
+
 ###########################################
+
 %package guest-desktop-icons
 Summary:        Icons for guest desktop files
 Group:          System/Emulators/PC
@@ -487,7 +504,9 @@
 
 
 
+
 ###########################################
+
 %package vnc
 Summary:        VNC desktop sharing
 Group:          System/Emulators/PC
@@ -565,6 +584,7 @@
 # Patch for Leap 15.4
 %patch144 -p1
 %endif
+%patch145 -p1
 # make VB UI background colors look sane again
 %patch999 -p1
 

++++++ fixes-for-5.15.patch ++++++

Index: VirtualBox-6.1.26/include/iprt/stdarg.h
===================================================================
--- VirtualBox-6.1.26.orig/include/iprt/stdarg.h
+++ VirtualBox-6.1.26/include/iprt/stdarg.h
@@ -44,7 +44,12 @@
 #   define __builtin_stdarg_start __builtin_va_start
 #  endif
 # else
-#  include <stdarg.h>
+#  include <linux/version.h>
+#  if LINUX_VERSION_CODE < KERNEL_VERSION(5, 15, 0)
+#   include <stdarg.h>
+#  else
+#   include <linux/stdarg.h>
+#  endif
 # endif
 #endif
 

Reply via email to