summaryrefslogtreecommitdiff
path: root/app-pda
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2025-03-28 08:02:16 +0100
committerConrad Kostecki <conikost@gentoo.org>2025-03-28 22:06:18 +0100
commit10651a8d43f470098dd3f38e4c2a6409ef2e040e (patch)
tree1e3dc8c2898d209a24bfc8b4d54a114ab626a0fe /app-pda
parent5aa44953294d76bf03d573f169af5bf7b38ac756 (diff)
downloadgentoo-10651a8d43f470098dd3f38e4c2a6409ef2e040e.tar.gz
gentoo-10651a8d43f470098dd3f38e4c2a6409ef2e040e.tar.bz2
gentoo-10651a8d43f470098dd3f38e4c2a6409ef2e040e.zip
app-pda/jpilot: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-pda')
-rw-r--r--app-pda/jpilot/files/jpilot-1.8.2-fno-common.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/app-pda/jpilot/files/jpilot-1.8.2-fno-common.patch b/app-pda/jpilot/files/jpilot-1.8.2-fno-common.patch
deleted file mode 100644
index c6cf3665fdde..000000000000
--- a/app-pda/jpilot/files/jpilot-1.8.2-fno-common.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-https://bugs.gentoo.org/709790
---- a/jpilot-dump.c
-+++ b/jpilot-dump.c
-@@ -76,7 +76,7 @@ const char *formatT;
- * this code but must be instantiated for the code to compile.
- * The same is true of the functions which are only used in GUI mode. */
- pid_t jpilot_master_pid = -1;
--int pipe_to_parent;
-+extern int pipe_to_parent;
- GtkWidget *glob_dialog;
- GtkWidget *glob_date_label;
- gint glob_date_timer_tag;
---- a/jpilot-sync.c
-+++ b/jpilot-sync.c
-@@ -37,7 +37,8 @@
- #include "otherconv.h"
-
- /******************************* Global vars **********************************/
--int pipe_to_parent, pipe_from_parent;
-+extern int pipe_to_parent;
-+int pipe_from_parent;
- pid_t glob_child_pid;
- unsigned char skip_plugins;
-
---- a/jpilot.c
-+++ b/jpilot.c
-@@ -84,7 +84,8 @@
- /* #define PIPE_DEBUG */
- /******************************* Global vars **********************************/
- /* Application-wide globals */
--int pipe_from_child, pipe_to_parent;
-+extern int pipe_to_parent;
-+int pipe_from_child;
- int pipe_from_parent, pipe_to_child;
- /* Main GTK window for application */
- GtkWidget *window;