diff options
author | Andreas Eversberg <jolly@eversberg.eu> | 2017-02-25 06:29:09 +0100 |
---|---|---|
committer | Andreas Eversberg <jolly@eversberg.eu> | 2017-02-25 06:29:09 +0100 |
commit | 04fd1ddceab83bc4480de06992465f28668bcf2c (patch) | |
tree | bed345eeb51edbdbfd72d84cea3c61c36279c9fa /configure.ac | |
parent | f689244f98bf00a3657c7bdc5ebdb31d0c5636f1 (diff) |
Use thread to record and playback wave files without blocking
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 63175a7..dfbd713 100644 --- a/configure.ac +++ b/configure.ac @@ -24,8 +24,10 @@ dnl Checks for typedefs, structures and compiler characteristics AC_CANONICAL_HOST -PKG_CHECK_MODULES(ALSA, alsa >= 1.0) +AC_CHECK_LIB([m], [main]) +AC_CHECK_LIB([pthread], [main]) +PKG_CHECK_MODULES(ALSA, alsa >= 1.0) with_sdr=no AC_ARG_WITH([uhd], [AS_HELP_STRING([--with-uhd], [compile with UHD driver @<:@default=check@:>@]) ], [], [with_uhd="check"]) |