Changeset 62b8ab2


Ignore:
Timestamp:
Oct 25, 2009, 8:40:08 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:
4ef9a9b
Parents:
e665063
Message:

configure.ac, wscript: default to no complex

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    re665063 r62b8ab2  
    130130  AC_HELP_STRING([--enable-complex],[compile with complex.h [[default=auto]]]),
    131131  [with_complex=$enableval],
    132   with_complex="yes")
     132  with_complex="no")
    133133if test "$with_complex" = "yes"; then
    134134  AC_CHECK_HEADERS(complex.h,,AC_MSG_WARN([Ouch! missing complex.h header]))
  • wscript

    re665063 r62b8ab2  
    2121  opt.add_option('--disable-fftw3f', action='store_true', default=False,
    2222      help='compile with fftw3 instead of fftw3f')
    23   opt.add_option('--disable-complex', action='store_true', default=False,
    24       help='compile without C99 complex')
     23  opt.add_option('--enable-complex', action='store_true', default=False,
     24      help='compile with C99 complex')
    2525  opt.add_option('--disable-jack', action='store_true', default=False,
    2626      help='compile without jack support')
     
    5757
    5858  # optionally use complex.h
    59   if (Options.options.disable_complex == False):
     59  if (Options.options.enable_complex == True):
    6060    conf.check(header_name='complex.h')
    6161
Note: See TracChangeset for help on using the changeset viewer.