Changeset 240e416


Ignore:
Timestamp:
Oct 16, 2009, 5:55:58 PM (15 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
3ca6155
Parents:
f1b925e
Message:

configure.ac: when compiling with --enable-double, default to fftw3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    rf1b925e r240e416  
    174174
    175175dnl Check for fftw3 (required)
     176dnl if we compile in double precsion, default to fftw3, else fftw3f
     177if test "$with_double_precision" = "yes"; then
     178    default_fftw3f="no"
     179else
     180    default_fftw3f="yes"
     181fi
    176182AC_ARG_ENABLE(fftw3f,
    177183  AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]),
    178184  [with_fftw3f=$enableval],
    179   with_fftw3f="yes")
     185  [with_fftw3f=$default_fftw3f])
    180186if test "$with_fftw3f" = "yes"; then
    181187  PKG_CHECK_MODULES(FFTWLIB,    fftw3f >= 3.0.0,     HAVE_FFTW3F=1, HAVE_FFTW3F=0)
Note: See TracChangeset for help on using the changeset viewer.