# HG changeset patch # User jwe # Date 1017868856 0 # Node ID 96919c87953ce75f29b88c68abab968c195a3143 # Parent f49111e2d8a4a5b0680730ffc5b8ba08a4273724 [project @ 2002-04-03 21:20:56 by jwe] diff -r f49111e2d8a4 -r 96919c87953c ChangeLog --- a/ChangeLog Wed Apr 03 17:33:19 2002 +0000 +++ b/ChangeLog Wed Apr 03 21:20:56 2002 +0000 @@ -1,3 +1,7 @@ +2002-04-03 Steven G. Johnson + + * configure.in: Correct usage of AC_ARG_WITH for --with-fftw. + 2001-11-09 John W. Eaton * octave-bug.in (BLAS_LIBS, FFTW_LIBS, LD_CXX): Substitute and diff -r f49111e2d8a4 -r 96919c87953c configure.in --- a/configure.in Wed Apr 03 17:33:19 2002 +0000 +++ b/configure.in Wed Apr 03 21:20:56 2002 +0000 @@ -21,7 +21,7 @@ ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA ### 02111-1307, USA. -AC_REVISION($Revision: 1.351 $) +AC_REVISION($Revision: 1.352 $) AC_PREREQ(2.9) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h) @@ -367,8 +367,8 @@ AC_SUBST(FFTW_LIBS) AC_ARG_WITH(fftw, - [ --with-fftw use installed fftw instead of included fftpack], - with_fftw=yes, with_fftw=yes) + [ --without-fftw use included fftpack instead of installed fftw], + with_fftw=$withval, with_fftw=yes) if test "$with_fftw" = "yes"; then AC_CHECK_HEADERS(dfftw.h fftw.h)