* update at-spi2-core to 2.48.3-1

This commit is contained in:
Alexander Baldeck 2023-06-30 14:17:20 +02:00
parent 23badf2172
commit 11a0ef9c34
3 changed files with 2 additions and 53 deletions

View File

@ -7,7 +7,7 @@ pkgname=(
at-spi2-core
at-spi2-core-docs
)
pkgver=2.48.2
pkgver=2.48.3
pkgrel=1
pkgdesc="Protocol definitions and daemon for D-Bus at-spi"
url="https://gitlab.gnome.org/GNOME/at-spi2-core"
@ -33,7 +33,7 @@ makedepends=(
checkdepends=(
at-spi2-core
)
_commit=36b6bae1542a5201ff25ed16e4c026512f4fecdb # tags/AT_SPI2_CORE_2_48_2^0
_commit=c0c1b0477ab643e900cecfaf8d3af70ed9400b82 # tags/AT_SPI2_CORE_2_48_3^0
source=("git+https://gitlab.gnome.org/GNOME/at-spi2-core.git#commit=$_commit")
b2sums=('SKIP')

View File

@ -1,24 +0,0 @@
--- at-spi2-core/dbind/dbtest.c.orig 2019-02-18 19:15:05.059846039 +0100
+++ at-spi2-core/dbind/dbtest.c 2019-02-18 19:15:20.166525995 +0100
@@ -17,6 +17,7 @@
* Boston, MA 02111-1307, USA.
*/
+#include <linux/prctl.h>
#include <stdio.h>
#include <glib.h>
#include <string.h>
--- at-spi2-core/bus/at-spi-bus-launcher.c.orig 2019-02-18 18:25:32.000000000 +0000
+++ at-spi2-core/bus/at-spi-bus-launcher.c 2019-02-18 18:25:41.000000000 +0000
@@ -25,11 +25,9 @@
#include <unistd.h>
#include <string.h>
#include <signal.h>
-#ifdef __linux
#include <sys/prctl.h>
#include <sys/socket.h>
#include <sys/un.h>
-#endif
#include <sys/wait.h>
#include <errno.h>
#include <stdio.h>

View File

@ -1,27 +0,0 @@
bus/at-spi-bus-launcher.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git c/bus/at-spi-bus-launcher.c i/bus/at-spi-bus-launcher.c
index 5d58dff..994a767 100644
--- c/bus/at-spi-bus-launcher.c
+++ i/bus/at-spi-bus-launcher.c
@@ -293,7 +293,9 @@ ensure_a11y_bus_daemon (A11yBusLauncher *app, char *config_path)
if (pipe (app->pipefd) < 0)
g_error ("Failed to create pipe: %s", strerror (errno));
-
+
+ g_clear_pointer (&app->a11y_launch_error_message, g_free);
+
if (!g_spawn_async (NULL,
argv,
NULL,
@@ -389,6 +391,8 @@ ensure_a11y_bus_broker (A11yBusLauncher *app, char *config_path)
if (listen (app->listenfd, 1024) < 0)
g_error ("Failed to listen on socket: %s", strerror(errno));
+ g_clear_pointer (&app->a11y_launch_error_message, g_free);
+
if (!g_spawn_async (NULL,
argv,
NULL,