diff options
author | Ben Kohler <bkohler@gentoo.org> | 2021-01-21 07:03:32 -0600 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2021-01-21 07:03:52 -0600 |
commit | c17369e82411e9f33bfb5a59a08d2a4c4ce8d940 (patch) | |
tree | f0084ff2b90ae6b59d2341e18bc8eea4f94dcc07 /net-misc/remmina/files | |
parent | profiles: temporarily mask dev-go/qt (diff) | |
download | gentoo-c17369e82411e9f33bfb5a59a08d2a4c4ce8d940.tar.gz gentoo-c17369e82411e9f33bfb5a59a08d2a4c4ce8d940.tar.bz2 gentoo-c17369e82411e9f33bfb5a59a08d2a4c4ce8d940.zip |
net-misc/remmina: drop old
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'net-misc/remmina/files')
-rw-r--r-- | net-misc/remmina/files/remmina-1.4.5-with-examples.patch | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/net-misc/remmina/files/remmina-1.4.5-with-examples.patch b/net-misc/remmina/files/remmina-1.4.5-with-examples.patch deleted file mode 100644 index 930f326b27b4..000000000000 --- a/net-misc/remmina/files/remmina-1.4.5-with-examples.patch +++ /dev/null @@ -1,47 +0,0 @@ -From 5d569e04f33b2c9a8f735d928ad2c9cec9d1c4b5 Mon Sep 17 00:00:00 2001 -From: Antenore Gatta <antenore@simbiosi.org> -Date: Sun, 14 Jun 2020 09:05:18 +0200 -Subject: [PATCH] Build failure with -DWITH_EXAMPLES=yes, closes #2228 - -Signed-off-by: Antenore Gatta <antenore@simbiosi.org> ---- - plugins/tool_hello_world/plugin.c | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -diff --git a/plugins/tool_hello_world/plugin.c b/plugins/tool_hello_world/plugin.c -index 3e277435d..9695fd586 100644 ---- a/plugins/tool_hello_world/plugin.c -+++ b/plugins/tool_hello_world/plugin.c -@@ -42,17 +42,18 @@ - #include <gdk/gdkx.h> - - static RemminaPluginService *remmina_plugin_service = NULL; -+#define REMMINA_PLUGIN_DEBUG(fmt, ...) remmina_plugin_service->_remmina_debug(__func__, fmt, ##__VA_ARGS__) - - static void remmina_plugin_tool_init(RemminaProtocolWidget *gp) - { - TRACE_CALL(__func__); -- remmina_plugin_service->_debug("[%s] Plugin init", PLUGIN_NAME); -+ REMMINA_PLUGIN_DEBUG("[%s] Plugin init", PLUGIN_NAME); - } - - static gboolean remmina_plugin_tool_open_connection(RemminaProtocolWidget *gp) - { - TRACE_CALL(__func__); -- remmina_plugin_service->_debug("[%s] Plugin open connection", PLUGIN_NAME); -+ REMMINA_PLUGIN_DEBUG("[%s] Plugin open connection", PLUGIN_NAME); - - GtkDialog *dialog; - dialog = GTK_DIALOG(gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL | GTK_DIALOG_USE_HEADER_BAR, -@@ -65,7 +66,7 @@ static gboolean remmina_plugin_tool_open_connection(RemminaProtocolWidget *gp) - static gboolean remmina_plugin_tool_close_connection(RemminaProtocolWidget *gp) - { - TRACE_CALL(__func__); -- remmina_plugin_service->_debug("[%s] Plugin close connection", PLUGIN_NAME); -+ REMMINA_PLUGIN_DEBUG("[%s] Plugin close connection", PLUGIN_NAME); - remmina_plugin_service->protocol_plugin_emit_signal(gp, "disconnect"); - return FALSE; - } --- -GitLab - |