Changeset e43464c for configure.ac


Ignore:
Timestamp:
Jan 7, 2012, 3:53:32 AM (12 years ago)
Author:
Paul Brossier <piem@piem.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:
466a5da
Parents:
8b3a7e7 (diff), 9430dfd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of piem.org:/git/aubio/aubio

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r8b3a7e7 re43464c  
    154154fi
    155155
    156 PKG_CHECK_MODULES(SNDFILE,     sndfile >= 1.0.4,       HAVE_SNDFILE=1)
    157 if test "${HAVE_SNDFILE}" = "1"; then
    158   AC_DEFINE(HAVE_SNDFILE,1,[Define to enable libsndfile support])
     156AC_ARG_ENABLE(sndfile,
     157  AC_HELP_STRING([--enable-sndfile],[compile with sndfile [[default=auto]]]),
     158  [with_sndfile=$enableval],
     159  with_sndfile="yes")
     160if test "$with_sndfile" = "yes"; then
     161  PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.4, HAVE_SNDFILE=1, HAVE_SNDFILE=0)
     162  if test "${HAVE_SNDFILE}" = "1"; then
     163    AC_DEFINE(HAVE_SNDFILE,1,[Define to enable libsndfile support])
     164  fi
    159165fi
    160166
Note: See TracChangeset for help on using the changeset viewer.