--- trunk/src/applications/staticProps/StaticProps.cpp 2006/05/16 02:06:37 956 +++ trunk/src/applications/staticProps/StaticProps.cpp 2006/05/16 20:38:23 957 @@ -59,7 +59,7 @@ #include "applications/staticProps/SCDOrderParameter.hpp" #include "applications/staticProps/DensityPlot.hpp" #include "applications/staticProps/RhoZ.hpp" -#ifndef WITHOUT_FFTW +#if defined(HAVE_FFTW_H) || defined(HAVE_DFFTW_H) || defined(HAVE_FFTW3_H) #include "applications/staticProps/Hxy.hpp" #endif @@ -190,9 +190,9 @@ int main(int argc, char* argv[]){ } else if (args_info.slab_density_given) { Mat3x3d hmat = info->getSnapshotManager()->getCurrentSnapshot()->getHmat(); analyser = new RhoZ(info, dumpFileName, sele1, hmat(2, 2), args_info.nrbins_arg); -#ifndef WITHOUT_FFTW +#if defined(HAVE_FFTW_H) || defined(HAVE_DFFTW_H) || defined(HAVE_FFTW3_H) }else if (args_info.hxy_given) { - analyser = new Hxy(info, dumpFileName, sele1, args_info.nbins_x_arg, args_info.nbins_y_arg, args_info.nrbins_arg); + analyser = new Hxy(info, dumpFileName, sele1, args_info.nbins_x_arg, args_info.nbins_y_arg, args_info.nrbins_arg); #endif }