From e9d044d4b9b71200a96adfa280848858c0f468c9 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 13 Nov 2021 13:10:00 +0000 Subject: gentoo resync : 13.11.2021 --- ...002-Fix-issues-with-gcc10-fno-common-flag.patch | 62 ---------------------- 1 file changed, 62 deletions(-) delete mode 100644 media-sound/denemo/files/denemo-2.3.0-0002-Fix-issues-with-gcc10-fno-common-flag.patch (limited to 'media-sound/denemo/files/denemo-2.3.0-0002-Fix-issues-with-gcc10-fno-common-flag.patch') diff --git a/media-sound/denemo/files/denemo-2.3.0-0002-Fix-issues-with-gcc10-fno-common-flag.patch b/media-sound/denemo/files/denemo-2.3.0-0002-Fix-issues-with-gcc10-fno-common-flag.patch deleted file mode 100644 index 425662e042c9..000000000000 --- a/media-sound/denemo/files/denemo-2.3.0-0002-Fix-issues-with-gcc10-fno-common-flag.patch +++ /dev/null @@ -1,62 +0,0 @@ -From 54075086a5b7acceef6dff41e19148778e285475 Mon Sep 17 00:00:00 2001 -From: Bernd Waibel -Date: Fri, 20 Mar 2020 21:03:02 +0100 -Subject: [PATCH] Fix issues with gcc10 -fno-common flag - -Signed-off-by: Bernd Waibel ---- - include/denemo/denemo_types.h | 7 ++++--- - src/export/print.h | 6 +++--- - 2 files changed, 7 insertions(+), 6 deletions(-) - -diff --git a/include/denemo/denemo_types.h b/include/denemo/denemo_types.h -index 1d67827..936892b 100644 ---- a/include/denemo/denemo_types.h -+++ b/include/denemo/denemo_types.h -@@ -430,7 +430,7 @@ typedef enum{ - } SCRIPT_TYPE; - - //index of columns in the keymap command list store FIXME if you add columns you must add them in allocate_keymap !!!! --enum -+typedef enum - { - COL_TYPE = 0, - COL_NAME, -@@ -1167,7 +1167,7 @@ struct cs_callback - * The (singleton) root object for the program - * - */ --struct DenemoRoot -+typedef struct DenemoRoot - { - gboolean non_interactive; /* if TRUE denemo should not display project, receive or send sounds etc*/ - gchar *scheme_file;/* filename for scheme code to run on startup */ -@@ -1258,6 +1258,7 @@ struct DenemoRoot - gboolean *silent; /** Don't log any message */ - gboolean *verbose; /** Display every messages */ - guint pending_layout_id;//Non zero when the current layout being created will be renamed to have this id --} Denemo; /**< The root object. */ -+}; -+extern struct DenemoRoot Denemo; /**< The root object. */ - - #endif -diff --git a/src/export/print.h b/src/export/print.h -index db0c8f1..64a3a8d 100644 ---- a/src/export/print.h -+++ b/src/export/print.h -@@ -108,9 +108,9 @@ typedef struct WysiwygInfo - GtkWidget *dialog; //an info dialog to tell the user what to do next... - } WysiwygInfo; - --gint LilyPond_stderr; //A file descriptor to pipe for LilyPond's stderr --GError *lily_err; --GPid previewerpid; -+extern gint LilyPond_stderr; //A file descriptor to pipe for LilyPond's stderr -+extern GError *lily_err; -+extern GPid previewerpid; - - WysiwygInfo* get_wysiwyg_info(); - void initialize_print_status (void); --- -2.25.1 - -- cgit v1.2.3