Changeset dc27a81
- Timestamp:
- Apr 11, 2005, 11:17:36 PM (20 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:
- b6f6d58
- Parents:
- bd2f2ab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
rbd2f2ab rdc27a81 93 93 dnl Check for optional libraries 94 94 AC_ARG_ENABLE(fftw3f, 95 [ --enable-fftw3f[[=value]] compile with fftw3f [[default=no]]],96 with_fftw3f="yes",97 with_fftw3f=" no")95 AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]), 96 [with_fftw3f=$enableval], 97 with_fftw3f="yes") 98 98 if test "$with_fftw3f" = "yes"; then 99 PKG_CHECK_MODULES(FFTWLIB, fftw3f >= 3.0.0, FFTW3F_SUPPORT=1) 100 else 101 PKG_CHECK_MODULES(FFTWLIB, fftw3 >= 3.0.0, FFTW3_SUPPORT=1) 99 PKG_CHECK_MODULES(FFTWLIB, fftw3f >= 3.0.0, FFTW3F_SUPPORT=1, FFTW3F_SUPPORT=0) 100 else 101 PKG_CHECK_MODULES(FFTWLIB, fftw3 >= 3.0.0, FFTW3_SUPPORT=1) 102 fi 103 if test "${FFTW3F_SUPPORT}" = "0"; then 104 PKG_CHECK_MODULES(FFTWLIB, fftw3 >= 3.0.0, FFTW3_SUPPORT=1) 102 105 fi 103 106 if test "${FFTW3_SUPPORT}" = "1"; then … … 109 112 110 113 AC_ARG_ENABLE(jack, 111 [ --enable-jack[[=value]] compile with jack [[default=no]]],112 with_jack="yes",113 with_jack=" no")114 AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]), 115 [with_jack=$enableval], 116 with_jack="yes") 114 117 if test "$with_jack" = "yes" 115 118 then 116 PKG_CHECK_MODULES(JACK, jack >= 0.15.0, JACK_SUPPORT=1 )119 PKG_CHECK_MODULES(JACK, jack >= 0.15.0, JACK_SUPPORT=1, JACK_SUPPORT=0) 117 120 if test "${JACK_SUPPORT}" = "1"; then 118 121 AC_DEFINE(JACK_SUPPORT,1,[Define to enable jack support]) … … 121 124 122 125 AC_ARG_ENABLE(alsa, 123 [ --enable-alsa[[=value]] compile with alsa [[default=no]]],124 with_alsa="yes",125 with_alsa=" no")126 AC_HELP_STRING([--enable-alsa],[compile with alsa [[default=auto]]]), 127 [with_alsa=$enableval], 128 with_alsa="yes") 126 129 if test "$with_alsa" = "yes" 127 130 then 128 PKG_CHECK_MODULES(ALSA, alsa >= 0.0.9, ALSA_SUPPORT=1 )131 PKG_CHECK_MODULES(ALSA, alsa >= 0.0.9, ALSA_SUPPORT=1, ALSA_SUPPORT=0) 129 132 if test "${ALSA_SUPPORT}" = "1"; then 130 133 AC_DEFINE(ALSA_SUPPORT,1,[Define to enable alsa support]) … … 133 136 134 137 AC_ARG_ENABLE(ladcca, 135 [ --enable-ladcca[[=value]] compile with ladcca [[default=no]]],136 with_ladcca="yes",138 AC_HELP_STRING([--enable-ladcca],[compile with ladcca [[default=no]]]), 139 [with_ladcca=$enableval], 137 140 with_ladcca="no") 138 141 if test "$with_ladcca" = "yes" … … 179 182 echo "Summary:" 180 183 if test "${FFTW3F_SUPPORT}" = "1"; then 181 echo "Fftw3: yes ( fftw3f)"184 echo "Fftw3: yes (using fftw3f)" 182 185 else 183 186 if test "${FFTW3_SUPPORT}" = "1"; then 184 echo "Fftw3: yes "185 else 186 echo "Fftw3 f: no"187 echo "Fftw3: yes (not using fftw3f)" 188 else 189 echo "Fftw3: no (that should not happen)" 187 190 fi 188 191 fi
Note: See TracChangeset
for help on using the changeset viewer.