Changeset a814968 for configure.ac


Ignore:
Timestamp:
Jun 29, 2006, 8:45:49 PM (18 years ago)
Author:
Paul Brossier <piem@altern.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:
ae7277c
Parents:
ee0a1f3
Message:

moving to lash, adding note about puredata
moving to lash, adding note about puredata

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    ree0a1f3 ra814968  
    187187fi
    188188
    189 dnl Enable ladcca support (obsolete)
    190 AC_ARG_ENABLE(ladcca,
    191   AC_HELP_STRING([--enable-ladcca],[compile with ladcca [[default=no]]]),
    192   [with_ladcca=$enableval],
    193   with_ladcca="no")
    194 if test "$with_ladcca" = "yes"
    195 then
    196   PKG_CHECK_MODULES(LADCCA,   ladcca-1.0 >= 0.4.0,   LADCCA_SUPPORT=1)
    197   if test "${LADCCA_SUPPORT}" = "1"; then
    198     AC_DEFINE(LADCCA_SUPPORT,1,[Define to enable ladcca support])
     189dnl Enable lash support
     190AC_ARG_ENABLE(lash,
     191  AC_HELP_STRING([--enable-lash],[compile with lash [[default=auto]]]),
     192  [with_lash=$enableval],
     193  with_lash="yes")
     194if test "$with_lash" = "yes"
     195then
     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"
    199199  fi
    200200fi
     
    288288  echo "ALSA midi:               no"
    289289fi
    290 if test "${LADCCA_SUPPORT}" = "1"; then
    291   echo "Ladcca:                  yes"
     290if test "${LASH_SUPPORT}" = "1"; then
     291  echo "Lash:                    yes"
     292else
     293  echo "Lash:                    no"
     294fi
     295if test "${PUREDATA}" = "y"; then
     296  echo "PureData:                yes"
     297else
     298  echo "PureData:                no"
    292299fi
    293300echo "**************************************************************"
Note: See TracChangeset for help on using the changeset viewer.