https://github.com/libsdl-org/SDL/commit/6b38d250aac029c79cfda18af8372ec52e2c41ba
From 6b38d250aac029c79cfda18af8372ec52e2c41ba Mon Sep 17 00:00:00 2001
From: Simon McVittie <[EMAIL REDACTED]>
Date: Tue, 7 Jan 2025 20:15:55 +0000
Subject: [PATCH] tray: Don't try to use GTK 2 versions of libappindicator
We use GTK 3 functions in this file, so we cannot load a libappindicator
whose SONAME indicates that it is using GTK 2.
Signed-off-by: Simon McVittie <smcv@collabora.com>
---
src/tray/unix/SDL_tray.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/tray/unix/SDL_tray.c b/src/tray/unix/SDL_tray.c
index c2635665eb558..3db86808aa7b5 100644
--- a/src/tray/unix/SDL_tray.c
+++ b/src/tray/unix/SDL_tray.c
@@ -176,11 +176,8 @@ static void quit_gtk(void)
const char *appindicator_names[] = {
"libayatana-appindicator3.so",
"libayatana-appindicator3.so.1",
- "libayatana-appindicator.so",
"libappindicator3.so",
"libappindicator3.so.1",
- "libappindicator.so",
- "libappindicator.so.1",
NULL
};