comparison configure.in @ 3886:96919c87953c

[project @ 2002-04-03 21:20:56 by jwe]
author jwe
date Wed, 03 Apr 2002 21:20:56 +0000
parents f7c7ecb63a7e
children 7da18459c08b
comparison
equal deleted inserted replaced
3885:f49111e2d8a4 3886:96919c87953c
19 ### You should have received a copy of the GNU General Public License 19 ### You should have received a copy of the GNU General Public License
20 ### along with Octave; see the file COPYING. If not, write to the Free 20 ### along with Octave; see the file COPYING. If not, write to the Free
21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 ### 02111-1307, USA. 22 ### 02111-1307, USA.
23 23
24 AC_REVISION($Revision: 1.351 $) 24 AC_REVISION($Revision: 1.352 $)
25 AC_PREREQ(2.9) 25 AC_PREREQ(2.9)
26 AC_INIT(src/octave.cc) 26 AC_INIT(src/octave.cc)
27 AC_CONFIG_HEADER(config.h) 27 AC_CONFIG_HEADER(config.h)
28 28
29 AC_DEFINE(OCTAVE_SOURCE, 1) 29 AC_DEFINE(OCTAVE_SOURCE, 1)
365 # Installed fftw library, if any. 365 # Installed fftw library, if any.
366 FFTW_LIBS='' 366 FFTW_LIBS=''
367 AC_SUBST(FFTW_LIBS) 367 AC_SUBST(FFTW_LIBS)
368 368
369 AC_ARG_WITH(fftw, 369 AC_ARG_WITH(fftw,
370 [ --with-fftw use installed fftw instead of included fftpack], 370 [ --without-fftw use included fftpack instead of installed fftw],
371 with_fftw=yes, with_fftw=yes) 371 with_fftw=$withval, with_fftw=yes)
372 372
373 if test "$with_fftw" = "yes"; then 373 if test "$with_fftw" = "yes"; then
374 AC_CHECK_HEADERS(dfftw.h fftw.h) 374 AC_CHECK_HEADERS(dfftw.h fftw.h)
375 if test "$ac_cv_header_dfftw_h" = yes \ 375 if test "$ac_cv_header_dfftw_h" = yes \
376 || test "$ac_cv_header_fftw_h" = yes; then 376 || test "$ac_cv_header_fftw_h" = yes; then