summaryrefslogtreecommitdiff
path: root/app-pda/jpilot
diff options
context:
space:
mode:
Diffstat (limited to 'app-pda/jpilot')
-rw-r--r--app-pda/jpilot/Manifest1
-rw-r--r--app-pda/jpilot/files/jpilot-1.8.2-fno-common.patch36
2 files changed, 0 insertions, 37 deletions
diff --git a/app-pda/jpilot/Manifest b/app-pda/jpilot/Manifest
index 01958fa9985c..87f5f62cbea2 100644
--- a/app-pda/jpilot/Manifest
+++ b/app-pda/jpilot/Manifest
@@ -1,5 +1,4 @@
AUX jpilot-1.8.2-fix-paths.patch 3619 BLAKE2B 01d77eb206f2ce4c1f28b2950334f0814fb398cc61bc4164e573a7290b6ff0a1d6c710c6932ce0170b8634459beb8f2f53c296b3fcf79ea56d8ca061459babd4 SHA512 25e026aafc04e488183a7537f37566b30c1300f090cc1b4c9eca6531e30654751e10f72c8d45f0ad1bcfa441c659380831de520f41906daec61b4b069fc84f81
-AUX jpilot-1.8.2-fno-common.patch 1094 BLAKE2B 50e039c59bd36af356c9eb53d144be622cc36af5be86464c135ff3184ad5f7bc59bfcb9d19287ba56d59e3eab33274cb8dcc220c8fc1429d4c82df0711d3feb5 SHA512 50d4f6c924fb3c5241d424ec5457f80f93a4fa5dc6dcd9f31e0a2d44bc696ea5ad9f6cd447dfae6f3a6b97a9c951977a0b98379ef3b548eba4b0d1732443bf87
AUX jpilot-1.8.2-qa-desktop-file.patch 280 BLAKE2B 8a84005ce60627cea1f6b8b9ce96e824a65b621d63706703d15a3dd1ed48945ab100927a885d8c7e40c2688194f89a151be96729b26d6cb4d081024095ed3178 SHA512 ccc59b87c5e7f9074e83e9c3a47799c6779c29583fbd9845a26ad735342b22bf390bf8bed50dc2adac097dea00823ea587c8a5abdce4c197f5160e59c4617a37
AUX jpilot-2.0.1-fix-configure-clang16.patch 728 BLAKE2B 7ced0330bef79c3232e2b7ea8358ed03a5ef2883d838694dc46209878b5ec57adc86083f92fd7298878823dd1f8901ff4cd4c0d6345e8e1e64853d3030669408 SHA512 e51cf0490ad62e3c9f4cd80166badd382db724efe57d91a1e2c7db3dbf0972dbca12c0f18f9c4e55705ba0100bb92191d5a1dd546c4a415b8c181c6c8840b54a
AUX jpilot-2.0.1-fix-lto-type-mismatch.patch 719 BLAKE2B 163a24ed836d963d2451941b1fe9ab700444642c94ee73a99f1f4f3676e0fd210298840c4e2bc26c66dab3931a895d81028cd7f6e476691be23985d8cfa4b22b SHA512 add52b92169b8ad95f8fd973f8491a540d567f0a9643328a95d535757b395c8fafab0f59efd96dfb200e69fa7fa8320df611ec50ddc9a5fd95588da36d5b0b1d
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;