diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2017-07-13 11:35:10 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2017-07-13 11:35:10 -0700 |
commit | 29b4aa43a5296acf1c8de691f838ecee2597fb32 (patch) | |
tree | 3de1970fbaa8f406bbb5986bf4d1f3fac81d3a58 /gr-fft | |
parent | e72c77bc2924917419a947aa51885ef96afcced1 (diff) | |
parent | 11f9915a1adb133813a1b959f24dda547a977001 (diff) |
Merge branch 'maint'
Conflicts:
cmake/Modules/GrSwig.cmake
Diffstat (limited to 'gr-fft')
-rw-r--r-- | gr-fft/lib/fft.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-fft/lib/fft.cc b/gr-fft/lib/fft.cc index 3b6d05c383..871ad9bcaa 100644 --- a/gr-fft/lib/fft.cc +++ b/gr-fft/lib/fft.cc @@ -26,7 +26,7 @@ #include <volk/volk.h> #include <fftw3.h> -#ifdef _MSC_VER //http://www.fftw.org/install/windows.html#DLLwisdom +#ifdef _WIN32 //http://www.fftw.org/install/windows.html#DLLwisdom static void my_fftw_write_char(char c, void *f) { fputc(c, (FILE *) f); } #define fftw_export_wisdom_to_file(f) fftw_export_wisdom(my_fftw_write_char, (void*) (f)) #define fftwf_export_wisdom_to_file(f) fftwf_export_wisdom(my_fftw_write_char, (void*) (f)) @@ -40,7 +40,7 @@ static int my_fftw_read_char(void *f) { return fgetc((FILE *) f); } #include <io.h> #define O_NOCTTY 0 #define O_NONBLOCK 0 -#endif //_MSC_VER +#endif //_WIN32 #include <stdlib.h> #include <string.h> |