1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Description: Add missing header includes, don't call a non-existent function.
Author: Andrey Rakhmatullin <wrar@debian.org>
Bug-Debian: https://bugs.debian.org/1066365
Last-Update: 2024-03-27
Index: timidity-2.14.0/interface/xaw_i.c
===================================================================
--- timidity-2.14.0.orig/interface/xaw_i.c
+++ timidity-2.14.0/interface/xaw_i.c
@@ -57,6 +57,7 @@
#include "arc.h"
#include <X11/Intrinsic.h>
+#include <X11/IntrinsicP.h>
#include <X11/StringDefs.h>
#include <X11/Xatom.h>
Index: timidity-2.14.0/interface/xskin_c.c
===================================================================
--- timidity-2.14.0.orig/interface/xskin_c.c
+++ timidity-2.14.0/interface/xskin_c.c
@@ -547,7 +547,7 @@ static void ctl_event(CtlEvent *e)
case CTLE_LYRIC:
ctl_lyric((int)e->v1);
break;
-#ifdef SUPPORT_SOUNDSPEC
+#if 0
case CTLE_SPEANA:
ctl_speana_data((double *)e->v1, (int)e->v2);
break;
|