diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-10 12:47:43 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-10 12:47:43 +0100 |
commit | 8be635ec17df0b8246ede6575ea91bdb1ad9bfa3 (patch) | |
tree | 8bc0c9cb976faea58d0943ae3a63d3bb689b4f4b | |
parent | d7d66eb96acd5c45376e38a5c2e231d5fd37274f (diff) | |
download | ODR-AudioEnc-8be635ec17df0b8246ede6575ea91bdb1ad9bfa3.tar.gz ODR-AudioEnc-8be635ec17df0b8246ede6575ea91bdb1ad9bfa3.tar.bz2 ODR-AudioEnc-8be635ec17df0b8246ede6575ea91bdb1ad9bfa3.zip |
add requirement for alsa 1.0.27
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ac126ef..93f8c2d 100644 --- a/configure.ac +++ b/configure.ac @@ -21,6 +21,8 @@ AC_CHECK_LIB([boost_thread], [main], [], [AC_MSG_ERROR([library boost_thread is AC_CHECK_LIB([rt], [clock_gettime], [], [AC_MSG_ERROR([library rt is missing])]) +AM_PATH_ALSA(1.0.27) + # fdk-aac-dabplus-zmq needs ZeroMQ AC_CHECK_LIB(zmq, zmq_init, , AC_MSG_ERROR(ZeroMQ libzmq is required)) |