Changeset 70585a5 for configure.ac


Ignore:
Timestamp:
Nov 21, 2007, 4:53:13 PM (17 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:
66a1b955
Parents:
b050e8e (diff), 15b97d9 (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 from main branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    rb050e8e r70585a5  
    3535dnl Enable debugging (no)
    3636AC_ARG_ENABLE(debug,
    37   [  --enable-debug[[=value]]  compile with debug [[default=no]]],
     37  AC_HELP_STRING([--enable-debug],[compile in debug mode [[default=no]]]),
    3838  with_debug="yes",
    3939  with_debug="no")
     
    4646dnl Enable full warnings (yes)
    4747AC_ARG_ENABLE(warnings,
    48   [  --enable-warnings[[=value]] compile with all gcc warnings [[default=yes]]],
     48  AC_HELP_STRING([--enable-warnings],[compile with all gcc warnings [[default=yes]]]),
    4949  with_warnme="no",
    5050  with_warnme="yes")
     
    6767fi
    6868
     69dnl fail on compilation warnings
    6970AC_ARG_ENABLE(errorfail,
    70   [  --enable-errorfail[[=value]]  fail on compilation warnings [[default=no]]],
     71  AC_HELP_STRING([--enable-errorfail],[fail on compilation warnings [[default=no]]]),
    7172  AUBIO_CFLAGS="$AUBIO_CFLAGS -Werror -Wmissing-prototypes -Wmissing-declarations -Wno-unused-parameter",
    72   with_warnme="no")
     73  with_errorfail="no")
     74
     75dnl add gcov/lcov profiling and coverage flags
     76AC_ARG_ENABLE(lcov,
     77  AC_HELP_STRING([--enable-lcov],[compile with gcov/lcov profiling flags [[default=no]]]),
     78  AUBIO_CFLAGS="$AUBIO_CFLAGS -fprofile-arcs -ftest-coverage",
     79  with_lcov="no")
    7380
    7481dnl Check for libtool
Note: See TracChangeset for help on using the changeset viewer.