feat: updated engine version to 4.4-rc1

This commit is contained in:
Sara 2025-02-23 14:38:14 +01:00
parent ee00efde1f
commit 21ba8e33af
5459 changed files with 1128836 additions and 198305 deletions

View file

@ -11,7 +11,10 @@ readability.
- Version: 1.1.3-5
- License: LGPL-2.1+
Patches in the `patches` directory should be re-applied after updates.
Patches:
- `0001-musl-standard-poll.patch` (GH-71934)
- `0002-freebsd-sys-endian.patch` (GH-100047)
## dbus

View file

@ -38,7 +38,11 @@
#include <poll.h>
#include <errno.h>
#include <stdarg.h>
#ifdef __FreeBSD__
#include <sys/endian.h>
#else
#include <endian.h>
#endif // __FreeBSD__
#ifndef __GNUC__
#define __inline__ inline

View file

@ -0,0 +1,13 @@
diff --git a/thirdparty/linuxbsd_headers/alsa/asoundlib.h b/thirdparty/linuxbsd_headers/alsa/asoundlib.h
index 3c2766e325..a546194382 100644
--- a/thirdparty/linuxbsd_headers/alsa/asoundlib.h
+++ b/thirdparty/linuxbsd_headers/alsa/asoundlib.h
@@ -35,7 +35,7 @@
#include <string.h>
#include <fcntl.h>
#include <assert.h>
-#include <sys/poll.h>
+#include <poll.h>
#include <errno.h>
#include <stdarg.h>
#include <endian.h>

View file

@ -0,0 +1,16 @@
diff --git a/thirdparty/linuxbsd_headers/alsa/asoundlib.h b/thirdparty/linuxbsd_headers/alsa/asoundlib.h
index a546194382..598175403c 100644
--- a/thirdparty/linuxbsd_headers/alsa/asoundlib.h
+++ b/thirdparty/linuxbsd_headers/alsa/asoundlib.h
@@ -38,7 +38,11 @@
#include <poll.h>
#include <errno.h>
#include <stdarg.h>
+#ifdef __FreeBSD__
+#include <sys/endian.h>
+#else
#include <endian.h>
+#endif // __FreeBSD__
#ifndef __GNUC__
#define __inline__ inline

View file

@ -1,11 +0,0 @@
--- a/asoundlib.h
+++ b/asoundlib.h
@@ -35,7 +35,7 @@
#include <string.h>
#include <fcntl.h>
#include <assert.h>
-#include <sys/poll.h>
+#include <poll.h>
#include <errno.h>
#include <stdarg.h>
#include <endian.h>