Changeset 62b8ab2
- Timestamp:
- Oct 25, 2009, 8:40:08 PM (15 years ago)
- 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
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
re665063 r62b8ab2 130 130 AC_HELP_STRING([--enable-complex],[compile with complex.h [[default=auto]]]), 131 131 [with_complex=$enableval], 132 with_complex=" yes")132 with_complex="no") 133 133 if test "$with_complex" = "yes"; then 134 134 AC_CHECK_HEADERS(complex.h,,AC_MSG_WARN([Ouch! missing complex.h header])) -
wscript
re665063 r62b8ab2 21 21 opt.add_option('--disable-fftw3f', action='store_true', default=False, 22 22 help='compile with fftw3 instead of fftw3f') 23 opt.add_option('-- disable-complex', action='store_true', default=False,24 help='compile with outC99 complex')23 opt.add_option('--enable-complex', action='store_true', default=False, 24 help='compile with C99 complex') 25 25 opt.add_option('--disable-jack', action='store_true', default=False, 26 26 help='compile without jack support') … … 57 57 58 58 # optionally use complex.h 59 if (Options.options. disable_complex == False):59 if (Options.options.enable_complex == True): 60 60 conf.check(header_name='complex.h') 61 61
Note: See TracChangeset
for help on using the changeset viewer.