On Thu, 2008-01-24 at 18:13 -0800, maxim wexler wrote:
> > all I can find is the file src/tonegen/tonegen.c in
> > audacious-plugins
> 
> Seems to be a different file than
> 
> www.lns.com/papers/tonegen/tonegen.c 

ah, then your previous Q. is easy.  Looking at the above c file, it says
#ifdef LINUX
#include <linux/soundcard.h>
#define DSP "/dev/dsp"
#else
#include <machine/soundcard.h>
#define DSP "/dev/dspW"
#endif

so you have to define LINUX.  There are a few other things too,
something like this should do it:

gcc -D LINUX -include string.h -lm -o tonegen tonegen.c

-- 
Iain Buchanan <iaindb at netspace dot net dot au>

The ends justify the means.
                -- after Matthew Prior

-- 
gentoo-user@lists.gentoo.org mailing list

Reply via email to