Changeset 588ee77
- Timestamp:
- Sep 26, 2009, 7:11:23 AM (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:
- 31a5c0e8
- Parents:
- c85c8b6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
rc85c8b6 r588ee77 143 143 AC_PATH_PROG(PKG_CONFIG,pkg-config,no) 144 144 145 PKG_CHECK_MODULES(SNDLIB, sndfile >= 1.0.4, HAVE_SNDLIB=1) 146 PKG_CHECK_MODULES(SAMPLERATE, samplerate >= 0.0.15, HAVE_SAMPLERATE=1) 147 148 if test "${HAVE_SNDLIB}" = "1"; then 149 AC_DEFINE(HAVE_SNDLIB,1,[Define to enable libsndfile support]) 145 PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.4, HAVE_SNDFILE=1) 146 if test "${HAVE_SNDFILE}" = "1"; then 147 AC_DEFINE(HAVE_SNDFILE,1,[Define to enable libsndfile support]) 148 fi 149 150 dnl Enable samplerate support (auto) 151 AC_ARG_ENABLE(samplerate, 152 AC_HELP_STRING([--enable-samplerate],[compile with samplerate [[default=auto]]]), 153 [with_samplerate=$enableval], 154 with_samplerate="yes") 155 if test "$with_samplerate" = "yes"; then 156 PKG_CHECK_MODULES(SAMPLERATE, samplerate >= 0.0.15, HAVE_SAMPLERATE=1) 157 if test "${HAVE_SAMPLERATE}" = "1"; then 158 AC_DEFINE(HAVE_SAMPLERATE,1,[Define to enable libsamplerate support]) 159 fi 150 160 fi 151 161 … … 261 271 fi 262 272 fi 263 if test "${HAVE_SND LIB}" = "1"; then273 if test "${HAVE_SNDFILE}" = "1"; then 264 274 echo "Libsndfile: yes" 265 275 else
Note: See TracChangeset
for help on using the changeset viewer.