From a46b9287eb3aaffe77eb7c8d69eebdd43c669989 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Sat, 18 Apr 2015 15:23:37 +0000 Subject: [PATCH] =?UTF-8?q?restored=20conditional=20(#ifdef=20Spectral)=20?= =?UTF-8?q?inclusion=20of=20=E2=80=9Cfftw3=E2=80=9D.=20Not=20clear=20how?= =?UTF-8?q?=20this=20could=20pass=20the=20Marc=20compile=20test..=3F!=3F?= =?UTF-8?q?=20(failed=20in=20my=20=E2=80=9Creal-world=E2=80=9D=20use)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/mesh.f90 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/mesh.f90 b/code/mesh.f90 index 5ddd514ad..162bd9617 100644 --- a/code/mesh.f90 +++ b/code/mesh.f90 @@ -115,11 +115,13 @@ module mesh logical, private :: noPart !< for cases where the ABAQUS input file does not use part/assembly information #endif +#ifdef Spectral #ifdef PETSc #include include 'fftw3-mpi.f03' #else - include 'fftw3.f03' + include 'fftw3.f03' ! should this be '../lib/fftw3.f03' ?!? +#endif #endif ! These definitions should actually reside in the FE-solver specific part (different for MARC/ABAQUS)