> Now, I want to do the installation on server machine, to which I dont have
> admin access. So all the libraries will be installed on non-standard
> location (somewhere in my home/username folder). I can download fftw3 from
> their webpage, but I dont know from where to get source for fftw3-dev to be
> installed in remote/server machine.
the fftw3-dev package just contains the header files and a static
compiled library
(
http://packages.ubuntu.com/de/dapper/fftw3-dev)
The header will be installed by default if you build/install fftw from
the source.
I think fftw builds static library by default, but you should build
both static and shared library.
So configure fftw with --enable-shared and --enable-static option.
To make VOTCA use a fftw in a non-standard place you can either use
environment variables FFTW_CFLAGS and FFTW_LIBS, e.g.:
export FFTW_CFLAGS="-I/path/to/fftw/include"
export FFTW_LIBS="-L/path/to/fftw/lib -lfftw3"
or add the dir /path/to/fftw/lib/pkgconfig to the pkg-config search path, e.g.
export PKG_CONFIG_PATH="/path/to/fftw/lib/pkgconfig"
Cheers,
Christoph