hi
olsen wrote:
he IOhannes thanks for provided solutions installing libldts gets me over -ldts errör
good.
but straight into:
cc -DPD -I/home/olsen/pd/pd-extended/pure-data/pd/src -Wall -W -ggdb -I/home/olsen/pd/pd-extended/pure-data/Gem/src -I/home/olsen/pd/pd-extended/pure-data/externals/pdp/include -DUNIX -Dunix -DDL_OPEN -fPIC -O2 -funroll-loops -fomit-frame-pointer -o "/home/olsen/pd/pd-extended/pure-data/externals/bsaylor/partconv~.o" -c
personally i don't feel any responsibility for "bsaylor"
"/home/olsen/pd/pd-extended/pure-data/externals/bsaylor/partconv~.c" /home/olsen/pd/pd-extended/pure-data/externals/bsaylor/partconv~.c:34:19: error: fftw3.h: No such file or directory /home/olsen/pd/pd-extended/pure-data/externals/bsaylor/partconv~.c:51: error: expected specifier-qualifier-list before ‘fftwf_complex’ ...
a good idea is always to find the line that actually threw the error and try to find out why. (one way to find out why is to just ask; another way is to go and google; a third way is to use your brains; all of them have their pros and cons :-)) on close inspection you might notice that it has something todo with "fftw" (it cannot find a file "fftw3.h" and then throws and error about "fftwf_complex")
now why on earth are you missing a file "fftw3.h"? probably because nobody installed it. you could use http://packages.ubuntu.org to find out which package contains this file and install. (it might be libfftw3-dev,...)
you will eventually have even more packages not installed. you can either try to find them out by yourself. alternatively there is a description on puredata.info that will tell you which build-prerequisites there are on debian/ubuntu systems.
(indeed, the autobuild script should eventually check for these; but keep in mind that the entire svn is a moving target...)
fgmasdr IOhannes