[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [fluid-dev] Re: fluidsynth 1.0.3 and LADCCA 0.4
From: |
Josh Green |
Subject: |
Re: [fluid-dev] Re: fluidsynth 1.0.3 and LADCCA 0.4 |
Date: |
Mon, 01 Dec 2003 04:41:22 -0800 |
On Sun, 2003-11-30 at 23:55, address@hidden wrote:
> hmm, i try patching
>
> sh-2.05b$ bzcat ~/lar/patch/fluidsynth-1.0.3-ladcca-patch.bz2 | patch -p0
> patching file src/fluidsynth.c
> patch: **** malformed patch at line 5: flags = CCA_Config_Data_Set |
> CCA_Terminal;
>
<cut>
>
> what is my mistake?
The patch probably got munged via email :) The fix is in CVS, but you
could just as easily do it by hand by editing src/fluidsynth.c and find
the lines that say (around line 452):
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;
}
Then either delete all that or you could comment it out like:
/*
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;
}
*/
Hope that helps.
Josh Green