Changeset 1691


Ignore:
Timestamp:
Dec 10, 2012, 4:48:25 PM (11 years ago)
Author:
lguez
Message:

"#elif" is not a standard C preprocessor directive. It is not
understood by makedepf90. Replace it with "#ifdef" and "#else".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/filtrez/mod_fft.F90

    r986 r1691  
    33#ifdef FFT_MATHKEISAN
    44  USE mod_fft_mathkeisan
    5 #elif FFT_FFTW
     5#else
     6#ifdef FFT_FFTW
    67  USE mod_fft_fftw
    7 #elif FFT_MKL
     8#else
     9#ifdef FFT_MKL
    810  USE mod_fft_mkl
    911#else
    1012  USE mod_fft_wrapper
    1113#endif
     14#endif
     15#endif
    1216
    1317END MODULE mod_fft
Note: See TracChangeset for help on using the changeset viewer.