fluid-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [fluid-dev] fluidsynth 1.0.3 and ladcca 0.4.0


From: Jacob Meuser
Subject: Re: [fluid-dev] fluidsynth 1.0.3 and ladcca 0.4.0
Date: Fri, 28 Nov 2003 10:50:37 -0800
User-agent: Mutt/1.4.1i

On Fri, Nov 28, 2003 at 09:57:15AM +0300, address@hidden wrote:

> fluidsynth.c: In function `main':
> fluidsynth.c:444: `CCA_Use_Jack' undeclared (first use in this function)
> fluidsynth.c:444: (Each undeclared identifier is reported only once
> fluidsynth.c:444: for each function it appears in.)
> fluidsynth.c:447: `CCA_Use_Alsa' undeclared (first use in this function)

> with --disable-ladcca make ok.
> ladcca version 0.4.0 (jackit 0.90, alsa 0.9.8, linux 2.4.20)

I had the same problem.  Josh Green suggested the following, which seems
to work for me.

-- 
<address@hidden>

--- src/fluidsynth.c.orig       2003-11-14 00:55:29.000000000 -0800
+++ src/fluidsynth.c    2003-11-14 00:56:16.000000000 -0800
@@ -440,12 +440,14 @@
     
     flags = CCA_Config_Data_Set | CCA_Terminal;
 
+    /*
     if (fluid_settings_str_equal(settings, "audio.driver", "jack")) {
       flags |= CCA_Use_Jack;
     }
     if (fluid_settings_str_equal(settings, "midi.driver", "alsa_seq")) {
       flags |= CCA_Use_Alsa;
     }
+    */
     
     fluid_cca_client = cca_init (cca_args, "FluidSynth", flags, CCA_PROTOCOL 
(1,1));
     





reply via email to

[Prev in Thread] Current Thread [Next in Thread]