[PD-dev] problems building FFTW-enabled pd

2007-08-18 Thread Sergei Steshenko
Hello All, I'm trying to build pd-0.40-2 in the framework of my AppsFromScratch. For starters, 'gcc' complains about 'logn' on line #44 and 'inverse' on on line #47 of 'pd-0.40-2/src/d_fft_fftw.c' file: 42 static fftw_plan fftw_getplan(int n, int dir) 43 { 44 logn = ilog2(n);

Re: [PD-dev] problems building FFTW-enabled pd

2007-08-18 Thread Miller Puckette
Sorry, FFTW support isn't working at all in the current version of Pd (they changed the API and I haven't had the patience to try to deal with it yet.) Miller On Sat, Aug 18, 2007 at 10:27:48AM -0700, Sergei Steshenko wrote: Hello All, I'm trying to build pd-0.40-2 in the framework of my

Re: [PD-dev] problems building FFTW-enabled pd

2007-08-18 Thread Mathieu Bouchard
On Sat, 18 Aug 2007, Miller Puckette wrote: Sorry, FFTW support isn't working at all in the current version of Pd (they changed the API and I haven't had the patience to try to deal with it yet.) Sorry, FFTW 3 was released several years before pd 0.40 and you decided to use the FFTW 2 API

Re: [PD-dev] problems building FFTW-enabled pd

2007-08-18 Thread Miller Puckette
Oops, if FFTW3 was out when I tried to adapt Pd to use FFTW, it's my mistake. If the FFTW2 API is still supported, I should just go on and finish the job of adapting Pd to use it. If only FFTW3 is to be supported in the future, I have to re-work the FFTW code. Anyway, since there are two other

Re: [PD-dev] problems building FFTW-enabled pd

2007-08-18 Thread Sergei Steshenko
--- Miller Puckette [EMAIL PROTECTED] wrote: Sorry, FFTW support isn't working at all in the current version of Pd (they changed the API and I haven't had the patience to try to deal with it yet.) Miller On Sat, Aug 18, 2007 at 10:27:48AM -0700, Sergei Steshenko wrote: Hello All,

Re: [PD-dev] problems building FFTW-enabled pd

2007-08-18 Thread Sergei Steshenko
--- Mathieu Bouchard [EMAIL PROTECTED] wrote: On Sat, 18 Aug 2007, Miller Puckette wrote: Sorry, FFTW support isn't working at all in the current version of Pd (they changed the API and I haven't had the patience to try to deal with it yet.) Sorry, FFTW 3 was released several years

Re: [PD-dev] problems building FFTW-enabled pd

2007-08-18 Thread Mathieu Bouchard
On Sat, 18 Aug 2007, Sergei Steshenko wrote: Just to make thing clear - I mean FFTW2, not yet FFTW3. Since FFTW3 is around for a couple of years, I expected FFTW2 to work. Maybe not the last FFTW2 version ? Did I expect too much ? Let's call it a non-feature. Miller bundled a piece of

Re: [PD-dev] problems building FFTW-enabled pd

2007-08-18 Thread Sergei Steshenko
--- Mathieu Bouchard [EMAIL PROTECTED] wrote: [snip] The FFTW3 patch is independent: you don't do --enable-fftw for it. I think it's a separate option. I don't have the time to look at what the actual diff looks like, but I've seen some parts of the diff a while ago. Thanks - if your