summaryrefslogtreecommitdiff
path: root/src/m4/fftw.m4
diff options
context:
space:
mode:
authorjofret2009-04-28 07:14:58 +0000
committerjofret2009-04-28 07:14:58 +0000
commit9f652ffc16a310ac6641a9766c5b9e2671e0e9cb (patch)
treec2bfdad6a556eb0da6a00c992d92c9088d5718d5 /src/m4/fftw.m4
parent2a9c7982e4a41abc88c93bf9a2f0bfa6856559b6 (diff)
downloadscilab2c-9f652ffc16a310ac6641a9766c5b9e2671e0e9cb.tar.gz
scilab2c-9f652ffc16a310ac6641a9766c5b9e2671e0e9cb.tar.bz2
scilab2c-9f652ffc16a310ac6641a9766c5b9e2671e0e9cb.zip
Moving config files
Diffstat (limited to 'src/m4/fftw.m4')
-rw-r--r--src/m4/fftw.m416
1 files changed, 0 insertions, 16 deletions
diff --git a/src/m4/fftw.m4 b/src/m4/fftw.m4
deleted file mode 100644
index 8764aaba..00000000
--- a/src/m4/fftw.m4
+++ /dev/null
@@ -1,16 +0,0 @@
-dnl AC_FFTW
-dnl ------------------------------------------------------
-dnl Check if FFTW is usable and working
-dnl
-AC_DEFUN([AC_FFTW], [
-
- AC_CHECK_HEADER([fftw3.h],[],[AC_MSG_ERROR([Cannot find headers (fftw3.h) of the library fftw. Please install the dev package (Debian : fftw3-dev)])])
- AC_CHECK_LIB([fftw3], [fftw_plan_dft_r2c],
- [FFTW3_LIB=-lfftw3],
- [AC_MSG_ERROR([libfftw3 : library missing. (Cannot find symbol fftw_plan_dft_r2c). Check if libfftw3 is installed and if the version is correct])]
- )
- AC_SUBST(FFTW3_LIB)
- AC_DEFINE([WITH_FFTW], [], [With FFTW])
-])
-
-