fluid-dev
[Top][All Lists]
Advanced

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

Re: [fluid-dev] compiling fluidsynth to use core audio


From: Josh Green
Subject: Re: [fluid-dev] compiling fluidsynth to use core audio
Date: 29 May 2003 16:47:52 -0700

On Thu, 2003-05-29 at 15:57, Joe Corneli wrote:
> Ok, recompiling I get this error:
> 
> ld: Undefined symbols:
> _delete_fluid_core_audio_driver
> _fluid_core_audio_driver_settings
> _new_fluid_core_audio_driver
> _new_fluid_core_audio_driver2
> make[2]: *** [fluidsynth] Error 1
> make[1]: *** [all] Error 2
> make: *** [all-recursive] Error 1
> 
> Joe
> 

Not being linked or compiled most likely. Seems src/Makefile.am is
broken in this regard. Do you have automake installed? If you do you
could edit src/Makefile.am and remove fluid_coreaudio.c from the
EXTRA_DIST line and add it to libfluidsynth_la_SOURCES:

libfluidsynth_la_SOURCES = \
        fluid_adriver.c \
        fluid_adriver.h \
        fluid_alsa.c \
        fluid_chan.c \
        fluid_chan.h \
        fluid_chorus.c \
        fluid_chorus.h \
        fluid_cmd.c \
        fluid_cmd.h \
        fluid_conv.c \
        fluid_conv.h \
        fluid_coreaudio.c \
...

Make sure there is nothing after the back slash. Then re-make which
should cause automake to be invoked. If it has problems for some reason,
just run "automake" from the FluidSynth toplevel directory. If the
configure script gets run again, you may have to edit config.h to change
the COREAUDIO_SUPPORT line back before you "make". We're getting close..
Cheers.
        Josh Green





reply via email to

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