From: Olivier Laurantin Date: Fri, 31 Jan 2020 07:01:05 +0000 (+0100) Subject: net-wireless/bluez-tools: Fix compilation with gcc-10 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2cd5da72e8078d231fe6c70b8c500ae1d24019c1;p=gentoo.git net-wireless/bluez-tools: Fix compilation with gcc-10 Closes: https://bugs.gentoo.org/707230 Signed-off-by: Olivier Laurantin Package-Manager: Portage-2.3.85, Repoman-2.3.20 Closes: https://github.com/gentoo/gentoo/pull/14510 Signed-off-by: Andreas Sturmlechner --- diff --git a/net-wireless/bluez-tools/bluez-tools-0_p20161212.ebuild b/net-wireless/bluez-tools/bluez-tools-0_p20161212.ebuild index 4e777054b46e..87c36ffc4986 100644 --- a/net-wireless/bluez-tools/bluez-tools-0_p20161212.ebuild +++ b/net-wireless/bluez-tools/bluez-tools-0_p20161212.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit autotools eutils +inherit autotools DESCRIPTION="A set of tools to manage bluetooth devices for linux" HOMEPAGE="https://github.com/khvzak/bluez-tools" @@ -23,9 +23,11 @@ DEPEND="${RDEPEND}" DOCS=( AUTHORS README ) +PATCHES=( "${FILESDIR}/${P}-gcc-10.patch" ) + S="${WORKDIR}/${PN}-${COMMIT}" src_prepare() { + default eautoreconf - default_src_prepare } diff --git a/net-wireless/bluez-tools/files/bluez-tools-0_p20161212-gcc-10.patch b/net-wireless/bluez-tools/files/bluez-tools-0_p20161212-gcc-10.patch new file mode 100644 index 000000000000..6bfaa57fa19a --- /dev/null +++ b/net-wireless/bluez-tools/files/bluez-tools-0_p20161212-gcc-10.patch @@ -0,0 +1,29 @@ +--- a/src/lib/agent-helper.c 2016-12-12 09:18:08.000000000 +0100 ++++ b/src/lib/agent-helper.c 2020-01-30 22:23:27.555951515 +0100 +@@ -33,6 +33,8 @@ + + #include "agent-helper.h" + ++gboolean agent_need_unregister; ++ + static const gchar *_bt_agent_introspect_xml = "\n\t\n\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\n\t\n\n"; + static guint _bt_agent_registration_id = 0; + static GHashTable *_pin_hash_table = NULL; +--- a/src/lib/agent-helper.h 2016-12-12 09:18:08.000000000 +0100 ++++ b/src/lib/agent-helper.h 2020-01-30 22:22:15.463751152 +0100 +@@ -35,7 +35,7 @@ + #define AGENT_DBUS_INTERFACE "org.bluez.Agent1" + #define AGENT_PATH "/org/blueztools" + +-gboolean agent_need_unregister; ++extern gboolean agent_need_unregister; + + void register_agent_callbacks(gboolean interactive_console, GHashTable *pin_dictonary, gpointer main_loop_object, GError **error); + void unregister_agent_callbacks(GError **error); +@@ -44,4 +44,4 @@ + } + #endif + +-#endif /* __AGENT_HELPER_H */ +\ Pas de fin de ligne à la fin du fichier ++#endif /* __AGENT_HELPER_H */