Changeset a814968
- Timestamp:
- Jun 29, 2006, 8:45:49 PM (18 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:
- ae7277c
- Parents:
- ee0a1f3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
ree0a1f3 ra814968 187 187 fi 188 188 189 dnl Enable la dcca support (obsolete)190 AC_ARG_ENABLE(la dcca,191 AC_HELP_STRING([--enable-la dcca],[compile with ladcca [[default=no]]]),192 [with_la dcca=$enableval],193 with_la dcca="no")194 if test "$with_la dcca" = "yes"195 then 196 PKG_CHECK_MODULES(LA DCCA, ladcca-1.0 >= 0.4.0, LADCCA_SUPPORT=1)197 if test "${LA DCCA_SUPPORT}" = "1"; then198 AC_DEFINE(LADCCA_SUPPORT,1,[Define to enable ladcca support])189 dnl Enable lash support 190 AC_ARG_ENABLE(lash, 191 AC_HELP_STRING([--enable-lash],[compile with lash [[default=auto]]]), 192 [with_lash=$enableval], 193 with_lash="yes") 194 if test "$with_lash" = "yes" 195 then 196 PKG_CHECK_MODULES(LASH, lash-1.0 >= 0.5.0, LASH_SUPPORT=1, LASH_SUPPORT=0) 197 if test "${LASH_SUPPORT}" = "1"; then 198 LASH_CFLAGS+="-DLASH_SUPPORT" 199 199 fi 200 200 fi … … 288 288 echo "ALSA midi: no" 289 289 fi 290 if test "${LADCCA_SUPPORT}" = "1"; then 291 echo "Ladcca: yes" 290 if test "${LASH_SUPPORT}" = "1"; then 291 echo "Lash: yes" 292 else 293 echo "Lash: no" 294 fi 295 if test "${PUREDATA}" = "y"; then 296 echo "PureData: yes" 297 else 298 echo "PureData: no" 292 299 fi 293 300 echo "**************************************************************"
Note: See TracChangeset
for help on using the changeset viewer.